-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdiff_test.go
More file actions
1204 lines (1081 loc) · 33.6 KB
/
Copy pathdiff_test.go
File metadata and controls
1204 lines (1081 loc) · 33.6 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
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
/*
Copyright 2025 The Crossplane 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 main
import (
"bytes"
"context"
"os"
"path/filepath"
"strings"
"testing"
"time"
"github.com/alecthomas/kong"
xp "github.com/crossplane-contrib/crossplane-diff/cmd/diff/client/crossplane"
k8 "github.com/crossplane-contrib/crossplane-diff/cmd/diff/client/kubernetes"
dp "github.com/crossplane-contrib/crossplane-diff/cmd/diff/diffprocessor"
"github.com/crossplane-contrib/crossplane-diff/cmd/diff/kubecfg"
tu "github.com/crossplane-contrib/crossplane-diff/cmd/diff/testutils"
"github.com/crossplane-contrib/crossplane-diff/cmd/diff/types"
"github.com/crossplane/cli/v2/cmd/crossplane/common/load"
itu "github.com/crossplane/cli/v2/cmd/crossplane/common/load/testutils"
"github.com/google/go-cmp/cmp"
extv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
un "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
"sigs.k8s.io/yaml"
"github.com/crossplane/crossplane-runtime/v2/pkg/errors"
xpextv1 "github.com/crossplane/crossplane/apis/v2/apiextensions/v1"
pkgv1 "github.com/crossplane/crossplane/apis/v2/pkg/v1"
)
// testContextProvider implements ContextProvider for testing.
type testContextProvider struct {
context KubeContext
}
func (t *testContextProvider) GetKubeContext() KubeContext {
return t.context
}
func TestCmd_Run(t *testing.T) {
var buf bytes.Buffer
// Create a Kong context
parser, err := kong.New(&struct{}{})
if err != nil {
t.Fatalf("Failed to create Kong parser: %v", err)
}
kongCtx, err := parser.Parse([]string{})
if err != nil {
t.Fatalf("Failed to parse Kong context: %v", err)
}
kongCtx.Stdout = &buf
// Create a buffer to capture output
type fields struct {
CommonCmdFields
Files []string
}
type args struct {
appContext AppContext
processor dp.DiffProcessor
loader load.Loader
}
k8cs := k8.Clients{
Apply: tu.NewMockApplyClient().Build(),
Resource: tu.NewMockResourceClient().Build(),
Schema: tu.NewMockSchemaClient().Build(),
Type: tu.NewMockTypeConverter().Build(),
}
xpcs := xp.Clients{
Composition: tu.NewMockCompositionClient().WithSuccessfulInitialize().Build(),
Definition: tu.NewMockDefinitionClient().WithSuccessfulInitialize().Build(),
Environment: tu.NewMockEnvironmentClient().WithSuccessfulInitialize().Build(),
Function: tu.NewMockFunctionClient().WithSuccessfulInitialize().Build(),
ResourceTree: tu.NewMockResourceTreeClient().WithSuccessfulInitialize().Build(),
}
appCtx := AppContext{
K8sClients: k8cs,
XpClients: xpcs,
}
tests := map[string]struct {
fields fields
args args
setupFiles func() []string
wantErr bool
wantErrContains string
}{
"SuccessfulRun": {
fields: fields{
Files: []string{},
CommonCmdFields: CommonCmdFields{
NoColor: false,
Compact: false,
},
},
args: args{
appContext: appCtx,
processor: tu.NewMockDiffProcessor().
WithSuccessfulInitialize().
WithSuccessfulPerformDiff().
Build(),
loader: &itu.MockLoader{
Resources: []*un.Unstructured{},
},
},
setupFiles: func() []string {
// Create a temporary test file
tempDir := t.TempDir()
tempFile := filepath.Join(tempDir, "test-resource.yaml")
content := `
apiVersion: test.org/v1alpha1
kind: TestResource
metadata:
name: test-resource
`
err := os.WriteFile(tempFile, []byte(content), 0o600)
if err != nil {
t.Fatalf("Failed to write temp file: %v", err)
}
return []string{tempFile}
},
wantErr: false,
},
"ClientInitializeError": {
fields: fields{
Files: []string{},
},
args: args{
appContext: AppContext{
K8sClients: k8cs,
XpClients: xp.Clients{
Composition: tu.NewMockCompositionClient().WithFailedInitialize("failed to initialize cluster client").Build(),
Definition: tu.NewMockDefinitionClient().WithFailedInitialize("failed to initialize cluster client").Build(),
Environment: tu.NewMockEnvironmentClient().WithFailedInitialize("failed to initialize cluster client").Build(),
Function: tu.NewMockFunctionClient().WithFailedInitialize("failed to initialize cluster client").Build(),
ResourceTree: tu.NewMockResourceTreeClient().WithFailedInitialize("failed to initialize cluster client").Build(),
},
},
processor: tu.NewMockDiffProcessor().
WithSuccessfulInitialize().
Build(),
loader: &itu.MockLoader{
Resources: []*un.Unstructured{},
},
},
setupFiles: func() []string {
return []string{}
},
wantErr: true,
wantErrContains: "cannot initialize client",
},
"ProcessorInitializeError": {
fields: fields{
Files: []string{},
},
args: args{
appContext: appCtx,
processor: tu.NewMockDiffProcessor().
WithFailedInitialize("failed to initialize processor").
Build(),
loader: &itu.MockLoader{
Resources: []*un.Unstructured{},
},
},
setupFiles: func() []string {
return []string{}
},
wantErr: true,
wantErrContains: "cannot initialize diff processor",
},
"LoaderError": {
fields: fields{
Files: []string{},
},
args: args{
appContext: appCtx,
processor: tu.NewMockDiffProcessor().
WithSuccessfulInitialize().
Build(),
loader: &itu.MockLoader{
Err: errors.New("failed to load resources"),
},
},
setupFiles: func() []string {
return []string{}
},
wantErr: true,
wantErrContains: "cannot load resources",
},
"ProcessResourcesError": {
fields: fields{
Files: []string{},
},
args: args{
appContext: appCtx,
processor: tu.NewMockDiffProcessor().
WithSuccessfulInitialize().
WithFailedPerformDiff("processing error").
Build(),
loader: &itu.MockLoader{
Resources: []*un.Unstructured{
tu.NewResource("test.org/v1", "TestResource", "test-resource").Build(),
},
},
},
setupFiles: func() []string {
// Create a temporary test file
tempDir := t.TempDir()
tempFile := filepath.Join(tempDir, "test-resource.yaml")
content := `
apiVersion: test.org/v1alpha1
kind: TestResource
metadata:
name: test-resource
`
err := os.WriteFile(tempFile, []byte(content), 0o600)
if err != nil {
t.Fatalf("Failed to write temp file: %v", err)
}
return []string{tempFile}
},
wantErr: true,
wantErrContains: "unable to process one or more resources",
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
// Setup test files if needed
files := tc.setupFiles()
c := &XRCmd{
Files: files,
CommonCmdFields: tc.fields.CommonCmdFields,
}
err := c.Run(
kongCtx,
tu.TestLogger(t, false),
&tc.args.appContext,
tc.args.processor,
tc.args.loader,
&ExitCode{},
)
if (err != nil) != tc.wantErr {
t.Errorf("Run() error = %v, wantErr %v", err, tc.wantErr)
return
}
if err != nil && tc.wantErrContains != "" {
if !strings.Contains(err.Error(), tc.wantErrContains) {
t.Errorf("Run() error = %v, wantErrContains %v", err, tc.wantErrContains)
}
}
})
}
}
func TestDiffCommand(t *testing.T) {
// Create common test resources
testComposition, _ := createTestCompositionWithExtraResources()
testXRD := createTestXRD()
testExtraResource := createExtraResource()
existingResource := createExistingComposedResource()
matchingResource := createMatchingComposedResource()
// Convert the test XRD to unstructured for GetXRDs to return
xrdUnstructured, err := runtime.DefaultUnstructuredConverter.ToUnstructured(testXRD)
if err != nil {
t.Fatalf("Failed to convert XRD to unstructured: %v", err)
}
tests := map[string]struct {
setupKubeClients func() k8.Clients
setupCrossplaneClients func() xp.Clients
setupProcessor func() dp.DiffProcessor
setupLoader func() *itu.MockLoader
expectedOutput string // Text that should be present in output
notExpected []string // Text that should NOT be present in output
expectError bool
errorContains string
}{
// ====== Tests for resources with extra resources ======
"ExtraResources_ResourceWithDifferentValues": {
setupKubeClients: func() k8.Clients {
resourceClient := tu.NewMockResourceClient().
WithGetResource(func(_ context.Context, _ schema.GroupVersionKind, _, name string) (*un.Unstructured, error) {
if name == "test-xr-composed-resource" {
return existingResource, nil
}
return nil, errors.Errorf("resource %q not found", name)
}).
WithGetResourcesByLabel(func(_ context.Context, _ schema.GroupVersionKind, _ string, sel metav1.LabelSelector) ([]*un.Unstructured, error) {
// Return resources based on label selector
if sel.MatchLabels["app"] == "test-app" {
return []*un.Unstructured{testExtraResource}, nil
}
return []*un.Unstructured{}, nil
}).
WithGetAllResourcesByLabels(func(_ context.Context, gvks []schema.GroupVersionKind, selectors []metav1.LabelSelector) ([]*un.Unstructured, error) {
// Validate the GVK and selector match what we expect
if len(gvks) != 1 || len(selectors) != 1 {
return nil, errors.New("unexpected number of GVKs or selectors")
}
// Verify the GVK matches our extra resource - using GVK now instead of GVR
expectedGVK := schema.GroupVersionKind{
Group: "example.org",
Version: "v1",
Kind: "ExtraResource",
}
if gvks[0] != expectedGVK {
return nil, errors.Errorf("unexpected GVK: %v", gvks[0])
}
// Verify the selector matches our label selector
expectedSelector := metav1.LabelSelector{
MatchLabels: map[string]string{
"app": "test-app",
},
}
if !cmp.Equal(selectors[0].MatchLabels, expectedSelector.MatchLabels) {
return nil, errors.New("unexpected selector")
}
return []*un.Unstructured{testExtraResource}, nil
}).
Build()
schemaClient := tu.NewMockSchemaClient().
WithNoResourcesRequiringCRDs().
WithGetCRD(func(context.Context, schema.GroupVersionKind) (*extv1.CustomResourceDefinition, error) {
// For this test, we can return nil as it doesn't focus on validation
return nil, errors.New("CRD not found")
}).
Build()
applyClient := tu.NewMockApplyClient().
WithSuccessfulDryRun().
Build()
typeConverter := tu.NewMockTypeConverter().Build()
return k8.Clients{
Resource: resourceClient,
Schema: schemaClient,
Apply: applyClient,
Type: typeConverter,
}
},
setupCrossplaneClients: func() xp.Clients {
compositionClient := tu.NewMockCompositionClient().
WithSuccessfulCompositionMatch(testComposition).
Build()
definitionClient := tu.NewMockDefinitionClient().
WithGetXRDs(func(context.Context) ([]*un.Unstructured, error) {
return []*un.Unstructured{
{Object: xrdUnstructured},
}, nil
}).
Build()
functionClient := tu.NewMockFunctionClient().
WithGetFunctionsFromPipeline(func(*xpextv1.Composition) ([]pkgv1.Function, error) {
// Return functions for the composition pipeline
return []pkgv1.Function{
{
ObjectMeta: metav1.ObjectMeta{
Name: "function-extra-resources",
},
},
{
ObjectMeta: metav1.ObjectMeta{
Name: "function-patch-and-transform",
},
},
}, nil
}).
Build()
environmentClient := tu.NewMockEnvironmentClient().
WithNoEnvironmentConfigs().
Build()
resourceTreeClient := tu.NewMockResourceTreeClient().
WithEmptyResourceTree().
Build()
return xp.Clients{
Composition: compositionClient,
Definition: definitionClient,
Function: functionClient,
Environment: environmentClient,
ResourceTree: resourceTreeClient,
}
},
setupProcessor: func() dp.DiffProcessor {
return tu.NewMockDiffProcessor().
WithSuccessfulInitialize().
WithSuccessfulPerformDiffWithChanges().
Build()
},
setupLoader: func() *itu.MockLoader {
// Create a test XR content
xrYAML := []byte(`
apiVersion: example.org/v1
kind: XExampleResource
metadata:
name: test-xr
spec:
coolParam: test-value
replicas: 3
`)
return &itu.MockLoader{
Resources: []*un.Unstructured{
func() *un.Unstructured {
// Parse the YAML into an unstructured object
obj := &un.Unstructured{}
err := yaml.Unmarshal(xrYAML, &obj.Object)
if err != nil {
t.Fatalf("Failed to unmarshal test XR: %v", err)
}
return obj
}(),
},
}
},
// Note: Output content is tested in integration tests with real processors.
// Mock processors don't produce output - they just return success/failure.
expectedOutput: "",
notExpected: nil,
expectError: false,
},
"ExtraResources_GetAllResourcesError": {
setupKubeClients: func() k8.Clients {
resourceClient := tu.NewMockResourceClient().
WithGetAllResourcesByLabels(func(context.Context, []schema.GroupVersionKind, []metav1.LabelSelector) ([]*un.Unstructured, error) {
return nil, errors.New("error getting resources")
}).
Build()
return k8.Clients{
Resource: resourceClient,
Schema: tu.NewMockSchemaClient().Build(),
Apply: tu.NewMockApplyClient().Build(),
Type: tu.NewMockTypeConverter().Build(),
}
},
setupCrossplaneClients: func() xp.Clients {
compositionClient := tu.NewMockCompositionClient().
WithSuccessfulCompositionMatch(testComposition).
Build()
functionClient := tu.NewMockFunctionClient().
WithGetFunctionsFromPipeline(func(*xpextv1.Composition) ([]pkgv1.Function, error) {
return []pkgv1.Function{
{
ObjectMeta: metav1.ObjectMeta{
Name: "function-extra-resources",
},
},
}, nil
}).
Build()
return xp.Clients{
Composition: compositionClient,
Definition: tu.NewMockDefinitionClient().Build(),
Function: functionClient,
Environment: tu.NewMockEnvironmentClient().Build(),
ResourceTree: tu.NewMockResourceTreeClient().Build(),
}
},
setupProcessor: func() dp.DiffProcessor {
return tu.NewMockDiffProcessor().
WithSuccessfulInitialize().
WithPerformDiff(func(_ context.Context, _ []*un.Unstructured, _ types.CompositionProvider) (bool, error) {
return false, errors.New("processing error")
}).
Build()
},
setupLoader: func() *itu.MockLoader {
// Create a test XR content
xrYAML := []byte(`
apiVersion: example.org/v1
kind: XExampleResource
metadata:
name: test-xr
spec:
coolParam: test-value
`)
return &itu.MockLoader{
Resources: []*un.Unstructured{
func() *un.Unstructured {
// Parse the YAML into an unstructured object
obj := &un.Unstructured{}
err := yaml.Unmarshal(xrYAML, &obj.Object)
if err != nil {
t.Fatalf("Failed to unmarshal test XR: %v", err)
}
return obj
}(),
},
}
},
expectedOutput: "",
notExpected: nil,
expectError: true,
errorContains: "processing error",
},
// ====== Tests for matching resources ======
"MatchingResources_NoChanges": {
setupKubeClients: func() k8.Clients {
resourceClient := tu.NewMockResourceClient().
WithGetAllResourcesByLabels(func(context.Context, []schema.GroupVersionKind, []metav1.LabelSelector) ([]*un.Unstructured, error) {
return []*un.Unstructured{testExtraResource}, nil
}).
WithGetResource(func(_ context.Context, _ schema.GroupVersionKind, _, name string) (*un.Unstructured, error) {
if name == "test-xr-composed-resource" {
return matchingResource, nil
}
return nil, errors.Errorf("resource %q not found", name)
}).
Build()
applyClient := tu.NewMockApplyClient().
WithSuccessfulDryRun().
Build()
return k8.Clients{
Resource: resourceClient,
Schema: tu.NewMockSchemaClient().Build(),
Apply: applyClient,
Type: tu.NewMockTypeConverter().Build(),
}
},
setupCrossplaneClients: func() xp.Clients {
compositionClient := tu.NewMockCompositionClient().
WithSuccessfulCompositionMatch(testComposition).
Build()
functionClient := tu.NewMockFunctionClient().
WithGetFunctionsFromPipeline(func(*xpextv1.Composition) ([]pkgv1.Function, error) {
return []pkgv1.Function{
{
ObjectMeta: metav1.ObjectMeta{
Name: "function-extra-resources",
},
},
{
ObjectMeta: metav1.ObjectMeta{
Name: "function-patch-and-transform",
},
},
}, nil
}).
Build()
definitionClient := tu.NewMockDefinitionClient().
WithGetXRDs(func(context.Context) ([]*un.Unstructured, error) {
return []*un.Unstructured{
{Object: xrdUnstructured},
}, nil
}).
Build()
return xp.Clients{
Composition: compositionClient,
Definition: definitionClient,
Function: functionClient,
Environment: tu.NewMockEnvironmentClient().Build(),
ResourceTree: tu.NewMockResourceTreeClient().Build(),
}
},
setupProcessor: func() dp.DiffProcessor {
return tu.NewMockDiffProcessor().
WithSuccessfulInitialize().
WithPerformDiff(func(_ context.Context, _ []*un.Unstructured, _ types.CompositionProvider) (bool, error) {
// For matching resources, we don't produce any output
return false, nil
}).
Build()
},
setupLoader: func() *itu.MockLoader {
// Create a test XR content
xrYAML := []byte(`
apiVersion: example.org/v1
kind: XExampleResource
metadata:
name: test-xr
spec:
coolParam: test-value
replicas: 3
`)
return &itu.MockLoader{
Resources: []*un.Unstructured{
func() *un.Unstructured {
// Parse the YAML into an unstructured object
obj := &un.Unstructured{}
err := yaml.Unmarshal(xrYAML, &obj.Object)
if err != nil {
t.Fatalf("Failed to unmarshal test XR: %v", err)
}
return obj
}(),
},
}
},
expectedOutput: "",
notExpected: []string{"ComposedResource", "test-xr-composed-resource"},
expectError: false,
},
"ResourceNotFound_ShownAsNew": {
setupKubeClients: func() k8.Clients {
resourceClient := tu.NewMockResourceClient().
WithGetAllResourcesByLabels(func(context.Context, []schema.GroupVersionKind, []metav1.LabelSelector) ([]*un.Unstructured, error) {
return []*un.Unstructured{testExtraResource}, nil
}).
WithGetResource(func(context.Context, schema.GroupVersionKind, string, string) (*un.Unstructured, error) {
// Simulate resource not found
return nil, errors.New("resource not found")
}).
Build()
applyClient := tu.NewMockApplyClient().
WithSuccessfulDryRun().
Build()
return k8.Clients{
Resource: resourceClient,
Schema: tu.NewMockSchemaClient().Build(),
Apply: applyClient,
Type: tu.NewMockTypeConverter().Build(),
}
},
setupCrossplaneClients: func() xp.Clients {
compositionClient := tu.NewMockCompositionClient().
WithSuccessfulCompositionMatch(testComposition).
Build()
functionClient := tu.NewMockFunctionClient().
WithGetFunctionsFromPipeline(func(*xpextv1.Composition) ([]pkgv1.Function, error) {
return []pkgv1.Function{
{
ObjectMeta: metav1.ObjectMeta{
Name: "function-extra-resources",
},
},
{
ObjectMeta: metav1.ObjectMeta{
Name: "function-patch-and-transform",
},
},
}, nil
}).
Build()
definitionClient := tu.NewMockDefinitionClient().
WithGetXRDs(func(context.Context) ([]*un.Unstructured, error) {
return []*un.Unstructured{
{Object: xrdUnstructured},
}, nil
}).
Build()
return xp.Clients{
Composition: compositionClient,
Definition: definitionClient,
Function: functionClient,
Environment: tu.NewMockEnvironmentClient().Build(),
ResourceTree: tu.NewMockResourceTreeClient().Build(),
}
},
setupProcessor: func() dp.DiffProcessor {
return tu.NewMockDiffProcessor().
WithSuccessfulInitialize().
WithSuccessfulPerformDiffWithChanges().
Build()
},
setupLoader: func() *itu.MockLoader {
// Create a test XR content
xrYAML := []byte(`
apiVersion: example.org/v1
kind: XExampleResource
metadata:
name: test-xr
spec:
coolParam: test-value
replicas: 3
`)
return &itu.MockLoader{
Resources: []*un.Unstructured{
func() *un.Unstructured {
obj := &un.Unstructured{}
err := yaml.Unmarshal(xrYAML, &obj.Object)
if err != nil {
t.Fatalf("Failed to unmarshal test XR: %v", err)
}
return obj
}(),
},
}
},
// Note: Output content is tested in integration tests with real processors.
// Mock processors don't produce output - they just return success/failure.
expectedOutput: "",
expectError: false,
},
// ====== General error conditions ======
"ClientInitializationError": {
setupKubeClients: func() k8.Clients {
return k8.Clients{
Resource: tu.NewMockResourceClient().Build(),
Schema: tu.NewMockSchemaClient().Build(),
Apply: tu.NewMockApplyClient().Build(),
Type: tu.NewMockTypeConverter().Build(),
}
},
setupCrossplaneClients: func() xp.Clients {
// Mock composition client that fails during initialization
compositionClient := tu.NewMockCompositionClient().
WithInitialize(func(context.Context) error {
return errors.New("client initialization error")
}).
Build()
return xp.Clients{
Composition: compositionClient,
Definition: tu.NewMockDefinitionClient().Build(),
Function: tu.NewMockFunctionClient().Build(),
Environment: tu.NewMockEnvironmentClient().Build(),
ResourceTree: tu.NewMockResourceTreeClient().Build(),
}
},
setupProcessor: func() dp.DiffProcessor {
return tu.NewMockDiffProcessor().
WithSuccessfulInitialize().
Build()
},
setupLoader: func() *itu.MockLoader {
return &itu.MockLoader{
Resources: []*un.Unstructured{
tu.NewResource("example.org/v1", "XExampleResource", "test-xr").Build(),
},
}
},
expectError: true,
errorContains: "cannot initialize client",
},
"ProcessorInitializationError": {
setupKubeClients: func() k8.Clients {
return k8.Clients{
Resource: tu.NewMockResourceClient().Build(),
Schema: tu.NewMockSchemaClient().Build(),
Apply: tu.NewMockApplyClient().Build(),
Type: tu.NewMockTypeConverter().Build(),
}
},
setupCrossplaneClients: func() xp.Clients {
return xp.Clients{
Composition: tu.NewMockCompositionClient().Build(),
Definition: tu.NewMockDefinitionClient().Build(),
Function: tu.NewMockFunctionClient().Build(),
Environment: tu.NewMockEnvironmentClient().Build(),
ResourceTree: tu.NewMockResourceTreeClient().Build(),
}
},
setupProcessor: func() dp.DiffProcessor {
return tu.NewMockDiffProcessor().
WithFailedInitialize("processor initialization error").
Build()
},
setupLoader: func() *itu.MockLoader {
return &itu.MockLoader{
Resources: []*un.Unstructured{
tu.NewResource("example.org/v1", "XExampleResource", "test-xr").Build(),
},
}
},
expectError: true,
errorContains: "cannot initialize diff processor",
},
"LoaderError": {
setupKubeClients: func() k8.Clients {
return k8.Clients{
Resource: tu.NewMockResourceClient().Build(),
Schema: tu.NewMockSchemaClient().Build(),
Apply: tu.NewMockApplyClient().Build(),
Type: tu.NewMockTypeConverter().Build(),
}
},
setupCrossplaneClients: func() xp.Clients {
return xp.Clients{
Composition: tu.NewMockCompositionClient().Build(),
Definition: tu.NewMockDefinitionClient().Build(),
Function: tu.NewMockFunctionClient().Build(),
Environment: tu.NewMockEnvironmentClient().Build(),
ResourceTree: tu.NewMockResourceTreeClient().Build(),
}
},
setupProcessor: func() dp.DiffProcessor {
return tu.NewMockDiffProcessor().
WithSuccessfulInitialize().
Build()
},
setupLoader: func() *itu.MockLoader {
return &itu.MockLoader{
Resources: nil,
Err: errors.New("loader error"),
}
},
expectError: true,
errorContains: "cannot load resources",
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
// Set up the mocks based on the test case
kubeClients := tt.setupKubeClients()
crossplaneClients := tt.setupCrossplaneClients()
mockProcessor := tt.setupProcessor()
mockLoader := tt.setupLoader()
// Create a buffer to capture output
var buf bytes.Buffer
// Create our command
cmd := &XRCmd{
CommonCmdFields: CommonCmdFields{
Timeout: time.Second * 30,
},
}
// Create a Kong context
parser, err := kong.New(&struct{}{})
if err != nil {
t.Fatalf("Failed to create Kong parser: %v", err)
}
kongCtx, err := parser.Parse([]string{})
if err != nil {
t.Fatalf("Failed to parse Kong context: %v", err)
}
kongCtx.Stdout = &buf
// Create a logger
logger := tu.TestLogger(t, false)
// Create options for the DiffProcessor
options := []dp.ProcessorOption{
dp.WithLogger(logger),
// Add other options as needed
}
// Create a new diff processor if none was provided
if mockProcessor == nil {
mockProcessor = dp.NewDiffProcessor(kubeClients, crossplaneClients, options...)
}
appCtx := &AppContext{
K8sClients: kubeClients,
XpClients: crossplaneClients,
}
// Execute the test
err = cmd.Run(kongCtx, logger, appCtx, mockProcessor, mockLoader, &ExitCode{})
// Check for expected errors
if tt.expectError {
if err == nil {
t.Errorf("Expected error but got none")
return
}
if tt.errorContains != "" && !strings.Contains(err.Error(), tt.errorContains) {
t.Errorf("Expected error containing %q, got: %v", tt.errorContains, err)
}
return
}
// Check for unexpected errors
if err != nil {
t.Errorf("Expected no error, got: %v", err)
return
}
// Get the captured output
capturedOutput := buf.String()
// Check expected output
if tt.expectedOutput != "" {
if !strings.Contains(capturedOutput, tt.expectedOutput) {
t.Errorf("Expected output to contain '%s', but it didn't\nOutput: %s", tt.expectedOutput, capturedOutput)
}
}
// Check for text that should NOT be present
if tt.notExpected != nil {
for _, unexpected := range tt.notExpected {
if strings.Contains(capturedOutput, unexpected) {
t.Errorf("Output should not contain '%s', but it did\nOutput: %s", unexpected, capturedOutput)
}
}
}
})
}
}
func TestGetRestConfig(t *testing.T) {
// Check if we're in an isolated build environment (Earthly/Docker/CI)
// EARTHLY_VERSION is automatically set by Earthly when running in a container
isIsolated := os.Getenv("EARTHLY_VERSION") != ""
tests := map[string]struct {
kubeconfigPath string
setupFile func() string
expectError bool
errorContains string
skip bool
skipReason string
}{
"EmptyKubeconfigEnvVar": {
kubeconfigPath: "",
expectError: true,
// With standard loading rules, when KUBECONFIG is empty it tries ~/.kube/config
// If that doesn't exist, it returns "invalid configuration"
errorContains: "invalid configuration",
// This test only works in isolated environments where ~/.kube/config doesn't exist
skip: !isIsolated,
skipReason: "requires isolated environment without ~/.kube/config (run 'earthly +go-test' for full coverage)",
// TODO: rework this so it covers the empty-KUBECONFIG branch on developer
// machines too — e.g. by overriding the loading rules' Precedence list
// (clientcmd.NewDefaultClientConfigLoadingRules with ExplicitPath=""
// and an empty Precedence) instead of relying on ~/.kube/config absence.
// The Earthly path catches it via the isolated container; locally it
// silently skips, which is easy to miss when something regresses.
},
"ValidKubeconfigPath": {
setupFile: func() string {