|
|
|
|
@ -17,6 +17,8 @@ limitations under the License.
|
|
|
|
|
package rules
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"os"
|
|
|
|
|
"path/filepath"
|
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
@ -34,3 +36,31 @@ func TestInvalidCrdsDir(t *testing.T) {
|
|
|
|
|
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)
|
|
|
|
|
}
|
|
|
|
|
|