1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

refactor files

This commit is contained in:
shivdudhani 2019-06-13 13:41:38 -07:00
parent b68745e806
commit a49fb8cdab
2 changed files with 50 additions and 57 deletions

View file

@ -1,57 +0,0 @@
package testutils
import (
"io/ioutil"
ospath "path"
"path/filepath"
"testing"
"github.com/golang/glog"
)
// Load policy & resource files
// engine pass the (policy, resource)
// check the expected response
const examplesPath string = "examples"
const resourcesFolder string = "resources"
const tScenarioFile string = "testScenarios.yaml"
const outputFolder string = "output"
//LoadTestSuite reads the resource, policy and scenario files
func LoadTestSuite(t *testing.T, path string) *testSuite {
glog.Infof("loading test suites at %s", path)
// gp := os.Getenv("GOPATH")
// ap := ospath.Join(gp, "src/github.com/nirmata/kyverno")
// build test suite
// each suite contains test bundles for test sceanrios
// ts := NewTestSuite(t, ospath.Join(ap, examplesPath))
ts := NewTestSuite(t, path)
ts.buildTestSuite()
glog.Infof("done loading test suite at %s", path)
return ts
}
func checkMutationRPatches(er *resourceInfo, pr *resourceInfo) bool {
if !er.isSame(*pr) {
getResourceYAML(pr.rawResource)
return false
}
return true
}
func getYAMLfiles(path string) (yamls []string) {
fileInfo, err := ioutil.ReadDir(path)
if err != nil {
return nil
}
for _, file := range fileInfo {
if file.Name() == tScenarioFile {
continue
}
if filepath.Ext(file.Name()) == ".yml" || filepath.Ext(file.Name()) == ".yaml" {
yamls = append(yamls, ospath.Join(path, file.Name()))
}
}
return yamls
}

View file

@ -6,6 +6,9 @@ import (
"fmt"
"io/ioutil"
"os"
ospath "path"
"path/filepath"
"testing"
"gopkg.in/yaml.v2"
@ -213,3 +216,50 @@ func LoadScenarios(file string) ([]*tScenario, error) {
}
return ts, nil
}
// Load policy & resource files
// engine pass the (policy, resource)
// check the expected response
const examplesPath string = "examples"
const resourcesFolder string = "resources"
const tScenarioFile string = "testScenarios.yaml"
const outputFolder string = "output"
//LoadTestSuite reads the resource, policy and scenario files
func LoadTestSuite(t *testing.T, path string) *testSuite {
glog.Infof("loading test suites at %s", path)
// gp := os.Getenv("GOPATH")
// ap := ospath.Join(gp, "src/github.com/nirmata/kyverno")
// build test suite
// each suite contains test bundles for test sceanrios
// ts := NewTestSuite(t, ospath.Join(ap, examplesPath))
ts := NewTestSuite(t, path)
ts.buildTestSuite()
glog.Infof("done loading test suite at %s", path)
return ts
}
func checkMutationRPatches(er *resourceInfo, pr *resourceInfo) bool {
if !er.isSame(*pr) {
getResourceYAML(pr.rawResource)
return false
}
return true
}
func getYAMLfiles(path string) (yamls []string) {
fileInfo, err := ioutil.ReadDir(path)
if err != nil {
return nil
}
for _, file := range fileInfo {
if file.Name() == tScenarioFile {
continue
}
if filepath.Ext(file.Name()) == ".yml" || filepath.Ext(file.Name()) == ".yaml" {
yamls = append(yamls, ospath.Join(path, file.Name()))
}
}
return yamls
}