mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-15 17:51:20 +00:00
a9fef256c7
* updates for foreach and mutate Signed-off-by: Jim Bugwadia <jim@nirmata.com> * allow tests to pass on Windows Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix linter check Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add elementIndex variable Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fmt Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix jsonResult usage Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add mutate validation and fix error in validate.foreach Signed-off-by: Jim Bugwadia <jim@nirmata.com> * format Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update message Signed-off-by: Jim Bugwadia <jim@nirmata.com> * do not skip validation for all array entries when one is skipped Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add foreach tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix fmt Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix format errors Signed-off-by: Jim Bugwadia <jim@nirmata.com> * remove unused declarations Signed-off-by: Jim Bugwadia <jim@nirmata.com> * revert namespaceWithLabelYaml Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix mutate of element list Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update CRDs Signed-off-by: Jim Bugwadia <jim@nirmata.com> * Update api/kyverno/v1/policy_types.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/forceMutate.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/forceMutate.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/forceMutate.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/mutation.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/mutation.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/mutation.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/validate/validate.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/validate/validate.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update test/cli/test/custom-functions/policy.yaml Co-authored-by: Steven E. Harris <seh@panix.com> * Update test/cli/test/foreach/policies.yaml Co-authored-by: Steven E. Harris <seh@panix.com> * accept review comments and format Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add comments to strategicMergePatch buffer Signed-off-by: Jim Bugwadia <jim@nirmata.com> * load context and evaluate preconditions foreach element Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add test for foreach mutate context and precondition * precondition testcase * address review comments Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update message Signed-off-by: Jim Bugwadia <jim@nirmata.com> * format Signed-off-by: Jim Bugwadia <jim@nirmata.com> Co-authored-by: Steven E. Harris <seh@panix.com> Co-authored-by: Vyankatesh Kudtarkar <vyankateshkd@gmail.com>
88 lines
2.8 KiB
Go
88 lines
2.8 KiB
Go
package testrunner
|
|
|
|
import "testing"
|
|
|
|
func Test_Mutate_EndPoint(t *testing.T) {
|
|
testScenario(t, "/test/scenarios/other/scenario_mutate_endpoint.yaml")
|
|
}
|
|
|
|
func Test_Mutate_Validate_qos(t *testing.T) {
|
|
testScenario(t, "/test/scenarios/other/scenario_mutate_validate_qos.yaml")
|
|
}
|
|
|
|
func Test_disallow_privileged(t *testing.T) {
|
|
testScenario(t, "test/scenarios/samples/best_practices/disallow_priviledged.yaml")
|
|
}
|
|
|
|
func Test_validate_healthChecks(t *testing.T) {
|
|
testScenario(t, "/test/scenarios/other/scenario_validate_healthChecks.yaml")
|
|
}
|
|
|
|
func Test_validate_host_network_port(t *testing.T) {
|
|
testScenario(t, "test/scenarios/samples/best_practices/disallow_host_network_port.yaml")
|
|
}
|
|
|
|
func Test_validate_host_PID_IPC(t *testing.T) {
|
|
testScenario(t, "test/scenarios/samples/best_practices/disallow_host_pid_ipc.yaml")
|
|
}
|
|
|
|
//TODO: support generate
|
|
// func Test_add_ns_quota(t *testing.T) {
|
|
// testScenario(t, "test/scenarios/samples/best_practices/add_ns_quota.yaml")
|
|
// }
|
|
|
|
func Test_validate_disallow_default_serviceaccount(t *testing.T) {
|
|
testScenario(t, "test/scenarios/other/scenario_validate_disallow_default_serviceaccount.yaml")
|
|
}
|
|
|
|
func Test_validate_selinux_context(t *testing.T) {
|
|
testScenario(t, "test/scenarios/other/scenario_validate_selinux_context.yaml")
|
|
}
|
|
|
|
func Test_validate_proc_mount(t *testing.T) {
|
|
testScenario(t, "test/scenarios/other/scenario_validate_default_proc_mount.yaml")
|
|
}
|
|
|
|
func Test_validate_volume_whitelist(t *testing.T) {
|
|
testScenario(t, "test/scenarios/other/scenario_validate_volume_whiltelist.yaml")
|
|
}
|
|
|
|
func Test_validate_disallow_bind_mounts_fail(t *testing.T) {
|
|
testScenario(t, "test/scenarios/samples/best_practices/disallow_bind_mounts_fail.yaml")
|
|
}
|
|
|
|
func Test_validate_disallow_bind_mounts_pass(t *testing.T) {
|
|
testScenario(t, "test/scenarios/samples/best_practices/disallow_bind_mounts_pass.yaml")
|
|
}
|
|
|
|
func Test_disallow_sysctls(t *testing.T) {
|
|
testScenario(t, "/test/scenarios/samples/best_practices/disallow_sysctls.yaml")
|
|
}
|
|
|
|
func Test_add_safe_to_evict(t *testing.T) {
|
|
testScenario(t, "test/scenarios/samples/best_practices/add_safe_to_evict.yaml")
|
|
}
|
|
|
|
func Test_add_safe_to_evict_annotation2(t *testing.T) {
|
|
testScenario(t, "test/scenarios/samples/best_practices/add_safe_to_evict2.yaml")
|
|
}
|
|
|
|
func Test_add_safe_to_evict_annotation3(t *testing.T) {
|
|
testScenario(t, "test/scenarios/samples/best_practices/add_safe_to_evict3.yaml")
|
|
}
|
|
|
|
func Test_validate_restrict_automount_sa_token_pass(t *testing.T) {
|
|
testScenario(t, "test/scenarios/samples/more/restrict_automount_sa_token.yaml")
|
|
}
|
|
|
|
func Test_known_ingress(t *testing.T) {
|
|
testScenario(t, "test/scenarios/samples/more/restrict_ingress_classes.yaml")
|
|
}
|
|
|
|
func Test_unknown_ingress(t *testing.T) {
|
|
testScenario(t, "test/scenarios/samples/more/unknown_ingress_class.yaml")
|
|
}
|
|
|
|
func Test_mutate_pod_spec(t *testing.T) {
|
|
testScenario(t, "test/scenarios/other/scenario_mutate_pod_spec.yaml")
|
|
}
|