mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 18:06:55 +00:00
* add image verification * inline policy list Signed-off-by: Jim Bugwadia <jim@nirmata.com> * cosign version and dependencies updates Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add registry initialization Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add build tag to exclude k8schain for cloud providers Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add build tag to exclude k8schain for cloud providers Signed-off-by: Jim Bugwadia <jim@nirmata.com> * generate deep copy and other fixtures Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix deep copy issues Signed-off-by: Jim Bugwadia <jim@nirmata.com> * mutate images to add digest Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add certificates to Kyverno container for HTTPS lookups Signed-off-by: Jim Bugwadia <jim@nirmata.com> * align flag syntax Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update docs Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update dependencies Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update dependencies Signed-off-by: Jim Bugwadia <jim@nirmata.com> * patch image with digest and fix checks Signed-off-by: Jim Bugwadia <jim@nirmata.com> * hardcode image for demos Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add default registry (docker.io) before calling reference.Parse Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix definition Signed-off-by: Jim Bugwadia <jim@nirmata.com> * increase webhook timeout Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix args Signed-off-by: Jim Bugwadia <jim@nirmata.com> * run gofmt Signed-off-by: Jim Bugwadia <jim@nirmata.com> * rename for clarity Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix HasImageVerify check Signed-off-by: Jim Bugwadia <jim@nirmata.com> * align make test commands Signed-off-by: Jim Bugwadia <jim@nirmata.com> * align make test commands Signed-off-by: Jim Bugwadia <jim@nirmata.com> * align make test commands Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix linter error Signed-off-by: Jim Bugwadia <jim@nirmata.com> * format Signed-off-by: Jim Bugwadia <jim@nirmata.com> * handle API conflict and retry Signed-off-by: Jim Bugwadia <jim@nirmata.com> * format Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix reviewdog issues Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix make for unit tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * improve error message Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix durations Signed-off-by: Jim Bugwadia <jim@nirmata.com> * handle errors in tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * print policy name Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add retries and duration to error log Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix time check in tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * round creation times in test Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix retry loop Signed-off-by: Jim Bugwadia <jim@nirmata.com> * remove timing check for policy creation Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix e2e error - policy not found Signed-off-by: Shuting Zhao <shutting06@gmail.com> * update string comparison method Signed-off-by: Shuting Zhao <shutting06@gmail.com> * fix test Generate_Namespace_Label_Actions Signed-off-by: Shuting Zhao <shutting06@gmail.com> * add debug info for e2e tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix error Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix generate bug Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix format Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add check for update operations Signed-off-by: Jim Bugwadia <jim@nirmata.com> * increase time for deleteing a resource Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix check Signed-off-by: Jim Bugwadia <jim@nirmata.com> Co-authored-by: Shuting Zhao <shutting06@gmail.com>
200 lines
6 KiB
Go
200 lines
6 KiB
Go
package mutate
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/kyverno/kyverno/test/e2e"
|
|
commonE2E "github.com/kyverno/kyverno/test/e2e/common"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
)
|
|
|
|
var (
|
|
// Cluster Policy GVR
|
|
clPolGVR = e2e.GetGVR("kyverno.io", "v1", "clusterpolicies")
|
|
// Namespace GVR
|
|
nsGVR = e2e.GetGVR("", "v1", "namespaces")
|
|
// ConfigMap GVR
|
|
cmGVR = e2e.GetGVR("", "v1", "configmaps")
|
|
|
|
// ClusterPolicy Namespace
|
|
clPolNS = ""
|
|
// Namespace Name
|
|
// Hardcoded in YAML Definition
|
|
// nspace = "test-mutate"
|
|
)
|
|
|
|
func Test_Mutate_Sets(t *testing.T) {
|
|
RegisterTestingT(t)
|
|
if os.Getenv("E2E") == "" {
|
|
t.Skip("Skipping E2E Test")
|
|
}
|
|
// Generate E2E Client
|
|
e2eClient, err := e2e.NewE2EClient()
|
|
Expect(err).To(BeNil())
|
|
|
|
for _, tests := range MutateTests {
|
|
By(fmt.Sprintf("Test to mutate objects : %s", tests.TestName))
|
|
|
|
// Clean up Resources
|
|
By("Cleaning Cluster Policies")
|
|
_ = e2eClient.CleanClusterPolicies(clPolGVR)
|
|
|
|
// Clear Namespace
|
|
By(fmt.Sprintf("Deleting Namespace : %s", tests.ResourceNamespace))
|
|
_ = e2eClient.DeleteClusteredResource(nsGVR, tests.ResourceNamespace)
|
|
|
|
// Wait Till Deletion of Namespace
|
|
err = e2e.GetWithRetry(1*time.Second, 15, func() error {
|
|
_, err := e2eClient.GetClusteredResource(nsGVR, tests.ResourceNamespace)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("failed to delete namespace: %v", err)
|
|
})
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
// Create Namespace
|
|
By(fmt.Sprintf("Creating Namespace %s", clPolNS))
|
|
_, err = e2eClient.CreateClusteredResourceYaml(nsGVR, newNamespaceYaml("test-mutate"))
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
// Wait Till Creation of Namespace
|
|
err = e2e.GetWithRetry(1*time.Second, 15, func() error {
|
|
_, err := e2eClient.GetClusteredResource(nsGVR, tests.ResourceNamespace)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
})
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
// Create source CM
|
|
By(fmt.Sprintf("\nCreating source ConfigMap in %s", tests.ResourceNamespace))
|
|
_, err = e2eClient.CreateNamespacedResourceYaml(cmGVR, tests.ResourceNamespace, sourceConfigMapYaml)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
// Create CM Policy
|
|
By(fmt.Sprintf("\nCreating Mutate ConfigMap Policy in %s", clPolNS))
|
|
_, err = e2eClient.CreateNamespacedResourceYaml(clPolGVR, clPolNS, tests.Data)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
err = commonE2E.PolicyCreated(tests.PolicyName)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
// Create target CM
|
|
By(fmt.Sprintf("\nCreating target ConfigMap in %s", tests.ResourceNamespace))
|
|
_, err = e2eClient.CreateNamespacedResourceYaml(cmGVR, tests.ResourceNamespace, targetConfigMapYaml)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
// Verify created ConfigMap
|
|
By(fmt.Sprintf("Verifying ConfigMap in the Namespace : %s", tests.ResourceNamespace))
|
|
// Wait Till Creation of ConfigMap
|
|
err = e2e.GetWithRetry(1*time.Second, 15, func() error {
|
|
_, err := e2eClient.GetNamespacedResource(cmGVR, tests.ResourceNamespace, "target")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
})
|
|
|
|
cmRes, err := e2eClient.GetNamespacedResource(cmGVR, tests.ResourceNamespace, "target")
|
|
c, _ := json.Marshal(cmRes)
|
|
By(fmt.Sprintf("configMap : %s", string(c)))
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(cmRes.GetLabels()["kyverno.key/copy-me"]).To(Equal("sample-value"))
|
|
|
|
//CleanUp Resources
|
|
_ = e2eClient.CleanClusterPolicies(clPolGVR)
|
|
|
|
// Clear Namespace
|
|
_ = e2eClient.DeleteClusteredResource(nsGVR, tests.ResourceNamespace)
|
|
|
|
// Wait Till Deletion of Namespace
|
|
err = e2e.GetWithRetry(1*time.Second, 15, func() error {
|
|
_, err := e2eClient.GetClusteredResource(nsGVR, tests.ResourceNamespace)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("failed to delete namespace: %v", err)
|
|
})
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
By(fmt.Sprintf("Test %s Completed \n\n\n", tests.TestName))
|
|
}
|
|
}
|
|
|
|
func Test_Mutate_Ingress(t *testing.T) {
|
|
RegisterTestingT(t)
|
|
if os.Getenv("E2E") == "" {
|
|
t.Skip("Skipping E2E Test")
|
|
}
|
|
|
|
// Generate E2E Client
|
|
e2eClient, err := e2e.NewE2EClient()
|
|
Expect(err).To(BeNil())
|
|
|
|
nspace := ingressTests.testNamesapce
|
|
By(fmt.Sprintf("Cleaning Cluster Policies"))
|
|
_ = e2eClient.CleanClusterPolicies(clPolGVR)
|
|
|
|
By(fmt.Sprintf("Deleting Namespace : %s", nspace))
|
|
_ = e2eClient.DeleteClusteredResource(nsGVR, nspace)
|
|
|
|
// Wait Till Deletion of Namespace
|
|
err = e2e.GetWithRetry(1*time.Second, 15, func() error {
|
|
_, err := e2eClient.GetClusteredResource(nsGVR, nspace)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("failed to delete namespace: %v", err)
|
|
})
|
|
Expect(err).To(BeNil())
|
|
|
|
By(fmt.Sprintf("Creating mutate ClusterPolicy "))
|
|
_, err = e2eClient.CreateClusteredResourceYaml(clPolGVR, ingressTests.cpol)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
err = commonE2E.PolicyCreated(ingressTests.policyName)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
By(fmt.Sprintf("Creating Namespace %s", nspace))
|
|
_, err = e2eClient.CreateClusteredResourceYaml(nsGVR, newNamespaceYaml(nspace))
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
for _, test := range ingressTests.tests {
|
|
By(fmt.Sprintf("\n\nStart testing %s", test.testName))
|
|
|
|
gvr := e2e.GetGVR(test.group, test.version, test.rsc)
|
|
By(fmt.Sprintf("Creating Ingress %v in %s", gvr, nspace))
|
|
_, err = e2eClient.CreateNamespacedResourceYaml(gvr, nspace, test.resource)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
By(fmt.Sprintf("Verifying Ingress %v in the Namespace : %s", gvr, nspace))
|
|
var mutatedResource *unstructured.Unstructured
|
|
err = e2e.GetWithRetry(1*time.Second, 15, func() error {
|
|
mutatedResource, err = e2eClient.GetNamespacedResource(gvr, nspace, test.resourceName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
})
|
|
Expect(err).To(BeNil())
|
|
|
|
By(fmt.Sprintf("Comparing patched field"))
|
|
rules, ok, err := unstructured.NestedSlice(mutatedResource.UnstructuredContent(), "spec", "rules")
|
|
Expect(err).To(BeNil())
|
|
Expect(ok).To(BeTrue())
|
|
rule := rules[0].(map[string]interface{})
|
|
host := rule["host"].(string)
|
|
Expect(host).To(Equal("kuard.mycompany.com"))
|
|
}
|
|
}
|