Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
1105 Внедрение механизмов обеспечения безопасности цепочки поставки программных проектов
Legacy
scanned-projects
helm
Commits
cc5a8abe
Unverified
Commit
cc5a8abe
authored
7 years ago
by
Morgan Parry
Committed by
Matthew Fisher
7 years ago
Browse files
Options
Download
Patches
Plain Diff
fix(helm): Don't crash in search if upper case chars are encountered.
Closes #3088 (cherry picked from commit
d8489901
)
parent
ae8ddf3b
release-2.8
v2.8.2
v2.8.2-rc1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmd/helm/search/search.go
+5
-5
cmd/helm/search/search.go
cmd/helm/search/search_test.go
+2
-2
cmd/helm/search/search_test.go
with
7 additions
and
7 deletions
+7
-7
cmd/helm/search/search.go
+
5
−
5
View file @
cc5a8abe
...
@@ -146,11 +146,11 @@ func (i *Index) SearchLiteral(term string, threshold int) []*Result {
...
@@ -146,11 +146,11 @@ func (i *Index) SearchLiteral(term string, threshold int) []*Result {
term
=
strings
.
ToLower
(
term
)
term
=
strings
.
ToLower
(
term
)
buf
:=
[]
*
Result
{}
buf
:=
[]
*
Result
{}
for
k
,
v
:=
range
i
.
lines
{
for
k
,
v
:=
range
i
.
lines
{
k
=
strings
.
ToLower
(
k
)
l
k
:
=
strings
.
ToLower
(
k
)
v
=
strings
.
ToLower
(
v
)
l
v
:
=
strings
.
ToLower
(
v
)
res
:=
strings
.
Index
(
v
,
term
)
res
:=
strings
.
Index
(
l
v
,
term
)
if
score
:=
i
.
calcScore
(
res
,
v
);
res
!=
-
1
&&
score
<
threshold
{
if
score
:=
i
.
calcScore
(
res
,
l
v
);
res
!=
-
1
&&
score
<
threshold
{
parts
:=
strings
.
Split
(
k
,
verSep
)
// Remove version, if it is there.
parts
:=
strings
.
Split
(
l
k
,
verSep
)
// Remove version, if it is there.
buf
=
append
(
buf
,
&
Result
{
Name
:
parts
[
0
],
Score
:
score
,
Chart
:
i
.
charts
[
k
]})
buf
=
append
(
buf
,
&
Result
{
Name
:
parts
[
0
],
Score
:
score
,
Chart
:
i
.
charts
[
k
]})
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
cmd/helm/search/search_test.go
+
2
−
2
View file @
cc5a8abe
...
@@ -91,10 +91,10 @@ var indexfileEntries = map[string]repo.ChartVersions{
...
@@ -91,10 +91,10 @@ var indexfileEntries = map[string]repo.ChartVersions{
},
},
},
},
{
{
URLs
:
[]
string
{
"http://example.com/charts/santa-maria-1.2.2.tgz"
},
URLs
:
[]
string
{
"http://example.com/charts/santa-maria-1.2.2
-rc-1
.tgz"
},
Metadata
:
&
chart
.
Metadata
{
Metadata
:
&
chart
.
Metadata
{
Name
:
"santa-maria"
,
Name
:
"santa-maria"
,
Version
:
"1.2.2"
,
Version
:
"1.2.2
-RC-1
"
,
Description
:
"Three boat"
,
Description
:
"Three boat"
,
},
},
},
},
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets