-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathrender_test.go
More file actions
375 lines (350 loc) · 10.3 KB
/
render_test.go
File metadata and controls
375 lines (350 loc) · 10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
package payload
import (
"os"
"strings"
"testing"
"github.com/google/go-cmp/cmp"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/utils/ptr"
configv1 "github.com/openshift/api/config/v1"
)
func TestRenderManifest(t *testing.T) {
tests := []struct {
name string
config manifestRenderConfig
manifestFile string
expectedManifestFile string
expectedErr error
}{
{
name: "cvo deployment",
config: manifestRenderConfig{
ReleaseImage: "quay.io/cvo/release:latest",
ClusterProfile: "some-profile",
},
manifestFile: "../../install/0000_00_cluster-version-operator_30_deployment.yaml",
expectedManifestFile: "./testdata/TestRenderManifest_expected_cvo_deployment.yaml",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
bytes, err := os.ReadFile(tt.manifestFile)
if err != nil {
t.Fatalf("failed to read manifest file: %v", err)
}
actual, actualErr := renderManifest(tt.config, bytes)
if strings.ToLower(os.Getenv("UPDATE")) == "true" || actualErr != nil {
if err := os.WriteFile(tt.expectedManifestFile, actual, 0644); err != nil {
t.Fatalf("failed to update manifest file: %v", err)
}
}
if diff := cmp.Diff(tt.expectedErr, actualErr, cmp.Comparer(func(x, y error) bool {
if x == nil || y == nil {
return x == nil && y == nil
}
return x.Error() == y.Error()
})); diff != "" {
t.Errorf("%s: the actual error differs from the expected (-want, +got): %s", tt.name, diff)
} else {
expected, err := os.ReadFile(tt.expectedManifestFile)
if err != nil {
t.Fatalf("failed to read expected manifest file: %v", err)
}
if diff := cmp.Diff(expected, actual); diff != "" {
t.Errorf("%s: the actual does not match the expected (-want, +got): %s", tt.name, diff)
}
}
})
}
}
func TestRenderDirFiltering(t *testing.T) {
tests := []struct {
name string
manifests []testManifest
majorVersion *uint64
expectedInclusions []string // Names of manifests that should be included
expectedExclusions []string // Names of manifests that should be excluded
expectError bool // Whether an error is expected
}{
{
name: "major version 4 includes version 4 manifests",
manifests: []testManifest{
{
name: "version4-manifest",
annotations: map[string]string{
"release.openshift.io/major-version": "4",
},
},
{
name: "version5-manifest",
annotations: map[string]string{
"release.openshift.io/major-version": "5",
},
},
{
name: "no-version-manifest",
annotations: map[string]string{},
},
},
majorVersion: ptr.To(uint64(4)),
expectedInclusions: []string{"version4-manifest", "no-version-manifest"},
expectedExclusions: []string{"version5-manifest"},
},
{
name: "major version 5 includes version 5 manifests",
manifests: []testManifest{
{
name: "version4-manifest",
annotations: map[string]string{
"release.openshift.io/major-version": "4",
},
},
{
name: "version5-manifest",
annotations: map[string]string{
"release.openshift.io/major-version": "5",
},
},
},
majorVersion: ptr.To(uint64(5)),
expectedInclusions: []string{"version5-manifest"},
expectedExclusions: []string{"version4-manifest"},
},
{
name: "nil major version includes all manifests",
manifests: []testManifest{
{
name: "version4-manifest",
annotations: map[string]string{
"release.openshift.io/major-version": "4",
},
},
{
name: "version5-manifest",
annotations: map[string]string{
"release.openshift.io/major-version": "5",
},
},
},
majorVersion: nil,
expectedInclusions: []string{"version4-manifest", "version5-manifest"},
expectedExclusions: []string{},
},
{
name: "exclusion filtering with major version",
manifests: []testManifest{
{
name: "not-for-version3-manifest",
annotations: map[string]string{
"release.openshift.io/major-version": "-3",
},
},
{
name: "only-for-version4-manifest",
annotations: map[string]string{
"release.openshift.io/major-version": "4",
},
},
},
majorVersion: ptr.To(uint64(4)),
expectedInclusions: []string{"not-for-version3-manifest", "only-for-version4-manifest"},
expectedExclusions: []string{},
},
{
name: "complex major version filtering",
manifests: []testManifest{
{
name: "version4-or-5-manifest",
annotations: map[string]string{
"release.openshift.io/major-version": "4,5",
},
},
{
name: "exclude-version3-manifest",
annotations: map[string]string{
"release.openshift.io/major-version": "-3",
},
},
{
name: "version6-only-manifest",
annotations: map[string]string{
"release.openshift.io/major-version": "6",
},
},
},
majorVersion: ptr.To(uint64(4)),
expectedInclusions: []string{"version4-or-5-manifest", "exclude-version3-manifest"},
expectedExclusions: []string{"version6-only-manifest"},
},
{
name: "delete annotation excludes manifests",
manifests: []testManifest{
{
name: "normal-manifest",
annotations: map[string]string{},
},
{
name: "deleted-manifest",
annotations: map[string]string{
"release.openshift.io/delete": "true",
},
},
{
name: "another-normal-manifest",
annotations: map[string]string{
"some.other.annotation": "value",
},
},
},
majorVersion: ptr.To(uint64(4)),
expectedInclusions: []string{"normal-manifest", "another-normal-manifest"},
expectedExclusions: []string{"deleted-manifest"},
},
{
name: "delete annotation set to false returns error",
manifests: []testManifest{
{
name: "normal-manifest",
annotations: map[string]string{},
},
{
name: "false-delete-manifest",
annotations: map[string]string{
"release.openshift.io/delete": "false",
},
},
},
majorVersion: ptr.To(uint64(4)),
expectedInclusions: []string{"normal-manifest"},
expectedExclusions: []string{"false-delete-manifest"},
expectError: true,
},
{
name: "invalid delete annotation value returns error",
manifests: []testManifest{
{
name: "normal-manifest",
annotations: map[string]string{},
},
{
name: "invalid-value-manifest",
annotations: map[string]string{
"release.openshift.io/delete": "maybe",
},
},
},
majorVersion: ptr.To(uint64(4)),
expectedInclusions: []string{"normal-manifest"},
expectedExclusions: []string{"invalid-value-manifest"},
expectError: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Create temporary directory structure
tempDir := t.TempDir()
inputDir := tempDir + "/input"
outputDir := tempDir + "/output"
if err := os.MkdirAll(inputDir, 0755); err != nil {
t.Fatalf("failed to create input directory: %v", err)
}
if err := os.MkdirAll(outputDir, 0755); err != nil {
t.Fatalf("failed to create output directory: %v", err)
}
// Write test manifests to input directory
for _, manifest := range tt.manifests {
manifestContent := createTestManifestYAML("apiextensions.k8s.io/v1", "CustomResourceDefinition", manifest.name, manifest.annotations)
manifestPath := inputDir + "/" + manifest.name + ".yaml"
if err := os.WriteFile(manifestPath, []byte(manifestContent), 0644); err != nil {
t.Fatalf("failed to write manifest %s: %v", manifest.name, err)
}
}
// Setup render configuration
renderConfig := manifestRenderConfig{
ReleaseImage: "test-image:latest",
ClusterProfile: "test-profile",
}
requiredFeatureSet := "test"
enabledFeatureGates := sets.Set[string]{}
clusterProfile := "test-profile"
// Call renderDir with major version
err := renderDir(
renderConfig,
inputDir,
outputDir,
[]configv1.ComponentOverride{},
&requiredFeatureSet,
enabledFeatureGates,
&clusterProfile,
tt.majorVersion,
false, // processTemplate
sets.Set[string]{}, // skipFiles
sets.Set[schema.GroupKind]{}, // filterGroupKind
)
if tt.expectError {
if err == nil {
t.Errorf("expected error but got none")
}
} else {
if err != nil {
t.Fatalf("renderDir failed: %v", err)
}
}
// Check which manifests were included in output
outputFiles, err := os.ReadDir(outputDir)
if err != nil {
t.Fatalf("failed to read output directory: %v", err)
}
includedManifests := make(map[string]bool)
for _, file := range outputFiles {
if strings.HasSuffix(file.Name(), ".yaml") {
manifestName := strings.TrimSuffix(file.Name(), ".yaml")
includedManifests[manifestName] = true
}
}
// Verify expected inclusions
for _, expectedName := range tt.expectedInclusions {
if !includedManifests[expectedName] {
t.Errorf("Expected manifest %s to be included, but it was not found in output", expectedName)
}
}
// Verify expected exclusions
for _, expectedExcludedName := range tt.expectedExclusions {
if includedManifests[expectedExcludedName] {
t.Errorf("Expected manifest %s to be excluded, but it was found in output", expectedExcludedName)
}
}
})
}
}
// testManifest represents a test manifest with its annotations
type testManifest struct {
name string
annotations map[string]string
}
// createTestManifestYAML creates a YAML representation of a test manifest
func createTestManifestYAML(apiVersion, kind, name string, annotations map[string]string) string {
yaml := `apiVersion: ` + apiVersion + `
kind: ` + kind + `
metadata:
name: ` + name + `
namespace: test-namespace`
// Always add required cluster profile annotation
allAnnotations := make(map[string]string)
allAnnotations["include.release.openshift.io/test-profile"] = "true"
// Add provided annotations
for k, v := range annotations {
allAnnotations[k] = v
}
if len(allAnnotations) > 0 {
yaml += "\n annotations:"
for k, v := range allAnnotations {
yaml += "\n " + k + ": \"" + v + "\""
}
}
yaml += `
data:
test: "data"`
return yaml
}