mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.6 KiB
67 lines
1.6 KiB
/*
|
|
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"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"helm.sh/helm/v4/internal/chart/v3/lint/support"
|
|
)
|
|
|
|
const invalidCrdsDir = "./testdata/invalidcrdsdir"
|
|
|
|
func TestInvalidCrdsDir(t *testing.T) {
|
|
linter := support.Linter{ChartDir: invalidCrdsDir}
|
|
Crds(&linter)
|
|
res := linter.Messages
|
|
|
|
assert.Len(t, res, 1)
|
|
assert.ErrorContains(t, res[0].Err, "not a directory")
|
|
}
|
|
|
|
// multi-document YAML with empty documents would panic
|
|
func TestCrdWithEmptyDocument(t *testing.T) {
|
|
chartDir := t.TempDir()
|
|
|
|
os.WriteFile(filepath.Join(chartDir, "Chart.yaml"), []byte(
|
|
`apiVersion: v1
|
|
name: test
|
|
version: 0.1.0
|
|
`), 0644)
|
|
|
|
// CRD with comments before --- (creates empty document)
|
|
crdsDir := filepath.Join(chartDir, "crds")
|
|
os.Mkdir(crdsDir, 0755)
|
|
os.WriteFile(filepath.Join(crdsDir, "test.yaml"), []byte(
|
|
`# Comments create empty document
|
|
---
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: test.example.io
|
|
`), 0644)
|
|
|
|
linter := support.Linter{ChartDir: chartDir}
|
|
Crds(&linter)
|
|
|
|
assert.Len(t, linter.Messages, 0)
|
|
}
|