1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 16:06:56 +00:00
kyverno/cmd/cli/kubectl-kyverno/test/load.go

95 lines
1.7 KiB
Go
Raw Normal View History

package test
import (
"io"
"os"
"path/filepath"
"github.com/go-git/go-billy/v5"
"github.com/kyverno/kyverno/cmd/cli/kubectl-kyverno/commands/test/api"
"k8s.io/apimachinery/pkg/util/yaml"
)
type TestCase struct {
Path string
Test *api.Test
Err error
}
type TestCases []TestCase
func (tc TestCases) Errors() []error {
var errors []error
for _, test := range tc {
if test.Err != nil {
errors = append(errors, test.Err)
}
}
return errors
}
func LoadTests(dirPath string, fileName string) (TestCases, error) {
return loadLocalTest(filepath.Clean(dirPath), fileName)
}
func loadLocalTest(path string, fileName string) (TestCases, error) {
var tests []TestCase
files, err := os.ReadDir(path)
if err != nil {
return nil, err
}
for _, file := range files {
if file.IsDir() {
ps, err := loadLocalTest(filepath.Join(path, file.Name()), fileName)
if err != nil {
return nil, err
}
tests = append(tests, ps...)
} else if file.Name() == fileName {
tests = append(tests, LoadTest(nil, filepath.Join(path, fileName)))
}
}
return tests, nil
}
func LoadTest(fs billy.Filesystem, path string) TestCase {
var yamlBytes []byte
if fs != nil {
file, err := fs.Open(path)
if err != nil {
return TestCase{
Path: path,
Err: err,
}
}
data, err := io.ReadAll(file)
if err != nil {
return TestCase{
Path: path,
Err: err,
}
}
yamlBytes = data
} else {
data, err := os.ReadFile(path) // #nosec G304
if err != nil {
return TestCase{
Path: path,
Err: err,
}
}
yamlBytes = data
}
var test api.Test
if err := yaml.UnmarshalStrict(yamlBytes, &test); err != nil {
return TestCase{
Path: path,
Err: err,
}
}
return TestCase{
Path: path,
Test: &test,
}
}