|
| 1 | +package v1alpha1 |
| 2 | + |
| 3 | +import ( |
| 4 | + "crypto/sha256" |
| 5 | + "encoding/hex" |
| 6 | + "testing" |
| 7 | + |
| 8 | + "github.com/stretchr/testify/assert" |
| 9 | +) |
| 10 | + |
| 11 | +func TestEnvironmentNameLabel(t *testing.T) { |
| 12 | + type testCase struct { |
| 13 | + name string |
| 14 | + inputEnvironment *Environment |
| 15 | + expectedLabelPreHash string |
| 16 | + expectError bool |
| 17 | + } |
| 18 | + |
| 19 | + testCases := []testCase{ |
| 20 | + { |
| 21 | + name: "Default environment label hash", |
| 22 | + inputEnvironment: &Environment{ |
| 23 | + Spec: Spec{ |
| 24 | + Namespace: "default", |
| 25 | + }, |
| 26 | + Metadata: Metadata{ |
| 27 | + Name: "environments/a-nice-go-test", |
| 28 | + Namespace: "main.jsonnet", |
| 29 | + }, |
| 30 | + }, |
| 31 | + expectedLabelPreHash: "environments/a-nice-go-test:main.jsonnet", |
| 32 | + }, |
| 33 | + { |
| 34 | + name: "Overriden single nested field", |
| 35 | + inputEnvironment: &Environment{ |
| 36 | + Spec: Spec{ |
| 37 | + Namespace: "default", |
| 38 | + TankaEnvLabelFromFields: []string{ |
| 39 | + ".metadata.name", |
| 40 | + }, |
| 41 | + }, |
| 42 | + Metadata: Metadata{ |
| 43 | + Name: "environments/another-nice-go-test", |
| 44 | + }, |
| 45 | + }, |
| 46 | + expectedLabelPreHash: "environments/another-nice-go-test", |
| 47 | + }, |
| 48 | + { |
| 49 | + name: "Overriden multiple nested field", |
| 50 | + inputEnvironment: &Environment{ |
| 51 | + Spec: Spec{ |
| 52 | + Namespace: "default", |
| 53 | + TankaEnvLabelFromFields: []string{ |
| 54 | + ".metadata.name", |
| 55 | + ".spec.namespace", |
| 56 | + }, |
| 57 | + }, |
| 58 | + Metadata: Metadata{ |
| 59 | + Name: "environments/another-nice-go-test", |
| 60 | + }, |
| 61 | + }, |
| 62 | + expectedLabelPreHash: "environments/another-nice-go-test:default", |
| 63 | + }, |
| 64 | + { |
| 65 | + name: "Override field of map type", |
| 66 | + inputEnvironment: &Environment{ |
| 67 | + Spec: Spec{ |
| 68 | + TankaEnvLabelFromFields: []string{ |
| 69 | + ".metadata.labels.project", |
| 70 | + }, |
| 71 | + }, |
| 72 | + Metadata: Metadata{ |
| 73 | + Name: "environments/another-nice-go-test", |
| 74 | + Labels: map[string]string{ |
| 75 | + "project": "an-equally-nice-project", |
| 76 | + }, |
| 77 | + }, |
| 78 | + }, |
| 79 | + expectedLabelPreHash: "an-equally-nice-project", |
| 80 | + }, |
| 81 | + { |
| 82 | + name: "Label value not primitive type", |
| 83 | + inputEnvironment: &Environment{ |
| 84 | + Spec: Spec{ |
| 85 | + TankaEnvLabelFromFields: []string{ |
| 86 | + ".metadata", |
| 87 | + }, |
| 88 | + }, |
| 89 | + Metadata: Metadata{ |
| 90 | + Name: "environments/another-nice-go-test", |
| 91 | + }, |
| 92 | + }, |
| 93 | + expectError: true, |
| 94 | + }, |
| 95 | + { |
| 96 | + name: "Attempted descent past non-object like type", |
| 97 | + inputEnvironment: &Environment{ |
| 98 | + Spec: Spec{ |
| 99 | + TankaEnvLabelFromFields: []string{ |
| 100 | + ".metadata.name.nonExistent", |
| 101 | + }, |
| 102 | + }, |
| 103 | + Metadata: Metadata{ |
| 104 | + Name: "environments/not-an-object", |
| 105 | + }, |
| 106 | + }, |
| 107 | + expectError: true, |
| 108 | + }, |
| 109 | + } |
| 110 | + |
| 111 | + for _, tc := range testCases { |
| 112 | + t.Run(tc.name, func(t *testing.T) { |
| 113 | + expectedLabelHashParts := sha256.Sum256([]byte(tc.expectedLabelPreHash)) |
| 114 | + expectedLabelHashChars := []rune(hex.EncodeToString(expectedLabelHashParts[:])) |
| 115 | + expectedLabelHash := string(expectedLabelHashChars[:48]) |
| 116 | + actualLabelHash, err := tc.inputEnvironment.NameLabel() |
| 117 | + |
| 118 | + if tc.expectedLabelPreHash != "" { |
| 119 | + assert.Equal(t, expectedLabelHash, actualLabelHash) |
| 120 | + } else { |
| 121 | + assert.Equal(t, "", actualLabelHash) |
| 122 | + } |
| 123 | + |
| 124 | + if tc.expectError { |
| 125 | + assert.Error(t, err) |
| 126 | + } else { |
| 127 | + assert.NoError(t, err) |
| 128 | + } |
| 129 | + }) |
| 130 | + } |
| 131 | +} |
0 commit comments