mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-15 17:51:20 +00:00
a923dce631
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
379 lines
8.4 KiB
Go
379 lines
8.4 KiB
Go
package mutate
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/kyverno/kyverno/pkg/engine/response"
|
|
|
|
"github.com/ghodss/yaml"
|
|
assert "github.com/stretchr/testify/assert"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
"sigs.k8s.io/controller-runtime/pkg/log"
|
|
)
|
|
|
|
var inputBytes = []byte(`
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: myDeploy
|
|
spec:
|
|
replica: 2
|
|
template:
|
|
metadata:
|
|
labels:
|
|
old-label: old-value
|
|
spec:
|
|
containers:
|
|
- image: nginx
|
|
name: nginx
|
|
`)
|
|
|
|
func TestTypeConversion(t *testing.T) {
|
|
patchesJSON6902 := []byte(`
|
|
- op: replace
|
|
path: /spec/template/spec/containers/0/name
|
|
value: my-nginx
|
|
`)
|
|
|
|
expectedPatches := [][]byte{
|
|
[]byte(`{"op":"replace","path":"/spec/template/spec/containers/0/name","value":"my-nginx"}`),
|
|
}
|
|
|
|
// serialize resource
|
|
inputJSON, err := yaml.YAMLToJSON(inputBytes)
|
|
assert.Nil(t, err)
|
|
|
|
var resource unstructured.Unstructured
|
|
err = resource.UnmarshalJSON(inputJSON)
|
|
assert.Nil(t, err)
|
|
|
|
jsonPatches, err := yaml.YAMLToJSON(patchesJSON6902)
|
|
assert.Nil(t, err)
|
|
// apply patches
|
|
resp, _ := ProcessPatchJSON6902("type-conversion", jsonPatches, resource, log.Log)
|
|
if !assert.Equal(t, response.RuleStatusPass, resp.Status) {
|
|
t.Fatal(resp.Message)
|
|
}
|
|
|
|
assert.Equal(t, expectedPatches, resp.Patches,
|
|
fmt.Sprintf("expectedPatches: %s\ngeneratedPatches: %s", string(expectedPatches[0]), string(resp.Patches[0])))
|
|
}
|
|
|
|
func TestJsonPatch(t *testing.T) {
|
|
testCases := []struct {
|
|
testName string
|
|
// patches []kyverno.Patch
|
|
patches string
|
|
expected []byte
|
|
}{
|
|
{
|
|
testName: "single patch",
|
|
patches: `
|
|
- op: replace
|
|
path: /spec/replica
|
|
value: 5
|
|
`,
|
|
expected: []byte(`
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: myDeploy
|
|
spec:
|
|
replica: 5
|
|
template:
|
|
metadata:
|
|
labels:
|
|
old-label: old-value
|
|
spec:
|
|
containers:
|
|
- image: nginx
|
|
name: nginx
|
|
`),
|
|
},
|
|
{
|
|
testName: "insert to list",
|
|
patches: `
|
|
- op: add
|
|
path: /spec/template/spec/containers/1
|
|
value: {"name":"new-nginx","image":"new-nginx-image"}
|
|
`,
|
|
expected: []byte(`
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: myDeploy
|
|
spec:
|
|
replica: 2
|
|
template:
|
|
metadata:
|
|
labels:
|
|
old-label: old-value
|
|
spec:
|
|
containers:
|
|
- image: nginx
|
|
name: nginx
|
|
- name: new-nginx
|
|
image: new-nginx-image
|
|
`),
|
|
},
|
|
{
|
|
testName: "replace first element in list",
|
|
patches: `
|
|
- op: replace
|
|
path: /spec/template/spec/containers/0
|
|
value: {"name":"new-nginx","image":"new-nginx-image"}
|
|
`,
|
|
expected: []byte(`
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: myDeploy
|
|
spec:
|
|
replica: 2
|
|
template:
|
|
metadata:
|
|
labels:
|
|
old-label: old-value
|
|
spec:
|
|
containers:
|
|
- name: new-nginx
|
|
image: new-nginx-image
|
|
`),
|
|
},
|
|
{
|
|
testName: "multiple operations",
|
|
patches: `
|
|
- op: replace
|
|
path: /spec/template/spec/containers/0/name
|
|
value: my-nginx
|
|
- op: add
|
|
path: /spec/replica
|
|
value: 999
|
|
- op: add
|
|
path: /spec/template/spec/volumes
|
|
value:
|
|
- emptyDir:
|
|
medium: Memory
|
|
name: vault-secret
|
|
`,
|
|
expected: []byte(`
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: myDeploy
|
|
spec:
|
|
replica: 999
|
|
template:
|
|
metadata:
|
|
labels:
|
|
old-label: old-value
|
|
spec:
|
|
containers:
|
|
- image: nginx
|
|
name: my-nginx
|
|
volumes:
|
|
- emptyDir:
|
|
medium: Memory
|
|
name: vault-secret
|
|
`),
|
|
},
|
|
}
|
|
|
|
for _, testCase := range testCases {
|
|
t.Run(testCase.testName, func(t *testing.T) {
|
|
|
|
expectedBytes, err := yaml.YAMLToJSON(testCase.expected)
|
|
assert.Nil(t, err)
|
|
|
|
inputBytes, err := yaml.YAMLToJSON(inputBytes)
|
|
assert.Nil(t, err)
|
|
|
|
patches, err := yaml.YAMLToJSON([]byte(testCase.patches))
|
|
assert.Nil(t, err)
|
|
|
|
out, err := applyPatchesWithOptions(inputBytes, patches)
|
|
assert.Nil(t, err)
|
|
|
|
if !assert.Equal(t, string(expectedBytes), string(out), testCase.testName) {
|
|
t.FailNow()
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_MissingPaths(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
resource string
|
|
patches string
|
|
expectedPatches map[string]bool
|
|
}{
|
|
// test
|
|
{
|
|
name: "add-map-to-non-exist-path",
|
|
resource: `
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.14.2
|
|
`,
|
|
patches: `
|
|
- path: "/spec/nodeSelector"
|
|
op: add
|
|
value: {"node.kubernetes.io/role": "test"}
|
|
`,
|
|
expectedPatches: map[string]bool{
|
|
`{"op":"add","path":"/spec/nodeSelector","value":{"node.kubernetes.io/role":"test"}}`: true,
|
|
},
|
|
},
|
|
// test
|
|
{
|
|
name: "add-to-non-exist-array",
|
|
resource: `
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.14.2
|
|
`,
|
|
patches: `
|
|
- path: "/spec/tolerations/0"
|
|
op: add
|
|
value: {"key": "node-role.kubernetes.io/test", "effect": "NoSchedule", "operator": "Exists"}
|
|
`,
|
|
expectedPatches: map[string]bool{
|
|
`{"op":"add","path":"/spec/tolerations","value":[{"effect":"NoSchedule","key":"node-role.kubernetes.io/test","operator":"Exists"}]}`: true,
|
|
},
|
|
},
|
|
// test
|
|
{
|
|
name: "add-to-non-exist-array-2",
|
|
resource: `
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.14.2
|
|
`,
|
|
patches: `
|
|
- path: "/spec/tolerations"
|
|
op: add
|
|
value: [{"key": "node-role.kubernetes.io/test", "effect": "NoSchedule", "operator": "Exists"}]
|
|
`,
|
|
expectedPatches: map[string]bool{
|
|
`{"op":"add","path":"/spec/tolerations","value":[{"effect":"NoSchedule","key":"node-role.kubernetes.io/test","operator":"Exists"}]}`: true,
|
|
},
|
|
},
|
|
// test
|
|
{
|
|
name: "add-to-non-exist-array-3",
|
|
resource: `
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.14.2
|
|
`,
|
|
patches: `
|
|
- path: "/spec/tolerations/-1"
|
|
op: add
|
|
value: {"key": "node-role.kubernetes.io/test", "effect": "NoSchedule", "operator": "Exists"}
|
|
`,
|
|
expectedPatches: map[string]bool{
|
|
`{"op":"add","path":"/spec/tolerations","value":[{"effect":"NoSchedule","key":"node-role.kubernetes.io/test","operator":"Exists"}]}`: true,
|
|
},
|
|
},
|
|
// test
|
|
{
|
|
name: "add-to-exist-array",
|
|
resource: `
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.14.2
|
|
tolerations:
|
|
- effect: NoExecute
|
|
key: node.kubernetes.io/not-ready
|
|
operator: Exists
|
|
tolerationSeconds: 300
|
|
`,
|
|
patches: `
|
|
- path: "/spec/tolerations"
|
|
op: add
|
|
value: [{"key": "node-role.kubernetes.io/test", "effect": "NoSchedule", "operator": "Exists"}]
|
|
`,
|
|
expectedPatches: map[string]bool{
|
|
`{"op":"replace","path":"/spec/tolerations/0/effect","value":"NoSchedule"}`: true,
|
|
`{"op":"replace","path":"/spec/tolerations/0/key","value":"node-role.kubernetes.io/test"}`: true,
|
|
`{"op":"remove","path":"/spec/tolerations/0/tolerationSeconds"}`: true,
|
|
},
|
|
},
|
|
// test
|
|
{
|
|
name: "add-to-exist-array-2",
|
|
resource: `
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.14.2
|
|
tolerations:
|
|
- effect: NoExecute
|
|
key: node.kubernetes.io/not-ready
|
|
operator: Exists
|
|
tolerationSeconds: 300
|
|
`,
|
|
patches: `
|
|
- path: "/spec/tolerations/-"
|
|
op: add
|
|
value: {"key": "node-role.kubernetes.io/test", "effect": "NoSchedule", "operator": "Exists"}
|
|
`,
|
|
expectedPatches: map[string]bool{
|
|
`{"op":"add","path":"/spec/tolerations/1","value":{"effect":"NoSchedule","key":"node-role.kubernetes.io/test","operator":"Exists"}}`: true,
|
|
},
|
|
},
|
|
// test
|
|
{
|
|
name: "add-to-exist-array-3",
|
|
resource: `
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.14.2
|
|
tolerations:
|
|
- effect: NoExecute
|
|
key: node.kubernetes.io/not-ready
|
|
operator: Exists
|
|
tolerationSeconds: 300
|
|
- key: "node.kubernetes.io/unreachable"
|
|
operator: "Exists"
|
|
effect: "NoExecute"
|
|
tolerationSeconds: 6000
|
|
`,
|
|
patches: `
|
|
- path: "/spec/tolerations/-1"
|
|
op: add
|
|
value: {"key": "node-role.kubernetes.io/test", "effect": "NoSchedule", "operator": "Exists"}
|
|
`,
|
|
expectedPatches: map[string]bool{
|
|
`{"op":"add","path":"/spec/tolerations/2","value":{"effect":"NoSchedule","key":"node-role.kubernetes.io/test","operator":"Exists"}}`: true,
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
r, err := yaml.YAMLToJSON([]byte(test.resource))
|
|
assert.Nil(t, err)
|
|
|
|
patches, err := yaml.YAMLToJSON([]byte(test.patches))
|
|
assert.Nil(t, err)
|
|
|
|
patchedResource, err := applyPatchesWithOptions(r, patches)
|
|
assert.Nil(t, err)
|
|
|
|
generatedP, err := generatePatches(r, patchedResource)
|
|
assert.Nil(t, err)
|
|
|
|
for _, p := range generatedP {
|
|
assert.Equal(t, test.expectedPatches[string(p)], true,
|
|
fmt.Sprintf("test: %s\nunexpected patch: %s\nexpect one of: %v", test.name, string(p), test.expectedPatches))
|
|
}
|
|
}
|
|
}
|