1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 01:16:55 +00:00
kyverno/cmd/cli/kubectl-kyverno/test/load.go
Darshan Poudel 88c55c2b9d
fix/duplicate-test-entries-deduplication (#11709)
Signed-off-by: Darshan808 <pranishpoudel10@gmail.com>
Co-authored-by: shuting <shuting@nirmata.com>
2024-12-12 08:54:24 +00:00

103 lines
2.1 KiB
Go

package test
import (
"io"
"os"
"path/filepath"
"github.com/go-git/go-billy/v5"
"github.com/kyverno/kyverno/cmd/cli/kubectl-kyverno/apis/v1alpha1"
"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 v1alpha1.Test
if err := yaml.UnmarshalStrict(yamlBytes, &test); err != nil {
return TestCase{
Path: path,
Fs: fs,
Err: err,
}
}
cleanTest(&test)
return TestCase{
Path: path,
Fs: fs,
Test: &test,
}
}
func cleanTest(test *v1alpha1.Test) {
test.Policies = removeDuplicateStrings(test.Policies)
test.Resources = removeDuplicateStrings(test.Resources)
for index, result := range test.Results {
test.Results[index].Resources = removeDuplicateStrings(result.Resources)
}
}
func removeDuplicateStrings(strings []string) []string {
seen := make(map[string]struct{})
var result []string
for _, str := range strings {
if _, exists := seen[str]; !exists {
seen[str] = struct{}{}
result = append(result, str)
}
}
return result
}