Permalink
Show file tree
Hide file tree
34 changes: 4 additions & 30 deletions
34
cmd/helm/testdata/helmhome/helm/repository/testing-index.yaml
3 changes: 3 additions & 0 deletions
3
internal/resolver/testdata/repository/kubernetes-charts-index.yaml
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Merge pull request from GHSA-c38g-469g-cmgx
fix(*): Validate metadata semver and printable characters
- Loading branch information
Showing
30 changed files
with
394 additions
and
226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
cmd/helm/testdata/output/search-semver-pre-invalid-release.txt
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
cmd/helm/testdata/output/search-semver-pre-zero-devel-release.txt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| /* | ||
| Copyright The Helm Authors. | ||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| */ | ||
| package chart | ||
|
|
||
| import ( | ||
| "testing" | ||
| ) | ||
|
|
||
| func TestValidateDependency(t *testing.T) { | ||
| dep := &Dependency{ | ||
| Name: "example", | ||
| } | ||
| for value, shouldFail := range map[string]bool{ | ||
| "abcdefghijklmenopQRSTUVWXYZ-0123456780_": false, | ||
| "-okay": false, | ||
| "_okay": false, | ||
| "- bad": true, | ||
| " bad": true, | ||
| "bad\nvalue": true, | ||
| "bad ": true, | ||
| "bad$": true, | ||
| } { | ||
| dep.Alias = value | ||
| res := dep.Validate() | ||
| if res != nil && !shouldFail { | ||
| t.Errorf("Failed on case %q", dep.Alias) | ||
| } else if res == nil && shouldFail { | ||
| t.Errorf("Expected failure for %q", dep.Alias) | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.