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

82 lines
1.5 KiB
Go
Raw Normal View History

package test
import (
"io"
"os"
"path/filepath"
"github.com/go-git/go-billy/v5"
testapi "github.com/kyverno/kyverno/cmd/cli/kubectl-kyverno/apis/test"
"k8s.io/apimachinery/pkg/util/yaml"
)
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,
Fs: fs,
Err: err,
}
}
data, err := io.ReadAll(file)
if err != nil {
return TestCase{
Path: path,
Fs: fs,
Err: err,
}
}
yamlBytes = data
} else {
data, err := os.ReadFile(path) // #nosec G304
if err != nil {
return TestCase{
Path: path,
Fs: fs,
Err: err,
}
}
yamlBytes = data
}
var test testapi.Test
if err := yaml.UnmarshalStrict(yamlBytes, &test); err != nil {
return TestCase{
Path: path,
Fs: fs,
Err: err,
}
}
return TestCase{
Path: path,
Fs: fs,
Test: &test,
}
}