forked from tektoncd/pipeline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstepaction_validation_test.go
975 lines (968 loc) · 25.8 KB
/
stepaction_validation_test.go
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
/*
Copyright 2023 The Tekton Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package v1alpha1_test
import (
"context"
"fmt"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
v1 "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1"
"github.com/tektoncd/pipeline/pkg/apis/pipeline/v1alpha1"
"github.com/tektoncd/pipeline/test/diff"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"knative.dev/pkg/apis"
)
func TestStepActionValidate(t *testing.T) {
tests := []struct {
name string
sa *v1alpha1.StepAction
wc func(context.Context) context.Context
}{{
name: "valid step action",
sa: &v1alpha1.StepAction{
ObjectMeta: metav1.ObjectMeta{Name: "stepaction"},
Spec: v1alpha1.StepActionSpec{
Image: "my-image",
Script: `
#!/usr/bin/env bash
echo hello`,
},
},
}}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
ctx := context.Background()
if tt.wc != nil {
ctx = tt.wc(ctx)
}
err := tt.sa.Validate(ctx)
if err != nil {
t.Errorf("StepAction.Validate() returned error for valid StepAction: %v", err)
}
})
}
}
func TestStepActionSpecValidate(t *testing.T) {
type fields struct {
Image string
Command []string
Args []string
Script string
Env []corev1.EnvVar
Params []v1.ParamSpec
Results []v1alpha1.StepActionResult
VolumeMounts []corev1.VolumeMount
}
tests := []struct {
name string
fields fields
}{{
name: "step action with command",
fields: fields{
Image: "myimage",
Command: []string{"ls"},
Args: []string{"-lh"},
},
}, {
name: "step action with script",
fields: fields{
Image: "myimage",
Script: "echo hi",
},
}, {
name: "step action with env",
fields: fields{
Image: "myimage",
Script: "echo hi",
Env: []corev1.EnvVar{{
Name: "HOME",
Value: "/tekton/home",
}},
},
}, {
name: "valid params type explicit",
fields: fields{
Image: "myimage",
Params: []v1.ParamSpec{{
Name: "stringParam",
Type: v1.ParamTypeString,
Description: "param",
Default: v1.NewStructuredValues("default"),
}, {
Name: "objectParam",
Type: v1.ParamTypeObject,
Description: "param",
Properties: map[string]v1.PropertySpec{
"key1": {},
"key2": {},
},
Default: v1.NewObject(map[string]string{
"key1": "var1",
"key2": "var2",
}),
}, {
Name: "objectParamWithoutDefault",
Type: v1.ParamTypeObject,
Description: "param",
Properties: map[string]v1.PropertySpec{
"key1": {},
"key2": {},
},
}, {
Name: "objectParamWithDefaultPartialKeys",
Type: v1.ParamTypeObject,
Description: "param",
Properties: map[string]v1.PropertySpec{
"key1": {},
"key2": {},
},
Default: v1.NewObject(map[string]string{
"key1": "default",
}),
}},
},
}, {
name: "valid string param usage",
fields: fields{
Image: "url",
Params: []v1.ParamSpec{{
Name: "baz",
}, {
Name: "foo-is-baz",
}},
Args: []string{"--flag=$(params.baz) && $(params.foo-is-baz)"},
},
}, {
name: "valid array param usage",
fields: fields{
Image: "url",
Params: []v1.ParamSpec{{
Name: "baz",
Type: v1.ParamTypeArray,
}, {
Name: "foo-is-baz",
Type: v1.ParamTypeArray,
}},
Command: []string{"$(params.foo-is-baz)"},
Args: []string{"$(params.baz)", "middle string", "$(params.foo-is-baz)"},
},
}, {
name: "valid object param usage",
fields: fields{
Params: []v1.ParamSpec{{
Name: "gitrepo",
Type: v1.ParamTypeObject,
Properties: map[string]v1.PropertySpec{
"url": {},
"commit": {},
},
}},
Image: "some-git-image",
Args: []string{"-url=$(params.gitrepo.url)", "-commit=$(params.gitrepo.commit)"},
},
}, {
name: "valid star array usage",
fields: fields{
Params: []v1.ParamSpec{{
Name: "baz",
Type: v1.ParamTypeArray,
}, {
Name: "foo-is-baz",
Type: v1.ParamTypeArray,
}},
Image: "myimage",
Command: []string{"$(params.foo-is-baz)"},
Args: []string{"$(params.baz[*])", "middle string", "$(params.foo-is-baz[*])"},
},
}, {
name: "valid step with parameterized script",
fields: fields{
Params: []v1.ParamSpec{{
Name: "baz",
}, {
Name: "foo-is-baz",
}},
Image: "my-image",
Script: `
#!/usr/bin/env bash
hello $(params.baz)`,
},
}, {
name: "valid result",
fields: fields{
Image: "my-image",
Args: []string{"arg"},
Results: []v1alpha1.StepActionResult{{
Name: "MY-RESULT",
Description: "my great result",
}},
},
}, {
name: "valid result type string",
fields: fields{
Image: "my-image",
Args: []string{"arg"},
Results: []v1alpha1.StepActionResult{{
Name: "MY-RESULT",
Type: "string",
Description: "my great result",
}},
},
}, {
name: "valid result type array",
fields: fields{
Image: "my-image",
Args: []string{"arg"},
Results: []v1alpha1.StepActionResult{{
Name: "MY-RESULT",
Type: v1.ResultsTypeArray,
Description: "my great result",
}},
},
}, {
name: "valid result type object",
fields: fields{
Image: "my-image",
Args: []string{"arg"},
Results: []v1alpha1.StepActionResult{{
Name: "MY-RESULT",
Type: v1.ResultsTypeObject,
Description: "my great result",
Properties: map[string]v1.PropertySpec{
"url": {Type: "string"},
"commit": {Type: "string"},
},
}},
},
}, {
name: "valid volumeMounts",
fields: fields{
Image: "my-image",
Args: []string{"arg"},
Params: []v1.ParamSpec{{
Name: "foo",
}, {
Name: "array-params",
Type: v1.ParamTypeArray,
}, {
Name: "object-params",
Type: v1.ParamTypeObject,
Properties: map[string]v1.PropertySpec{
"key": {Type: "string"},
},
},
},
VolumeMounts: []corev1.VolumeMount{{
Name: "$(params.foo)",
MountPath: "/config",
}, {
Name: "$(params.array-params[0])",
MountPath: "/config",
}, {
Name: "$(params.object-params.key)",
MountPath: "/config",
}},
},
}}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
sa := &v1alpha1.StepActionSpec{
Image: tt.fields.Image,
Command: tt.fields.Command,
Args: tt.fields.Args,
Script: tt.fields.Script,
Env: tt.fields.Env,
Params: tt.fields.Params,
Results: tt.fields.Results,
VolumeMounts: tt.fields.VolumeMounts,
}
ctx := context.Background()
sa.SetDefaults(ctx)
if err := sa.Validate(ctx); err != nil {
t.Errorf("StepActionSpec.Validate() = %v", err)
}
})
}
}
func TestStepActionValidateError(t *testing.T) {
type fields struct {
Image string
Command []string
Args []string
Script string
Env []corev1.EnvVar
Params []v1.ParamSpec
Results []v1alpha1.StepActionResult
VolumeMounts []corev1.VolumeMount
}
tests := []struct {
name string
fields fields
expectedError apis.FieldError
}{{
name: "inexistent image field",
fields: fields{
Args: []string{"flag"},
},
expectedError: apis.FieldError{
Message: `missing field(s)`,
Paths: []string{"spec.Image"},
},
}, {
name: "object used in a string field",
fields: fields{
Params: []v1.ParamSpec{{
Name: "gitrepo",
Type: v1.ParamTypeObject,
Properties: map[string]v1.PropertySpec{
"url": {},
"commit": {},
},
}},
Image: "$(params.gitrepo)",
Args: []string{"echo"},
},
expectedError: apis.FieldError{
Message: `variable type invalid in "$(params.gitrepo)"`,
Paths: []string{"spec.image"},
},
}, {
name: "object star used in a string field",
fields: fields{
Params: []v1.ParamSpec{{
Name: "gitrepo",
Type: v1.ParamTypeObject,
Properties: map[string]v1.PropertySpec{
"url": {},
"commit": {},
},
}},
Image: "$(params.gitrepo[*])",
Args: []string{"echo"},
},
expectedError: apis.FieldError{
Message: `variable type invalid in "$(params.gitrepo[*])"`,
Paths: []string{"spec.image"},
},
}, {
name: "object used in a field that can accept array type",
fields: fields{
Params: []v1.ParamSpec{{
Name: "gitrepo",
Type: v1.ParamTypeObject,
Properties: map[string]v1.PropertySpec{
"url": {},
"commit": {},
},
}},
Image: "myimage",
Args: []string{"$(params.gitrepo)"},
},
expectedError: apis.FieldError{
Message: `variable type invalid in "$(params.gitrepo)"`,
Paths: []string{"spec.args[0]"},
},
}, {
name: "object star used in a field that can accept array type",
fields: fields{
Params: []v1.ParamSpec{{
Name: "gitrepo",
Type: v1.ParamTypeObject,
Properties: map[string]v1.PropertySpec{
"url": {},
"commit": {},
},
}},
Image: "some-git-image",
Args: []string{"$(params.gitrepo[*])"},
},
expectedError: apis.FieldError{
Message: `variable type invalid in "$(params.gitrepo[*])"`,
Paths: []string{"spec.args[0]"},
},
}, {
name: "non-existent individual key of an object param is used in task step",
fields: fields{
Params: []v1.ParamSpec{{
Name: "gitrepo",
Type: v1.ParamTypeObject,
Properties: map[string]v1.PropertySpec{
"url": {},
"commit": {},
},
}},
Image: "some-git-image",
Args: []string{"$(params.gitrepo.non-exist-key)"},
},
expectedError: apis.FieldError{
Message: `non-existent variable in "$(params.gitrepo.non-exist-key)"`,
Paths: []string{"spec.args[0]"},
},
}, {
name: "Inexistent param variable with existing",
fields: fields{
Params: []v1.ParamSpec{{
Name: "foo",
Description: "param",
Default: v1.NewStructuredValues("default"),
}},
Image: "myimage",
Args: []string{"$(params.foo) && $(params.inexistent)"},
},
expectedError: apis.FieldError{
Message: `non-existent variable in "$(params.foo) && $(params.inexistent)"`,
Paths: []string{"spec.args[0]"},
},
}, {
name: "invalid param reference in volumeMount.Name - not a param reference",
fields: fields{
Image: "myimage",
Params: []v1.ParamSpec{{
Name: "foo",
}},
VolumeMounts: []corev1.VolumeMount{{
Name: "params.foo",
MountPath: "/path",
}},
},
expectedError: apis.FieldError{
Message: `invalid value: params.foo`,
Paths: []string{"spec.volumeMounts[0].name"},
Details: `expect the Name to be a single param reference`,
},
}, {
name: "invalid param reference in volumeMount.Name - nested reference",
fields: fields{
Image: "myimage",
Params: []v1.ParamSpec{{
Name: "foo",
}},
VolumeMounts: []corev1.VolumeMount{{
Name: "$(params.foo)-foo",
MountPath: "/path",
}},
},
expectedError: apis.FieldError{
Message: `invalid value: $(params.foo)-foo`,
Paths: []string{"spec.volumeMounts[0].name"},
Details: `expect the Name to be a single param reference`,
},
}, {
name: "invalid param reference in volumeMount.Name - multiple params references",
fields: fields{
Image: "myimage",
Params: []v1.ParamSpec{{
Name: "foo",
}, {
Name: "bar",
}},
VolumeMounts: []corev1.VolumeMount{{
Name: "$(params.foo)$(params.bar)",
MountPath: "/path",
}},
},
expectedError: apis.FieldError{
Message: `invalid value: $(params.foo)$(params.bar)`,
Paths: []string{"spec.volumeMounts[0].name"},
Details: `expect the Name to be a single param reference`,
},
}, {
name: "invalid param reference in volumeMount.Name - not defined in params",
fields: fields{
Image: "myimage",
VolumeMounts: []corev1.VolumeMount{{
Name: "$(params.foo)",
MountPath: "/path",
}},
},
expectedError: apis.FieldError{
Message: `non-existent variable in "$(params.foo)"`,
Paths: []string{"spec.volumeMounts[0]"},
},
}, {
name: "invalid param reference in volumeMount.Name - array used in a volumeMounts name field",
fields: fields{
Params: []v1.ParamSpec{{
Name: "gitrepo",
Type: v1.ParamTypeArray,
}},
Image: "image",
VolumeMounts: []corev1.VolumeMount{{
Name: "$(params.gitrepo)",
}},
},
expectedError: apis.FieldError{
Message: `variable type invalid in "$(params.gitrepo)"`,
Paths: []string{"spec.volumeMounts[0]"},
},
}, {
name: "invalid param reference in volumeMount.Name - object used in a volumeMounts name field",
fields: fields{
Params: []v1.ParamSpec{{
Name: "gitrepo",
Type: v1.ParamTypeObject,
Properties: map[string]v1.PropertySpec{
"url": {},
"commit": {},
},
}},
Image: "image",
VolumeMounts: []corev1.VolumeMount{{
Name: "$(params.gitrepo)",
}},
},
expectedError: apis.FieldError{
Message: `variable type invalid in "$(params.gitrepo)"`,
Paths: []string{"spec.volumeMounts[0]"},
},
}, {
name: "invalid param reference in volumeMount.Name - object key not existent in params",
fields: fields{
Params: []v1.ParamSpec{{
Name: "gitrepo",
Type: v1.ParamTypeObject,
Properties: map[string]v1.PropertySpec{
"url": {},
"commit": {},
},
}},
Image: "image",
VolumeMounts: []corev1.VolumeMount{{
Name: "$(params.gitrepo.foo)",
}},
},
expectedError: apis.FieldError{
Message: `non-existent variable in "$(params.gitrepo.foo)"`,
Paths: []string{"spec.volumeMounts[0]"},
},
}}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
sa := &v1alpha1.StepAction{
ObjectMeta: metav1.ObjectMeta{Name: "foo"},
Spec: v1alpha1.StepActionSpec{
Image: tt.fields.Image,
Command: tt.fields.Command,
Args: tt.fields.Args,
Script: tt.fields.Script,
Env: tt.fields.Env,
Params: tt.fields.Params,
Results: tt.fields.Results,
VolumeMounts: tt.fields.VolumeMounts,
},
}
ctx := context.Background()
sa.SetDefaults(ctx)
err := sa.Validate(ctx)
if err == nil {
t.Fatalf("Expected an error, got nothing for %v", sa)
}
if d := cmp.Diff(tt.expectedError.Error(), err.Error(), cmpopts.IgnoreUnexported(apis.FieldError{})); d != "" {
t.Errorf("StepActionSpec.Validate() errors diff %s", diff.PrintWantGot(d))
}
})
}
}
func TestStepActionSpecValidateError(t *testing.T) {
type fields struct {
Image string
Command []string
Args []string
Script string
Env []corev1.EnvVar
Params []v1.ParamSpec
Results []v1alpha1.StepActionResult
}
tests := []struct {
name string
fields fields
expectedError apis.FieldError
}{{
name: "inexistent image field",
fields: fields{
Args: []string{"flag"},
},
expectedError: apis.FieldError{
Message: `missing field(s)`,
Paths: []string{"Image"},
},
}, {
name: "command and script both used.",
fields: fields{
Image: "my-image",
Command: []string{"ls"},
Script: "echo hi",
},
expectedError: apis.FieldError{
Message: `script cannot be used with command`,
Paths: []string{"script"},
},
}, {
name: "windows script without alpha.",
fields: fields{
Image: "my-image",
Script: "#!win",
},
expectedError: apis.FieldError{
Message: `windows script support requires "enable-api-fields" feature gate to be "alpha" but it is "beta"`,
Paths: []string{},
},
}, {
name: "step script refers to nonexistent result",
fields: fields{
Image: "my-image",
Script: `
#!/usr/bin/env bash
date | tee $(results.non-exist.path)`,
Results: []v1alpha1.StepActionResult{{Name: "a-result"}},
},
expectedError: apis.FieldError{
Message: `non-existent variable in "\n\t\t\t#!/usr/bin/env bash\n\t\t\tdate | tee $(results.non-exist.path)"`,
Paths: []string{"script"},
},
}, {
name: "invalid param name format",
fields: fields{
Params: []v1.ParamSpec{{
Name: "_validparam1",
Description: "valid param name format",
}, {
Name: "valid_param2",
Description: "valid param name format",
}, {
Name: "",
Description: "invalid param name format",
}, {
Name: "a^b",
Description: "invalid param name format",
}, {
Name: "0ab",
Description: "invalid param name format",
}, {
Name: "f oo",
Description: "invalid param name format",
}},
Image: "myImage",
},
expectedError: apis.FieldError{
Message: fmt.Sprintf("The format of following array and string variable names is invalid: %s", []string{"", "0ab", "a^b", "f oo"}),
Paths: []string{"params"},
Details: "String/Array Names: \nMust only contain alphanumeric characters, hyphens (-), underscores (_), and dots (.)\nMust begin with a letter or an underscore (_)",
},
}, {
name: "invalid object param format - object param name and key name shouldn't contain dots.",
fields: fields{
Params: []v1.ParamSpec{{
Name: "invalid.name1",
Description: "object param name contains dots",
Properties: map[string]v1.PropertySpec{
"invalid.key1": {},
"mykey2": {},
},
}},
Image: "myImage",
},
expectedError: apis.FieldError{
Message: fmt.Sprintf("Object param name and key name format is invalid: %v", map[string][]string{
"invalid.name1": {"invalid.key1"},
}),
Paths: []string{"params"},
Details: "Object Names: \nMust only contain alphanumeric characters, hyphens (-), underscores (_) \nMust begin with a letter or an underscore (_)",
},
}, {
name: "duplicated param names",
fields: fields{
Params: []v1.ParamSpec{{
Name: "foo",
Type: v1.ParamTypeString,
Description: "parameter",
Default: v1.NewStructuredValues("value1"),
}, {
Name: "foo",
Type: v1.ParamTypeString,
Description: "parameter",
Default: v1.NewStructuredValues("value2"),
}},
Image: "myImage",
},
expectedError: apis.FieldError{
Message: `parameter appears more than once`,
Paths: []string{"params[foo]"},
},
}, {
name: "invalid param type",
fields: fields{
Params: []v1.ParamSpec{{
Name: "validparam",
Type: v1.ParamTypeString,
Description: "parameter",
Default: v1.NewStructuredValues("default"),
}, {
Name: "param-with-invalid-type",
Type: "invalidtype",
Description: "invalidtypedesc",
Default: v1.NewStructuredValues("default"),
}},
Image: "myImage",
},
expectedError: apis.FieldError{
Message: `invalid value: invalidtype`,
Paths: []string{"params.param-with-invalid-type.type"},
},
}, {
name: "param mismatching default/type 1",
fields: fields{
Params: []v1.ParamSpec{{
Name: "task",
Type: v1.ParamTypeArray,
Description: "param",
Default: v1.NewStructuredValues("default"),
}},
Image: "myImage",
},
expectedError: apis.FieldError{
Message: `"array" type does not match default value's type: "string"`,
Paths: []string{"params.task.type", "params.task.default.type"},
},
}, {
name: "param mismatching default/type 2",
fields: fields{
Params: []v1.ParamSpec{{
Name: "task",
Type: v1.ParamTypeString,
Description: "param",
Default: v1.NewStructuredValues("default", "array"),
}},
Image: "myImage",
},
expectedError: apis.FieldError{
Message: `"string" type does not match default value's type: "array"`,
Paths: []string{"params.task.type", "params.task.default.type"},
},
}, {
name: "param mismatching default/type 3",
fields: fields{
Params: []v1.ParamSpec{{
Name: "task",
Type: v1.ParamTypeArray,
Description: "param",
Default: v1.NewObject(map[string]string{
"key1": "var1",
"key2": "var2",
}),
}},
Image: "myImage",
},
expectedError: apis.FieldError{
Message: `"array" type does not match default value's type: "object"`,
Paths: []string{"params.task.type", "params.task.default.type"},
},
}, {
name: "param mismatching default/type 4",
fields: fields{
Params: []v1.ParamSpec{{
Name: "task",
Type: v1.ParamTypeObject,
Description: "param",
Properties: map[string]v1.PropertySpec{"key1": {}},
Default: v1.NewStructuredValues("var"),
}},
Image: "myImage",
},
expectedError: apis.FieldError{
Message: `"object" type does not match default value's type: "string"`,
Paths: []string{"params.task.type", "params.task.default.type"},
},
}, {
name: "PropertySpec type is set with unsupported type",
fields: fields{
Params: []v1.ParamSpec{{
Name: "task",
Type: v1.ParamTypeObject,
Description: "param",
Properties: map[string]v1.PropertySpec{
"key1": {Type: "number"},
"key2": {Type: "string"},
},
}},
Image: "myImage",
},
expectedError: apis.FieldError{
Message: fmt.Sprintf("The value type specified for these keys %v is invalid", []string{"key1"}),
Paths: []string{"params.task.properties"},
},
}, {
name: "Properties is missing",
fields: fields{
Params: []v1.ParamSpec{{
Name: "task",
Type: v1.ParamTypeObject,
Description: "param",
}},
Image: "myImage",
},
expectedError: apis.FieldError{
Message: "missing field(s)",
Paths: []string{"task.properties"},
},
}, {
name: "array used in unaccepted field",
fields: fields{
Params: []v1.ParamSpec{{
Name: "baz",
Type: v1.ParamTypeArray,
}, {
Name: "foo-is-baz",
Type: v1.ParamTypeArray,
}},
Image: "$(params.baz)",
Command: []string{"$(params.foo-is-baz)"},
Args: []string{"$(params.baz)", "middle string", "url"},
},
expectedError: apis.FieldError{
Message: `variable type invalid in "$(params.baz)"`,
Paths: []string{"image"},
},
}, {
name: "array star used in unaccepted field",
fields: fields{
Params: []v1.ParamSpec{{
Name: "baz",
Type: v1.ParamTypeArray,
}, {
Name: "foo-is-baz",
Type: v1.ParamTypeArray,
}},
Image: "$(params.baz[*])",
Command: []string{"$(params.foo-is-baz)"},
Args: []string{"$(params.baz)", "middle string", "url"},
},
expectedError: apis.FieldError{
Message: `variable type invalid in "$(params.baz[*])"`,
Paths: []string{"image"},
},
}, {
name: "array star used illegaly in script field",
fields: fields{
Params: []v1.ParamSpec{{
Name: "baz",
Type: v1.ParamTypeArray,
}, {
Name: "foo-is-baz",
Type: v1.ParamTypeArray,
}},
Script: "$(params.baz[*])",
Image: "my-image",
},
expectedError: apis.FieldError{
Message: `variable type invalid in "$(params.baz[*])"`,
Paths: []string{"script"},
},
}, {
name: "array not properly isolated",
fields: fields{
Params: []v1.ParamSpec{{
Name: "baz",
Type: v1.ParamTypeArray,
}, {
Name: "foo-is-baz",
Type: v1.ParamTypeArray,
}},
Image: "someimage",
Command: []string{"$(params.foo-is-baz)"},
Args: []string{"not isolated: $(params.baz)", "middle string", "url"},
},
expectedError: apis.FieldError{
Message: `variable is not properly isolated in "not isolated: $(params.baz)"`,
Paths: []string{"args[0]"},
},
}, {
name: "array star not properly isolated",
fields: fields{
Params: []v1.ParamSpec{{
Name: "baz",
Type: v1.ParamTypeArray,
}, {
Name: "foo-is-baz",
Type: v1.ParamTypeArray,
}},
Image: "someimage",
Command: []string{"$(params.foo-is-baz)"},
Args: []string{"not isolated: $(params.baz[*])", "middle string", "url"},
},
expectedError: apis.FieldError{
Message: `variable is not properly isolated in "not isolated: $(params.baz[*])"`,
Paths: []string{"args[0]"},
},
}, {
name: "inferred array not properly isolated",
fields: fields{
Params: []v1.ParamSpec{{
Name: "baz",
Default: v1.NewStructuredValues("implied", "array", "type"),
}, {
Name: "foo-is-baz",
Default: v1.NewStructuredValues("implied", "array", "type"),
}},
Image: "someimage",
Command: []string{"$(params.foo-is-baz)"},
Args: []string{"not isolated: $(params.baz)", "middle string", "url"},
},
expectedError: apis.FieldError{
Message: `variable is not properly isolated in "not isolated: $(params.baz)"`,
Paths: []string{"args[0]"},
},
}, {
name: "inferred array star not properly isolated",
fields: fields{
Params: []v1.ParamSpec{{
Name: "baz",
Default: v1.NewStructuredValues("implied", "array", "type"),
}, {
Name: "foo-is-baz",
Default: v1.NewStructuredValues("implied", "array", "type"),
}},
Image: "someimage",
Command: []string{"$(params.foo-is-baz)"},
Args: []string{"not isolated: $(params.baz[*])", "middle string", "url"},
},
expectedError: apis.FieldError{
Message: `variable is not properly isolated in "not isolated: $(params.baz[*])"`,
Paths: []string{"args[0]"},
},
}}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
sa := v1alpha1.StepActionSpec{
Image: tt.fields.Image,
Command: tt.fields.Command,
Args: tt.fields.Args,
Script: tt.fields.Script,
Env: tt.fields.Env,
Params: tt.fields.Params,
Results: tt.fields.Results,
}
ctx := context.Background()
sa.SetDefaults(ctx)
err := sa.Validate(ctx)
if err == nil {
t.Fatalf("Expected an error, got nothing for %v", sa)
}
if d := cmp.Diff(tt.expectedError.Error(), err.Error(), cmpopts.IgnoreUnexported(apis.FieldError{})); d != "" {
t.Errorf("StepActionSpec.Validate() errors diff %s", diff.PrintWantGot(d))
}
})
}
}