1
1
package test
2
2
3
3
import (
4
+ "fmt"
4
5
"testing"
5
6
6
7
"github.com/stretchr/testify/assert"
7
8
corev1 "k8s.io/api/core/v1"
8
9
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
9
10
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
11
+ "k8s.io/apimachinery/pkg/labels"
10
12
"sigs.k8s.io/controller-runtime/pkg/client"
11
13
12
14
harness "github.com/kudobuilder/kuttl/pkg/apis/testharness/v1beta1"
@@ -18,10 +20,12 @@ import (
18
20
func TestLoadTestSteps (t * testing.T ) {
19
21
for _ , tt := range []struct {
20
22
path string
23
+ runLabels labels.Set
21
24
testSteps []Step
22
25
}{
23
26
{
24
- "test_data/with-overrides/" ,
27
+ "test_data/with-overrides" ,
28
+ labels.Set {},
25
29
[]Step {
26
30
{
27
31
Name : "with-test-step-name-override" ,
@@ -52,7 +56,8 @@ func TestLoadTestSteps(t *testing.T) {
52
56
"qosClass" : "BestEffort" ,
53
57
}),
54
58
},
55
- Errors : []client.Object {},
59
+ Errors : []client.Object {},
60
+ TestRunLabels : labels.Set {},
56
61
},
57
62
{
58
63
Name : "test-assert" ,
@@ -96,7 +101,8 @@ func TestLoadTestSteps(t *testing.T) {
96
101
"qosClass" : "BestEffort" ,
97
102
}),
98
103
},
99
- Errors : []client.Object {},
104
+ Errors : []client.Object {},
105
+ TestRunLabels : labels.Set {},
100
106
},
101
107
{
102
108
Name : "pod" ,
@@ -124,7 +130,8 @@ func TestLoadTestSteps(t *testing.T) {
124
130
"qosClass" : "BestEffort" ,
125
131
}),
126
132
},
127
- Errors : []client.Object {},
133
+ Errors : []client.Object {},
134
+ TestRunLabels : labels.Set {},
128
135
},
129
136
{
130
137
Name : "name-overridden" ,
@@ -164,12 +171,14 @@ func TestLoadTestSteps(t *testing.T) {
164
171
"restartPolicy" : "Never" ,
165
172
}),
166
173
},
167
- Errors : []client.Object {},
174
+ Errors : []client.Object {},
175
+ TestRunLabels : labels.Set {},
168
176
},
169
177
},
170
178
},
171
179
{
172
180
"test_data/list-pods" ,
181
+ labels.Set {},
173
182
[]Step {
174
183
{
175
184
Name : "pod" ,
@@ -217,15 +226,110 @@ func TestLoadTestSteps(t *testing.T) {
217
226
},
218
227
},
219
228
},
229
+ Errors : []client.Object {},
230
+ TestRunLabels : labels.Set {},
231
+ },
232
+ },
233
+ },
234
+ {
235
+ "test_data/test-run-labels" ,
236
+ labels.Set {},
237
+ []Step {
238
+ {
239
+ Name : "" ,
240
+ Index : 1 ,
241
+ TestRunLabels : labels.Set {},
242
+ Apply : []client.Object {},
243
+ Asserts : []client.Object {},
244
+ Errors : []client.Object {},
245
+ },
246
+ },
247
+ },
248
+ {
249
+ "test_data/test-run-labels" ,
250
+ labels.Set {"flavor" : "a" },
251
+ []Step {
252
+ {
253
+ Name : "create-a" ,
254
+ Index : 1 ,
255
+ TestRunLabels : labels.Set {"flavor" : "a" },
256
+ Apply : []client.Object {
257
+ & unstructured.Unstructured {
258
+ Object : map [string ]interface {}{
259
+ "apiVersion" : "v1" ,
260
+ "kind" : "ConfigMap" ,
261
+ "metadata" : map [string ]interface {}{
262
+ "name" : "test" ,
263
+ },
264
+ "data" : map [string ]interface {}{
265
+ "flavor" : "a" ,
266
+ },
267
+ },
268
+ },
269
+ },
270
+ Asserts : []client.Object {
271
+ & unstructured.Unstructured {
272
+ Object : map [string ]interface {}{
273
+ "apiVersion" : "v1" ,
274
+ "kind" : "ConfigMap" ,
275
+ "metadata" : map [string ]interface {}{
276
+ "name" : "test" ,
277
+ },
278
+ "data" : map [string ]interface {}{
279
+ "flavor" : "a" ,
280
+ },
281
+ },
282
+ },
283
+ },
284
+ Errors : []client.Object {},
285
+ },
286
+ },
287
+ },
288
+ {
289
+ "test_data/test-run-labels" ,
290
+ labels.Set {"flavor" : "b" },
291
+ []Step {
292
+ {
293
+ Name : "create-b" ,
294
+ Index : 1 ,
295
+ TestRunLabels : labels.Set {"flavor" : "b" },
296
+ Apply : []client.Object {
297
+ & unstructured.Unstructured {
298
+ Object : map [string ]interface {}{
299
+ "apiVersion" : "v1" ,
300
+ "kind" : "ConfigMap" ,
301
+ "metadata" : map [string ]interface {}{
302
+ "name" : "test" ,
303
+ },
304
+ "data" : map [string ]interface {}{
305
+ "flavor" : "b" ,
306
+ },
307
+ },
308
+ },
309
+ },
310
+ Asserts : []client.Object {
311
+ & unstructured.Unstructured {
312
+ Object : map [string ]interface {}{
313
+ "apiVersion" : "v1" ,
314
+ "kind" : "ConfigMap" ,
315
+ "metadata" : map [string ]interface {}{
316
+ "name" : "test" ,
317
+ },
318
+ "data" : map [string ]interface {}{
319
+ "flavor" : "b" ,
320
+ },
321
+ },
322
+ },
323
+ },
220
324
Errors : []client.Object {},
221
325
},
222
326
},
223
327
},
224
328
} {
225
329
tt := tt
226
330
227
- t .Run (tt .path , func (t * testing.T ) {
228
- test := & Case {Dir : tt .path , Logger : testutils .NewTestLogger (t , tt .path )}
331
+ t .Run (fmt . Sprintf ( "%s/%s" , tt .path , tt . runLabels ) , func (t * testing.T ) {
332
+ test := & Case {Dir : tt .path , Logger : testutils .NewTestLogger (t , tt .path ), RunLabels : tt . runLabels }
229
333
230
334
err := test .LoadTestSteps ()
231
335
assert .Nil (t , err )
@@ -238,11 +342,11 @@ func TestLoadTestSteps(t *testing.T) {
238
342
assert .Equal (t , len (tt .testSteps ), len (testStepsVal ))
239
343
for index := range tt .testSteps {
240
344
tt .testSteps [index ].Dir = tt .path
241
- assert .Equal (t , tt .testSteps [index ].Apply , testStepsVal [index ].Apply )
242
- assert .Equal (t , tt .testSteps [index ].Asserts , testStepsVal [index ].Asserts )
243
- assert .Equal (t , tt .testSteps [index ].Errors , testStepsVal [index ].Errors )
244
- assert .Equal (t , tt .testSteps [index ].Step , testStepsVal [index ].Step )
245
- assert .Equal (t , tt .testSteps [index ].Dir , testStepsVal [index ].Dir )
345
+ assert .Equal (t , tt .testSteps [index ].Apply , testStepsVal [index ].Apply , "apply objects need to match" )
346
+ assert .Equal (t , tt .testSteps [index ].Asserts , testStepsVal [index ].Asserts , "assert objects need to match" )
347
+ assert .Equal (t , tt .testSteps [index ].Errors , testStepsVal [index ].Errors , "error objects need to match" )
348
+ assert .Equal (t , tt .testSteps [index ].Step , testStepsVal [index ].Step , "step object needs to match" )
349
+ assert .Equal (t , tt .testSteps [index ].Dir , testStepsVal [index ].Dir , "dir needs to match" )
246
350
assert .Equal (t , tt .testSteps [index ], testStepsVal [index ])
247
351
}
248
352
})
0 commit comments