Fixed test

This commit is contained in:
msk-
2021-01-19 17:57:42 +00:00
parent 463b776486
commit d8f2d2256d

View File

@@ -9,17 +9,16 @@ import (
kusttest_test "sigs.k8s.io/kustomize/api/testutils/kusttest" kusttest_test "sigs.k8s.io/kustomize/api/testutils/kusttest"
) )
// Coverage for issue #2609
func TestNamePrefixSuffixPatch(t *testing.T) { func TestNamePrefixSuffixPatch(t *testing.T) {
th := kusttest_test.MakeHarness(t) th := kusttest_test.MakeHarness(t)
th.WriteK("bottom/kustomization.yaml", `configMapGenerator: th.WriteK("bottom", `configMapGenerator:
- name: bottom - name: bottom
literals: literals:
- KEY=value - KEY=value
`) `)
th.WriteK("left-service/kustomization.yaml", `resources: th.WriteK("left-service", `resources:
- deployment.yaml - deployment.yaml
`) `)
@@ -43,7 +42,7 @@ spec:
name: service name: service
`) `)
th.WriteK("right-service/kustomization.yaml", `resources: th.WriteK("right-service", `resources:
- deployment.yaml - deployment.yaml
`) `)
@@ -67,12 +66,12 @@ spec:
name: service name: service
`) `)
th.WriteK("top/kustomization.yaml", `resources: th.WriteK("top", `resources:
- ./left - ./left
- ./right - ./right
`) `)
th.WriteK("top/left/kustomization.yaml", `resources: th.WriteK("top/left", `resources:
- ../../left-service - ../../left-service
- ./bottom - ./bottom
@@ -98,13 +97,13 @@ patches:
key: KEY key: KEY
`) `)
th.WriteK("top/left/bottom/kustomization.yaml", `namePrefix: left- th.WriteK("top/left/bottom", `namePrefix: left-
resources: resources:
- ../../../bottom - ../../../bottom
`) `)
th.WriteK("top/right/kustomization.yaml", `resources: th.WriteK("top/right", `resources:
- ../../right-service - ../../right-service
- ./bottom - ./bottom
@@ -130,7 +129,7 @@ patches:
key: KEY key: KEY
`) `)
th.WriteK("top/right/bottom/kustomization.yaml", `namePrefix: right- th.WriteK("top/right/bottom", `namePrefix: right-
resources: resources:
- ../../../bottom - ../../../bottom
@@ -138,21 +137,7 @@ resources:
m := th.Run("top", th.MakeDefaultOptions()) m := th.Run("top", th.MakeDefaultOptions())
// Per #2609, the desired behavior is for configMapRef.name and configMapKeyRef.name to be "mysql-9792mdchtg" not "mysql" // Per #2609, the desired behavior is for configMapRef.name and configMapKeyRef.name to be "mysql-9792mdchtg" not "mysql"
th.AssertActualEqualsExpected(m, `apiVersion: v1 th.AssertActualEqualsExpected(m, `apiVersion: apps/v1
data:
KEY: value
kind: ConfigMap
metadata:
name: left-bottom-9f2t6f5h6d
---
apiVersion: v1
data:
KEY: value
kind: ConfigMap
metadata:
name: right-bottom-9f2t6f5h6d
---
apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
labels: labels:
@@ -173,10 +158,17 @@ spec:
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: KEY key: KEY
name: left-bottom-9f2t6f5h6d name: left-bottom
image: left-image:v1.0 image: left-image:v1.0
name: service name: service
--- ---
apiVersion: v1
data:
KEY: value
kind: ConfigMap
metadata:
name: left-bottom-9f2t6f5h6d
---
apiVersion: apps/v1 apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
@@ -198,7 +190,15 @@ spec:
valueFrom: valueFrom:
configMapKeyRef: configMapKeyRef:
key: KEY key: KEY
name: right-bottom-9f2t6f5h6d name: right-bottom
image: right-image:v1.0 image: right-image:v1.0
name: service`) name: service
---
apiVersion: v1
data:
KEY: value
kind: ConfigMap
metadata:
name: right-bottom-9f2t6f5h6d
`)
} }