-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathconfigv1shim_test.go
1011 lines (901 loc) · 33 KB
/
configv1shim_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
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package util
import (
"context"
"encoding/json"
"fmt"
"sort"
"testing"
"time"
"github.com/google/go-cmp/cmp"
configv1 "github.com/openshift/api/config/v1"
applyconfigv1 "github.com/openshift/client-go/config/applyconfigurations/config/v1"
fakeconfigv1client "github.com/openshift/client-go/config/clientset/versioned/fake"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/util/strategicpatch"
"k8s.io/apimachinery/pkg/watch"
)
func createInfrastructureObject(name string) *configv1.Infrastructure {
return &configv1.Infrastructure{
TypeMeta: metav1.TypeMeta{
APIVersion: "config.openshift.io/v1",
Kind: "Infrastructure",
},
ObjectMeta: metav1.ObjectMeta{
Name: name,
Labels: map[string]string{},
},
Spec: configv1.InfrastructureSpec{
PlatformSpec: configv1.PlatformSpec{
Type: configv1.AWSPlatformType,
},
},
Status: configv1.InfrastructureStatus{
APIServerInternalURL: "https://api-int.jchaloup-20230222.group-b.devcluster.openshift.com:6443",
APIServerURL: "https://api.jchaloup-20230222.group-b.devcluster.openshift.com:6443",
ControlPlaneTopology: configv1.HighlyAvailableTopologyMode,
EtcdDiscoveryDomain: "",
InfrastructureName: "jchaloup-20230222-cvx5s",
InfrastructureTopology: configv1.HighlyAvailableTopologyMode,
Platform: configv1.AWSPlatformType,
PlatformStatus: &configv1.PlatformStatus{
Type: configv1.AWSPlatformType,
AWS: &configv1.AWSPlatformStatus{
Region: "us-east-1",
},
},
},
}
}
func createNetworkObject(name string) *configv1.Network {
return &configv1.Network{
TypeMeta: metav1.TypeMeta{
APIVersion: "config.openshift.io/v1",
Kind: "Network",
},
ObjectMeta: metav1.ObjectMeta{
Name: name,
Labels: map[string]string{},
},
Spec: configv1.NetworkSpec{
ClusterNetwork: []configv1.ClusterNetworkEntry{
{
CIDR: "10.128.0.0/14",
HostPrefix: 23,
},
},
NetworkType: "OVNKubernetes",
ServiceNetwork: []string{"172.30.0.0/16"},
},
Status: configv1.NetworkStatus{
ClusterNetwork: []configv1.ClusterNetworkEntry{
{
CIDR: "10.128.0.0/14",
HostPrefix: 23,
},
},
ClusterNetworkMTU: 8901,
NetworkType: "OVNKubernetes",
ServiceNetwork: []string{"172.30.0.0/16"},
},
}
}
func TestConfigClientShimErrorOnMutation(t *testing.T) {
updateNotPermitted := OperationNotPermitted{Action: "update"}
updatestatusNotPermitted := OperationNotPermitted{Action: "updatestatus"}
patchNotPermitted := OperationNotPermitted{Action: "patch"}
applyNotPermitted := OperationNotPermitted{Action: "apply"}
applyStatusNotPermitted := OperationNotPermitted{Action: "applystatus"}
deleteNotPermitted := OperationNotPermitted{Action: "delete"}
deleteCollectionNotPermitted := OperationNotPermitted{Action: "deletecollection"}
staticObject := createInfrastructureObject("staticObject")
staticObject.Labels["deleteLabel"] = "somevalue"
realObject := createInfrastructureObject("realObject")
realObject.Labels["deleteLabel"] = "somevalue2"
configClient := fakeconfigv1client.NewSimpleClientset(
realObject,
)
client := NewConfigClientShim(
configClient,
[]runtime.Object{staticObject},
)
_, err := client.ConfigV1().Infrastructures().Get(context.TODO(), staticObject.Name, metav1.GetOptions{})
if err != nil {
t.Fatalf("Expected no error for a Get request, got %q instead", err)
}
_, err = client.ConfigV1().Infrastructures().List(context.TODO(), metav1.ListOptions{})
if err != nil {
t.Fatalf("Expected no error for a List request, got %q instead", err)
}
_, err = client.ConfigV1().Infrastructures().Update(context.TODO(), staticObject, metav1.UpdateOptions{})
if err == nil || err.Error() != updateNotPermitted.Error() {
t.Fatalf("Expected %q error for an Update request, got %q instead", updateNotPermitted.Error(), err)
}
_, err = client.ConfigV1().Infrastructures().Update(context.TODO(), realObject, metav1.UpdateOptions{})
if err != nil {
t.Fatalf("Expected no error for an Update request, got %q instead", err)
}
_, err = client.ConfigV1().Infrastructures().UpdateStatus(context.TODO(), staticObject, metav1.UpdateOptions{})
if err == nil || err.Error() != updatestatusNotPermitted.Error() {
t.Fatalf("Expected %q error for an UpdateStatus request, got %q instead", updatestatusNotPermitted.Error(), err)
}
_, err = client.ConfigV1().Infrastructures().UpdateStatus(context.TODO(), realObject, metav1.UpdateOptions{})
if err != nil {
t.Fatalf("Expected no error for an UpdateStatus request, got %q instead", err)
}
oldData, err := json.Marshal(staticObject)
if err != nil {
t.Fatalf("Unable to marshal an staticObject: %v", err)
}
staticObject.Labels["key"] = "value"
newData, err := json.Marshal(staticObject)
if err != nil {
t.Fatalf("Unable to marshal an object: %v", err)
}
delete(staticObject.Labels, "key")
patchBytes, err := strategicpatch.CreateTwoWayMergePatch(oldData, newData, &configv1.Infrastructure{})
if err != nil {
t.Fatalf("Unable to create a patch: %v", err)
}
_, err = client.ConfigV1().Infrastructures().Patch(context.TODO(), staticObject.Name, types.StrategicMergePatchType, patchBytes, metav1.PatchOptions{})
if err == nil || err.Error() != patchNotPermitted.Error() {
t.Fatalf("Expected %q error for a Patch request, got %q instead", patchNotPermitted.Error(), err)
}
_, err = client.ConfigV1().Infrastructures().Patch(context.TODO(), realObject.Name, types.StrategicMergePatchType, patchBytes, metav1.PatchOptions{})
if err != nil {
t.Fatalf("Expected no error for a Patch request, got %q instead", err)
}
applyConfig, err := applyconfigv1.ExtractInfrastructure(staticObject, "test-mgr")
if err != nil {
t.Fatalf("Unable to construct an apply config for %v: %v", staticObject.Name, err)
}
_, err = client.ConfigV1().Infrastructures().Apply(context.TODO(), applyConfig, metav1.ApplyOptions{FieldManager: "test-mgr", Force: true})
if err == nil || err.Error() != applyNotPermitted.Error() {
t.Fatalf("Expected %q error for an Apply request, got %q instead", applyNotPermitted.Error(), err)
}
applyConfig2, err := applyconfigv1.ExtractInfrastructure(realObject, "test-mgr")
if err != nil {
t.Fatalf("Unable to construct an apply config for %v: %v", realObject.Name, err)
}
_, err = client.ConfigV1().Infrastructures().Apply(context.TODO(), applyConfig2, metav1.ApplyOptions{FieldManager: "test-mgr", Force: true})
if err != nil {
t.Fatalf("Expected no error for an Apply request, got %q instead", err)
}
applyStatusConfig, err := applyconfigv1.ExtractInfrastructureStatus(staticObject, "test-mgr")
if err != nil {
t.Fatalf("Unable to construct an apply status config for %v: %v", staticObject.Name, err)
}
_, err = client.ConfigV1().Infrastructures().ApplyStatus(context.TODO(), applyStatusConfig, metav1.ApplyOptions{FieldManager: "test-mgr", Force: true})
if err == nil || err.Error() != applyStatusNotPermitted.Error() {
t.Fatalf("Expected %q error for an ApplyStatus request, got %q instead", applyStatusNotPermitted.Error(), err)
}
applyStatusConfig2, err := applyconfigv1.ExtractInfrastructureStatus(realObject, "test-mgr")
if err != nil {
t.Fatalf("Unable to construct an apply status config for %v: %v", realObject.Name, err)
}
_, err = client.ConfigV1().Infrastructures().ApplyStatus(context.TODO(), applyStatusConfig2, metav1.ApplyOptions{FieldManager: "test-mgr", Force: true})
if err != nil {
t.Fatalf("Expected no error for an ApplyStatus request, got %q instead", err)
}
err = client.ConfigV1().Infrastructures().Delete(context.TODO(), staticObject.Name, metav1.DeleteOptions{})
if err == nil || err.Error() != deleteNotPermitted.Error() {
t.Fatalf("Expected %q error for a Delete request, got %q instead", deleteNotPermitted.Error(), err)
}
err = client.ConfigV1().Infrastructures().Delete(context.TODO(), realObject.Name, metav1.DeleteOptions{})
if err != nil {
t.Fatalf("Expected no error for a Delete request, got %q instead", err)
}
err = client.ConfigV1().Infrastructures().DeleteCollection(context.TODO(), metav1.DeleteOptions{}, metav1.ListOptions{
LabelSelector: labels.SelectorFromSet(labels.Set(map[string]string{"deleteLabel": "somevalue"})).String(),
})
if err == nil || err.Error() != deleteCollectionNotPermitted.Error() {
t.Fatalf("Expected %q error for a DeleteCollection request, got %q instead", deleteCollectionNotPermitted.Error(), err)
}
err = client.ConfigV1().Infrastructures().DeleteCollection(context.TODO(), metav1.DeleteOptions{}, metav1.ListOptions{
LabelSelector: labels.SelectorFromSet(labels.Set(map[string]string{"deleteLabel": "somevalue2"})).String(),
})
if err != nil {
t.Fatalf("Expected no error for a DeleteCollection request, got %q instead", err)
}
}
func TestConfigClientShimWatchRequest(t *testing.T) {
tests := []struct {
name string
staticObjects []runtime.Object
realObjects []runtime.Object
fieldSelector string
watch func(client *ConfigClientShim, ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
expectedWatchEvents []watch.Event
}{
{
name: "merging static and real infrastructure objects, not object override",
staticObjects: []runtime.Object{
createInfrastructureObject("staticObject"),
},
realObjects: []runtime.Object{
createInfrastructureObject("realObject"),
createInfrastructureObject("realObject2"),
},
watch: func(client *ConfigClientShim, ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
return client.ConfigV1().Infrastructures().Watch(ctx, opts)
},
expectedWatchEvents: []watch.Event{
{Type: watch.Added, Object: createInfrastructureObject("staticObject")},
{Type: watch.Added, Object: createInfrastructureObject("realObject")},
{Type: watch.Added, Object: createInfrastructureObject("realObject2")},
},
},
{
name: "merging static and real infrastructure objects, static object override",
staticObjects: []runtime.Object{
createInfrastructureObject("staticObject"),
},
realObjects: []runtime.Object{
createInfrastructureObject("staticObject"),
createInfrastructureObject("realObject"),
},
watch: func(client *ConfigClientShim, ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
return client.ConfigV1().Infrastructures().Watch(ctx, opts)
},
expectedWatchEvents: []watch.Event{
{Type: watch.Added, Object: createInfrastructureObject("staticObject")},
{Type: watch.Added, Object: createInfrastructureObject("realObject")},
},
},
{
name: "merging static and real infrastructure objects, field selector match",
staticObjects: []runtime.Object{
createInfrastructureObject("staticObject"),
},
realObjects: []runtime.Object{
createInfrastructureObject("staticObject"),
},
watch: func(client *ConfigClientShim, ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
return client.ConfigV1().Infrastructures().Watch(ctx, opts)
},
fieldSelector: "metadata.name==staticObject",
expectedWatchEvents: []watch.Event{
{Type: watch.Added, Object: createInfrastructureObject("staticObject")},
},
},
{
name: "merging static and real infrastructure objects, field selector no match",
staticObjects: []runtime.Object{
createInfrastructureObject("staticObject"),
},
realObjects: []runtime.Object{
createInfrastructureObject("staticObject"),
},
watch: func(client *ConfigClientShim, ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
return client.ConfigV1().Infrastructures().Watch(ctx, opts)
},
fieldSelector: "metadata.name=!staticObject",
expectedWatchEvents: []watch.Event{},
},
{
name: "merging static and real network objects, not object override",
staticObjects: []runtime.Object{
createNetworkObject("staticObject"),
},
realObjects: []runtime.Object{
createNetworkObject("realObject"),
createNetworkObject("realObject2"),
},
watch: func(client *ConfigClientShim, ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
return client.ConfigV1().Networks().Watch(ctx, opts)
},
expectedWatchEvents: []watch.Event{
{Type: watch.Added, Object: createNetworkObject("staticObject")},
{Type: watch.Added, Object: createNetworkObject("realObject")},
{Type: watch.Added, Object: createNetworkObject("realObject2")},
},
},
{
name: "merging static and real network objects, static object override",
staticObjects: []runtime.Object{
createNetworkObject("staticObject"),
},
realObjects: []runtime.Object{
createNetworkObject("staticObject"),
createNetworkObject("realObject"),
},
watch: func(client *ConfigClientShim, ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
return client.ConfigV1().Networks().Watch(ctx, opts)
},
expectedWatchEvents: []watch.Event{
{Type: watch.Added, Object: createNetworkObject("staticObject")},
{Type: watch.Added, Object: createNetworkObject("realObject")},
},
},
{
name: "merging static and real network objects, field selector match",
staticObjects: []runtime.Object{
createNetworkObject("staticObject"),
},
realObjects: []runtime.Object{
createNetworkObject("staticObject"),
},
watch: func(client *ConfigClientShim, ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
return client.ConfigV1().Networks().Watch(ctx, opts)
},
fieldSelector: "metadata.name==staticObject",
expectedWatchEvents: []watch.Event{
{Type: watch.Added, Object: createNetworkObject("staticObject")},
},
},
{
name: "merging static and real network objects, field selector no match",
staticObjects: []runtime.Object{
createNetworkObject("staticObject"),
},
realObjects: []runtime.Object{
createNetworkObject("staticObject"),
},
watch: func(client *ConfigClientShim, ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
return client.ConfigV1().Networks().Watch(ctx, opts)
},
fieldSelector: "metadata.name=!staticObject",
expectedWatchEvents: []watch.Event{},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
configClient := fakeconfigv1client.NewSimpleClientset()
client := NewConfigClientShim(
configClient,
test.staticObjects,
)
// The watch request has to created first when using the fake clientset
resultChan, err := test.watch(client, context.TODO(), metav1.ListOptions{FieldSelector: test.fieldSelector})
if err != nil {
t.Fatalf("Expected no error, got %q instead", err)
}
defer resultChan.Stop()
// And only then the fake clientset can be populated to generate the watch event
for _, obj := range test.realObjects {
configClient.Tracker().Add(obj)
}
// verify the watch events
ticker := time.NewTicker(500 * time.Millisecond)
size := len(test.expectedWatchEvents)
eventCounter := 0
for i := 0; i < size; i++ {
select {
case item := <-resultChan.ResultChan():
diff := cmp.Diff(test.expectedWatchEvents[i], item)
if diff != "" {
t.Errorf("test '%s' failed. Results are not deep equal. mismatch (-want +got):\n%s", test.name, diff)
}
eventCounter++
case <-ticker.C:
t.Errorf("failed waiting for watch event")
}
}
if eventCounter < size {
t.Errorf("Expected %v watch events, got %v instead", size, eventCounter)
}
select {
case <-resultChan.ResultChan():
t.Errorf("Expected no additional watch event")
case <-ticker.C:
}
})
}
}
func TestConfigClientShimList(t *testing.T) {
staticObject := createInfrastructureObject("staticObject")
staticObject.Labels["static"] = "true"
realObject1 := createInfrastructureObject("staticObject")
realObject1.Labels["static"] = "false"
realObject2 := createInfrastructureObject("realObject")
realObject2.Labels["static"] = "false"
configClient := fakeconfigv1client.NewSimpleClientset(
realObject1,
realObject2,
)
client := NewConfigClientShim(
configClient,
[]runtime.Object{staticObject},
)
listItems, err := client.ConfigV1().Infrastructures().List(context.TODO(), metav1.ListOptions{})
if err != nil {
t.Fatalf("Expected no error for a List request, got %q instead", err)
}
if len(listItems.Items) != 2 {
t.Fatalf("Expected only a single item in the list, got %v instead", len(listItems.Items))
}
var staticObj *configv1.Infrastructure
realObjFound := false
for _, item := range listItems.Items {
if item.Name == "staticObject" {
obj := item
staticObj = &obj
}
if item.Name == "realObject" {
realObjFound = true
}
}
if staticObj == nil {
t.Fatalf("Expected to find a static object, found none")
}
if staticObj.Labels["static"] == "false" {
t.Fatalf("Expected static object, not real object")
}
if !realObjFound {
t.Fatalf("Unable to find a real object in the list")
}
}
func TestConfigClientShimListInfrastructureFieldSelector(t *testing.T) {
tests := []struct {
name string
fieldSelector string
expectedLen int
}{
{
name: "field selector matches",
fieldSelector: "metadata.name=staticObject",
expectedLen: 1,
},
{
name: "field selector does not match",
fieldSelector: "metadata.name!=staticObject",
expectedLen: 0,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
staticObject := createInfrastructureObject("staticObject")
staticObject.Labels["static"] = "true"
realObject := createInfrastructureObject("staticObject")
realObject.Labels["static"] = "false"
configClient := fakeconfigv1client.NewSimpleClientset(
realObject,
)
client := NewConfigClientShim(
configClient,
[]runtime.Object{staticObject},
)
listItems, err := client.ConfigV1().Infrastructures().List(context.TODO(), metav1.ListOptions{FieldSelector: test.fieldSelector})
if err != nil {
t.Fatalf("Expected no error for a List request, got %q instead", err)
}
if len(listItems.Items) != test.expectedLen {
t.Fatalf("Expected %v items in the list, got %v instead", test.expectedLen, len(listItems.Items))
}
if test.expectedLen > 0 {
if listItems.Items[0].Labels["static"] == "false" {
t.Fatalf("Expected static object, not real object")
}
}
})
}
}
func TestConfigClientShimListNetworkFieldSelector(t *testing.T) {
tests := []struct {
name string
fieldSelector string
expectedLen int
}{
{
name: "field selector matches",
fieldSelector: "metadata.name=staticObject",
expectedLen: 1,
},
{
name: "field selector does not match",
fieldSelector: "metadata.name!=staticObject",
expectedLen: 0,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
staticObject := createNetworkObject("staticObject")
staticObject.Labels["static"] = "true"
realObject := createNetworkObject("staticObject")
realObject.Labels["static"] = "false"
configClient := fakeconfigv1client.NewSimpleClientset(
realObject,
)
client := NewConfigClientShim(
configClient,
[]runtime.Object{staticObject},
)
listItems, err := client.ConfigV1().Networks().List(context.TODO(), metav1.ListOptions{FieldSelector: test.fieldSelector})
if err != nil {
t.Fatalf("Expected no error for a List request, got %q instead", err)
}
if len(listItems.Items) != test.expectedLen {
t.Fatalf("Expected %v items in the list, got %v instead", test.expectedLen, len(listItems.Items))
}
if test.expectedLen > 0 {
if listItems.Items[0].Labels["static"] == "false" {
t.Fatalf("Expected static object, not real object")
}
}
})
}
}
// the fake discovery's list of resources can not be constructed from
// populated objects. They need to be hand crafted.
// defaultFakeDiscoveryResources creates a default set of resources
// that are considered as real resources wherever a fake clientset is
// used instead of the real one.
func defaultFakeDiscoveryResources() []*metav1.APIResourceList {
return []*metav1.APIResourceList{
{
GroupVersion: "operator.openshift.io/v1",
APIResources: []metav1.APIResource{
{
Name: "kubestorageversionmigrators",
SingularName: "kubestorageversionmigrator",
Namespaced: false,
Kind: "KubeStorageVersionMigrator",
Verbs: []string{
"delete", "deletecollection", "get", "list", "patch", "create", "update", "watch",
},
},
{
Name: "kubestorageversionmigrators/status",
SingularName: "",
Namespaced: false,
Kind: "KubeStorageVersionMigrator",
Verbs: []string{
"get", "patch", "update",
},
},
},
},
}
}
func TestConfigClientShimDiscoveryServerGroups(t *testing.T) {
tests := []struct {
name string
hasConfigV1Version bool
objects []runtime.Object
fakeResources []*metav1.APIResourceList
}{
{
name: "no config v1 found with default kinds",
hasConfigV1Version: false,
fakeResources: defaultFakeDiscoveryResources(),
},
{
name: "config v1 found with default kinds",
hasConfigV1Version: true,
objects: []runtime.Object{
createInfrastructureObject("staticObject"),
},
fakeResources: defaultFakeDiscoveryResources(),
},
{
name: "config v1 already exists",
hasConfigV1Version: true,
objects: []runtime.Object{
createInfrastructureObject("staticObject"),
},
fakeResources: []*metav1.APIResourceList{
{
GroupVersion: "config.openshift.io/v1",
APIResources: configV1InfrastructureAPIResources(),
},
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
configClient := fakeconfigv1client.NewSimpleClientset()
client := NewConfigClientShim(
configClient,
test.objects,
)
configClient.Fake.Resources = test.fakeResources
groupList, err := client.Discovery().ServerGroups()
if err != nil {
t.Fatalf("Expected no error for a Discovery().ServerGroups() request, got %q instead", err)
}
hasConfigV1Version := false
for _, group := range groupList.Groups {
if group.Name != configGroup {
continue
}
for _, version := range group.Versions {
if version.Version == configVersion {
// duplicated
if hasConfigV1Version {
t.Fatalf("config v1 version duplicated")
}
hasConfigV1Version = true
}
}
}
if test.hasConfigV1Version && !hasConfigV1Version {
t.Fatalf("Expected config v1 version to exists, got non-existing")
}
if !test.hasConfigV1Version && hasConfigV1Version {
t.Fatalf("Expected no config v1 version to exists, got existing")
}
})
}
}
func TestConfigClientShimDiscoveryServerResourcesForGroupVersion(t *testing.T) {
tests := []struct {
name string
hasConfigV1Version bool
expectedResources []string
objects []runtime.Object
fakeResources []*metav1.APIResourceList
}{
{
name: "no config v1 found with default kinds",
hasConfigV1Version: false,
fakeResources: defaultFakeDiscoveryResources(),
},
{
name: "config v1 found with infrastructure kind with default kinds",
hasConfigV1Version: true,
objects: []runtime.Object{
createInfrastructureObject("staticObject"),
},
expectedResources: []string{"config.openshift.io/v1/infrastructures", "config.openshift.io/v1/infrastructures/status"},
fakeResources: defaultFakeDiscoveryResources(),
},
{
name: "config v1 found with network kind with default kinds",
hasConfigV1Version: true,
objects: []runtime.Object{
createNetworkObject("staticObject"),
},
expectedResources: []string{"config.openshift.io/v1/networks"},
fakeResources: defaultFakeDiscoveryResources(),
},
{
name: "config v1 found with infrastructure and network kind with default kinds",
hasConfigV1Version: true,
objects: []runtime.Object{
createInfrastructureObject("staticObject"),
createNetworkObject("staticObject"),
},
expectedResources: []string{"config.openshift.io/v1/infrastructures", "config.openshift.io/v1/infrastructures/status", "config.openshift.io/v1/networks"},
fakeResources: defaultFakeDiscoveryResources(),
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
configClient := fakeconfigv1client.NewSimpleClientset()
client := NewConfigClientShim(
configClient,
test.objects,
)
configClient.Fake.Resources = test.fakeResources
resourceList, err := client.Discovery().ServerResourcesForGroupVersion(configGroupVersion)
if !test.hasConfigV1Version {
if err == nil {
t.Fatalf("Expected error for a Discovery().ServerGroups() request")
} else if !errors.IsNotFound(err) {
t.Fatalf("Expected not found error for config.openshift.io/v1 for a Discovery().ServerGroups() request, got %v instead", err)
}
return
}
if err != nil {
t.Fatalf("Expected no error for a Discovery().ServerGroups() request, got %v instead", err)
}
hasConfigV1Version := false
if resourceList.GroupVersion == configGroupVersion {
hasConfigV1Version = true
}
if test.hasConfigV1Version && !hasConfigV1Version {
t.Fatalf("Expected config v1 version to exists, got non-existing")
}
if !test.hasConfigV1Version && hasConfigV1Version {
t.Fatalf("Expected no config v1 version to exists, got existing")
}
resources := []string{}
for _, resource := range resourceList.APIResources {
resources = append(resources, fmt.Sprintf("%v/%v", resourceList.GroupVersion, resource.Name))
}
sort.Strings(test.expectedResources)
sort.Strings(resources)
diff := cmp.Diff(test.expectedResources, resources)
if diff != "" {
t.Errorf("test '%s' failed. Results are not deep equal. mismatch (-want +got):\n%s", test.name, diff)
}
})
}
}
func TestConfigClientShimDiscoveryServerGroupsAndResources(t *testing.T) {
tests := []struct {
name string
hasConfigV1Group bool
expectedResources []string
objects []runtime.Object
fakeResources []*metav1.APIResourceList
}{
{
name: "no config v1 found with default kinds",
hasConfigV1Group: false,
expectedResources: []string{"operator.openshift.io/v1/kubestorageversionmigrators", "operator.openshift.io/v1/kubestorageversionmigrators/status"},
fakeResources: defaultFakeDiscoveryResources(),
},
{
name: "config v1 found with infrastructure kinds",
hasConfigV1Group: true,
objects: []runtime.Object{
createInfrastructureObject("staticObject"),
},
expectedResources: []string{"operator.openshift.io/v1/kubestorageversionmigrators", "operator.openshift.io/v1/kubestorageversionmigrators/status", "config.openshift.io/v1/infrastructures", "config.openshift.io/v1/infrastructures/status"},
fakeResources: defaultFakeDiscoveryResources(),
},
{
name: "config v1 found with network kinds",
hasConfigV1Group: true,
objects: []runtime.Object{
createNetworkObject("staticObject"),
},
expectedResources: []string{"operator.openshift.io/v1/kubestorageversionmigrators", "operator.openshift.io/v1/kubestorageversionmigrators/status", "config.openshift.io/v1/networks"},
fakeResources: defaultFakeDiscoveryResources(),
},
{
name: "config v1 found with infrastructure and network kinds",
hasConfigV1Group: true,
objects: []runtime.Object{
createInfrastructureObject("staticInfrastructureObject"),
createNetworkObject("staticNetworkObject"),
},
expectedResources: []string{"operator.openshift.io/v1/kubestorageversionmigrators", "operator.openshift.io/v1/kubestorageversionmigrators/status", "config.openshift.io/v1/infrastructures", "config.openshift.io/v1/infrastructures/status", "config.openshift.io/v1/networks"},
fakeResources: defaultFakeDiscoveryResources(),
},
{
name: "config v1 already exists",
hasConfigV1Group: true,
objects: []runtime.Object{
createInfrastructureObject("staticObject"),
},
expectedResources: []string{"config.openshift.io/v1/infrastructures", "config.openshift.io/v1/infrastructures/status"},
fakeResources: []*metav1.APIResourceList{
{
GroupVersion: "config.openshift.io/v1",
APIResources: configV1InfrastructureAPIResources(),
},
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
configClient := fakeconfigv1client.NewSimpleClientset()
configClient.Fake.Resources = test.fakeResources
client := NewConfigClientShim(
configClient,
test.objects,
)
groups, resourceList, err := client.Discovery().ServerGroupsAndResources()
if err != nil {
t.Fatalf("Expected no error for a Discovery().ServerGroupsAndResources() request, got %q instead", err)
}
hasConfigV1Version := false
for _, group := range groups {
if group.Name != configGroup {
continue
}
for _, version := range group.Versions {
if version.Version == configVersion {
// duplicated
if hasConfigV1Version {
t.Fatalf("config v1 version duplicated")
}
hasConfigV1Version = true
}
}
}
if test.hasConfigV1Group && !hasConfigV1Version {
t.Fatalf("Expected config v1 version to exists, got non-existing")
}
if !test.hasConfigV1Group && hasConfigV1Version {
t.Fatalf("Expected no config v1 version to exists, got existing")
}
resources := []string{}
for _, item := range resourceList {
for _, resource := range item.APIResources {
resources = append(resources, fmt.Sprintf("%v/%v", item.GroupVersion, resource.Name))
}
}
sort.Strings(test.expectedResources)
sort.Strings(resources)
diff := cmp.Diff(test.expectedResources, resources)
if diff != "" {
t.Errorf("test '%s' failed. Results are not deep equal. mismatch (-want +got):\n%s", test.name, diff)
}
})
}
}
func TestConfigClientShimDiscoveryServerPreferredResources(t *testing.T) {
// Note: FakeDiscovery's ServerPreferredResources returns nil, nil
// Thus, there's currently no way to simulated the real client side.
tests := []struct {
name string
hasConfigV1Group bool
expectedResources []string
objects []runtime.Object
fakeResources []*metav1.APIResourceList
}{
{
name: "no config v1 found with default kinds",
hasConfigV1Group: false,
expectedResources: []string{},
fakeResources: defaultFakeDiscoveryResources(),
},
{
name: "config v1 found with infrastructure kinds",
hasConfigV1Group: true,
objects: []runtime.Object{
createInfrastructureObject("staticObject"),
},
expectedResources: []string{"config.openshift.io/v1/infrastructures", "config.openshift.io/v1/infrastructures/status"},
fakeResources: defaultFakeDiscoveryResources(),
},
{
name: "config v1 found with network kinds",
hasConfigV1Group: true,
objects: []runtime.Object{
createNetworkObject("staticObject"),
},
expectedResources: []string{"config.openshift.io/v1/networks"},
fakeResources: defaultFakeDiscoveryResources(),
},
{
name: "config v1 found with infrastructure and network kinds",
hasConfigV1Group: true,
objects: []runtime.Object{
createInfrastructureObject("staticInfrastructureObject"),
createNetworkObject("staticNetworkObject"),
},
expectedResources: []string{"config.openshift.io/v1/infrastructures", "config.openshift.io/v1/infrastructures/status", "config.openshift.io/v1/networks"},
fakeResources: defaultFakeDiscoveryResources(),
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
configClient := fakeconfigv1client.NewSimpleClientset()
configClient.Fake.Resources = test.fakeResources
client := NewConfigClientShim(
configClient,
test.objects,
)
resourceList, err := client.Discovery().ServerPreferredResources()
if err != nil {
t.Fatalf("Expected no error for a Discovery().ServerGroupsAndResources() request, got %q instead", err)
}
hasConfigV1Version := false
for _, item := range resourceList {
if item.GroupVersion != configGroupVersion {
continue
}
// duplicated
if hasConfigV1Version {
t.Fatalf("config v1 version duplicated")
}
hasConfigV1Version = true
}
if test.hasConfigV1Group && !hasConfigV1Version {
t.Fatalf("Expected config v1 version to exists, got non-existing")
}
if !test.hasConfigV1Group && hasConfigV1Version {
t.Fatalf("Expected no config v1 version to exists, got existing")
}
resources := []string{}
for _, item := range resourceList {
for _, resource := range item.APIResources {
resources = append(resources, fmt.Sprintf("%v/%v", item.GroupVersion, resource.Name))
}
}