-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add dependency tests Signed-off-by: Matt Butcher <[email protected]> * replaced on-disk fixtures with in-memory fixtures Signed-off-by: Matt Butcher <[email protected]>
- Loading branch information
1 parent
bd09f1f
commit 2750e4d
Showing
9 changed files
with
202 additions
and
12 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
6 changes: 5 additions & 1 deletion
6
cmd/helm/testdata/output/lint-chart-with-bad-subcharts-with-subcharts.txt
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 |
---|---|---|
@@ -1,16 +1,20 @@ | ||
==> Linting testdata/testcharts/chart-with-bad-subcharts | ||
[INFO] Chart.yaml: icon is recommended | ||
[WARNING] templates/: directory not found | ||
[ERROR] : unable to load chart | ||
error unpacking bad-subchart in chart-with-bad-subcharts: validation: chart.metadata.name is required | ||
|
||
==> Linting testdata/testcharts/chart-with-bad-subcharts/charts/bad-subchart | ||
[ERROR] Chart.yaml: name is required | ||
[ERROR] Chart.yaml: apiVersion is required. The value must be either "v1" or "v2" | ||
[ERROR] Chart.yaml: version is required | ||
[INFO] Chart.yaml: icon is recommended | ||
[WARNING] templates/: directory not found | ||
[ERROR] : unable to load chart | ||
validation: chart.metadata.name is required | ||
|
||
==> Linting testdata/testcharts/chart-with-bad-subcharts/charts/good-subchart | ||
[INFO] Chart.yaml: icon is recommended | ||
[WARNING] templates/: directory not found | ||
|
||
Error: 3 chart(s) linted, 1 chart(s) failed | ||
Error: 3 chart(s) linted, 2 chart(s) failed |
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
==> Linting testdata/testcharts/chart-with-bad-subcharts | ||
[INFO] Chart.yaml: icon is recommended | ||
[WARNING] templates/: directory not found | ||
[ERROR] : unable to load chart | ||
error unpacking bad-subchart in chart-with-bad-subcharts: validation: chart.metadata.name is required | ||
|
||
1 chart(s) linted, 0 chart(s) failed | ||
Error: 1 chart(s) linted, 1 chart(s) failed |
2 changes: 1 addition & 1 deletion
2
cmd/helm/testdata/testcharts/chart-with-bad-subcharts/charts/bad-subchart/Chart.yaml
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 |
---|---|---|
@@ -1 +1 @@ | ||
description: Bad subchart | ||
description: Bad subchart |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
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 rules // import "helm.sh/helm/v3/pkg/lint/rules" | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/pkg/errors" | ||
|
||
"helm.sh/helm/v3/pkg/chart" | ||
"helm.sh/helm/v3/pkg/chart/loader" | ||
"helm.sh/helm/v3/pkg/lint/support" | ||
) | ||
|
||
// Dependencies runs lints against a chart's dependencies | ||
// | ||
// See https://github.com/helm/helm/issues/7910 | ||
func Dependencies(linter *support.Linter) { | ||
c, err := loader.LoadDir(linter.ChartDir) | ||
if !linter.RunLinterRule(support.ErrorSev, "", validateChartFormat(err)) { | ||
return | ||
} | ||
|
||
linter.RunLinterRule(support.ErrorSev, linter.ChartDir, validateDependencyInMetadata(c)) | ||
linter.RunLinterRule(support.WarningSev, linter.ChartDir, validateDependencyInChartsDir(c)) | ||
} | ||
|
||
func validateChartFormat(chartError error) error { | ||
if chartError != nil { | ||
return errors.Errorf("unable to load chart\n\t%s", chartError) | ||
} | ||
return nil | ||
} | ||
|
||
func validateDependencyInChartsDir(c *chart.Chart) (err error) { | ||
dependencies := map[string]struct{}{} | ||
missing := []string{} | ||
for _, dep := range c.Dependencies() { | ||
dependencies[dep.Metadata.Name] = struct{}{} | ||
} | ||
for _, dep := range c.Metadata.Dependencies { | ||
if _, ok := dependencies[dep.Name]; !ok { | ||
missing = append(missing, dep.Name) | ||
} | ||
} | ||
if len(missing) > 0 { | ||
err = fmt.Errorf("chart directory is missing these dependencies: %s", strings.Join(missing, ",")) | ||
} | ||
return err | ||
} | ||
|
||
func validateDependencyInMetadata(c *chart.Chart) (err error) { | ||
dependencies := map[string]struct{}{} | ||
missing := []string{} | ||
for _, dep := range c.Metadata.Dependencies { | ||
dependencies[dep.Name] = struct{}{} | ||
} | ||
for _, dep := range c.Dependencies() { | ||
if _, ok := dependencies[dep.Metadata.Name]; !ok { | ||
missing = append(missing, dep.Metadata.Name) | ||
} | ||
} | ||
if len(missing) > 0 { | ||
err = fmt.Errorf("chart metadata is missing these dependencies: %s", strings.Join(missing, ",")) | ||
} | ||
return err | ||
} |
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,99 @@ | ||
/* | ||
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 rules | ||
|
||
import ( | ||
"os" | ||
"path/filepath" | ||
"testing" | ||
|
||
"helm.sh/helm/v3/internal/test/ensure" | ||
"helm.sh/helm/v3/pkg/chart" | ||
"helm.sh/helm/v3/pkg/chartutil" | ||
"helm.sh/helm/v3/pkg/lint/support" | ||
) | ||
|
||
func chartWithBadDependencies() chart.Chart { | ||
badChartDeps := chart.Chart{ | ||
Metadata: &chart.Metadata{ | ||
Name: "badchart", | ||
Version: "0.1.0", | ||
APIVersion: "v2", | ||
Dependencies: []*chart.Dependency{ | ||
{ | ||
Name: "sub2", | ||
}, | ||
{ | ||
Name: "sub3", | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
badChartDeps.SetDependencies( | ||
&chart.Chart{ | ||
Metadata: &chart.Metadata{ | ||
Name: "sub1", | ||
Version: "0.1.0", | ||
APIVersion: "v2", | ||
}, | ||
}, | ||
&chart.Chart{ | ||
Metadata: &chart.Metadata{ | ||
Name: "sub2", | ||
Version: "0.1.0", | ||
APIVersion: "v2", | ||
}, | ||
}, | ||
) | ||
return badChartDeps | ||
} | ||
|
||
func TestValidateDependencyInChartsDir(t *testing.T) { | ||
c := chartWithBadDependencies() | ||
|
||
if err := validateDependencyInChartsDir(&c); err == nil { | ||
t.Error("chart should have been flagged for missing deps in chart directory") | ||
} | ||
} | ||
|
||
func TestValidateDependencyInMetadata(t *testing.T) { | ||
c := chartWithBadDependencies() | ||
|
||
if err := validateDependencyInMetadata(&c); err == nil { | ||
t.Errorf("chart should have been flagged for missing deps in chart metadata") | ||
} | ||
} | ||
|
||
func TestDependencies(t *testing.T) { | ||
tmp := ensure.TempDir(t) | ||
defer os.RemoveAll(tmp) | ||
|
||
c := chartWithBadDependencies() | ||
err := chartutil.SaveDir(&c, tmp) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
linter := support.Linter{ChartDir: filepath.Join(tmp, c.Metadata.Name)} | ||
|
||
Dependencies(&linter) | ||
if l := len(linter.Messages); l != 2 { | ||
t.Errorf("expected 2 linter errors for bad chart dependencies. Got %d.", l) | ||
for i, msg := range linter.Messages { | ||
t.Logf("Message: %d, Error: %#v", i, msg) | ||
} | ||
} | ||
} |