-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdi_test.go
1648 lines (1549 loc) · 49.1 KB
/
di_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 di_test
import (
"fmt"
"strconv"
"testing"
"github.com/samber/lo"
"github.com/stretchr/testify/require"
di "github.com/michalkurzeja/godi/v2"
)
const constMethodArg = "const-method-arg"
type TestSvc struct {
Args []any
}
func NewTestSvcNoArgs() *TestSvc {
return &TestSvc{}
}
func NewTestSvcStrArg(s string) *TestSvc {
return &TestSvc{Args: []any{s}}
}
func NewTestSvcIfaceArg(i TestIface) *TestSvc {
return &TestSvc{Args: []any{i}}
}
func NewTestSvcSliceArgs(args []string) *TestSvc {
return &TestSvc{Args: lo.ToAnySlice(args)}
}
func NewTestSvcVariadicArgs(args ...string) *TestSvc {
return &TestSvc{Args: lo.ToAnySlice(args)}
}
func NewTestSvcIfaceSliceArgs(args []TestIface) *TestSvc {
return &TestSvc{Args: lo.ToAnySlice(args)}
}
func NewTestSvcIfaceVariadicArgs(args ...TestIface) *TestSvc {
return &TestSvc{Args: lo.ToAnySlice(args)}
}
func (s *TestSvc) AddConstArg() {
s.Args = append(s.Args, constMethodArg)
}
func (s *TestSvc) AddArgStr(arg string) {
s.Args = append(s.Args, arg)
}
func (s *TestSvc) AddArgIface(arg TestIface) {
s.Args = append(s.Args, arg)
}
func (s *TestSvc) AddArgsSlice(args []string) {
s.Args = append(s.Args, lo.ToAnySlice(args)...)
}
func (s *TestSvc) AddArgsVariadic(args ...string) {
s.Args = append(s.Args, lo.ToAnySlice(args)...)
}
func (s *TestSvc) AddArgsIfaceSlice(args []TestIface) {
s.Args = append(s.Args, lo.ToAnySlice(args)...)
}
func (s *TestSvc) AddArgsIfaceVariadic(args ...TestIface) {
s.Args = append(s.Args, lo.ToAnySlice(args)...)
}
type TestIface interface {
TestIfaceMethod()
}
type TestIfaceImpl struct {
MethodCalled bool
}
func (i *TestIfaceImpl) TestIfaceMethod() {
i.MethodCalled = true
}
func TestGodi(t *testing.T) {
tests := []struct {
name string
build func(b *di.Builder, refs *Refs)
assertBuildErr func(t *testing.T, err error)
assert func(t *testing.T, c di.Container, refs *Refs)
}{
// Empty container
{
name: "can build an empty container",
},
// Retrieval by ref
{
name: "can retrieve a service by ref",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg, "foo").Bind(refs.Svc.New("foo")),
di.Svc(NewTestSvcStrArg, "bar").Bind(refs.Svc.New("bar")),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svcFoo, err := di.SvcByRef[*TestSvc](c, refs.Svc.Get(t, "foo"))
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svcFoo.Args)
svcBar, err := di.SvcByRef[*TestSvc](c, refs.Svc.Get(t, "bar"))
require.NoError(t, err)
require.Equal(t, []any{"bar"}, svcBar.Args)
},
},
{
name: "retrieving a service by empty ref results in an error",
assert: func(t *testing.T, c di.Container, refs *Refs) {
_, err := di.SvcByRef[*TestSvc](c, *refs.Svc.New("foo"))
require.ErrorContains(t, err, "service not found: empty reference")
},
},
{
name: "retrieving a service that doesn't exist by reference results in an error",
assert: func(t *testing.T, c di.Container, refs *Refs) {
_, _ = di.New().Services(
di.Svc(NewTestSvcNoArgs).Bind(refs.Svc.New("foo")), // Different container, so even though the ref is not empty, the service is not registered in the current container.
).Build()
_, err := di.SvcByRef[*TestSvc](c, refs.Svc.Get(t, "foo"))
require.ErrorContains(t, err, "service github.com/michalkurzeja/godi/v2_test.(*TestSvc) not found")
},
},
// Retrieval by type
{
name: "can retrieve a service by type",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg, "foo"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svc.Args)
},
},
{
name: "can retrieve multiple services by type",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg, "foo"),
di.Svc(NewTestSvcStrArg, "bar"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svcs, err := di.SvcsByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svcs[0].Args)
require.Equal(t, []any{"bar"}, svcs[1].Args)
},
},
{
name: "cannot retrieve a single service by type if multiple exist",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg, "foo"),
di.Svc(NewTestSvcStrArg, "bar"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
_, err := di.SvcByType[*TestSvc](c)
require.ErrorContains(t, err, "found multiple services of type github.com/michalkurzeja/godi/v2_test.(*TestSvc)")
},
},
{
name: "retrieving a type that doesn't exist results in an error",
assert: func(t *testing.T, c di.Container, refs *Refs) {
_, err := di.SvcByType[*TestSvc](c)
require.ErrorContains(t, err, "service of type github.com/michalkurzeja/godi/v2_test.(*TestSvc) not found")
},
},
// Retrieval by label
{
name: "can retrieve a service by label",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg, "foo").Labels("my-label", "my-second-label"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc1, err := di.SvcByLabel[*TestSvc](c, "my-label")
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svc1.Args)
svc2, err := di.SvcByLabel[*TestSvc](c, "my-second-label")
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svc2.Args)
require.Same(t, svc1, svc2)
},
},
{
name: "can retrieve multiple services by label",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg, "foo").Labels("my-label"),
di.Svc(NewTestSvcStrArg, "bar").Labels("my-label"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svcs, err := di.SvcsByLabel[*TestSvc](c, "my-label")
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svcs[0].Args)
require.Equal(t, []any{"bar"}, svcs[1].Args)
},
},
{
name: "cannot retrieve a single service by label if multiple exist",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg, "foo").Labels("my-label"),
di.Svc(NewTestSvcStrArg, "bar").Labels("my-label"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
_, err := di.SvcByLabel[*TestSvc](c, "my-label")
require.ErrorContains(t, err, "found multiple services with label my-label")
},
},
{
name: "retrieving a label that doesn't exist results in an error",
assert: func(t *testing.T, c di.Container, refs *Refs) {
_, err := di.SvcByLabel[*TestSvc](c, "my-label")
require.ErrorContains(t, err, "service with label my-label not found")
},
},
// Retrieval by various means
{
name: "can retrieve a service by ref, type, and label",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg, "foo").
Bind(refs.Svc.New("foo")).
Labels("my-label"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svcRef, err := di.SvcByRef[*TestSvc](c, refs.Svc.Get(t, "foo"))
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svcRef.Args)
svcType, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svcType.Args)
svcLabel, err := di.SvcByLabel[*TestSvc](c, "my-label")
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svcLabel.Args)
},
},
// Literal args (no autowiring) - good cases
{
name: "can register a service with no args",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcNoArgs).NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Empty(t, svc.Args)
},
},
{
name: "can register a service with manual single arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg, "foo").NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svc.Args)
},
},
{
name: "can register a service with manual single interface arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcIfaceArg, new(TestIfaceImpl)).NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.IsType(t, []any{&TestIfaceImpl{}}, svc.Args)
},
},
{
name: "can register a service with manual slice arg (variadic-style)",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcSliceArgs, "foo", "bar").NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo", "bar"}, svc.Args)
},
},
{
name: "can register a service with manual slice arg (slice-style)",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcSliceArgs, []string{"foo", "bar"}).NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo", "bar"}, svc.Args)
},
},
{
name: "can register a service with manual interface slice arg (variadic-style)",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcIfaceSliceArgs, new(TestIfaceImpl), new(TestIfaceImpl)).NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{new(TestIfaceImpl), new(TestIfaceImpl)}, svc.Args)
},
},
{
name: "can register a service with manual interface slice arg (slice-style)",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcIfaceSliceArgs, []TestIface{new(TestIfaceImpl), new(TestIfaceImpl)}).NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{new(TestIfaceImpl), new(TestIfaceImpl)}, svc.Args)
},
},
{
name: "can register a service with manual variadic arg (variadic-style)",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcVariadicArgs, "foo", "bar").NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo", "bar"}, svc.Args)
},
},
{
name: "can register a service with manual variadic arg (slice-style)",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcVariadicArgs, []string{"foo", "bar"}).NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo", "bar"}, svc.Args)
},
},
{
name: "can register a service with manual interface variadic arg (variadic-style)",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcIfaceVariadicArgs, new(TestIfaceImpl), new(TestIfaceImpl)).NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{new(TestIfaceImpl), new(TestIfaceImpl)}, svc.Args)
},
},
{
name: "can register a service with manual interface variadic arg (slice-style)",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcIfaceVariadicArgs, []TestIface{new(TestIfaceImpl), new(TestIfaceImpl)}).NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{new(TestIfaceImpl), new(TestIfaceImpl)}, svc.Args)
},
},
{
name: "can register a service with manual label args",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcSliceArgs, di.SliceOf[string]("label")).NotAutowired(),
di.SvcVal("foo"),
di.SvcVal("bar").Labels("label"),
di.SvcVal("baz").Labels("label", "other"),
di.SvcVal("qux").Labels("other"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"bar", "baz"}, svc.Args)
},
},
{
name: "Ref arg selects service by reference",
build: func(b *di.Builder, refs *Refs) {
var fooRef di.SvcReference
b.Services(
di.SvcVal("foo").Bind(&fooRef),
di.Svc(NewTestSvcStrArg, di.Ref(&fooRef)).NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svc.Args)
},
},
{
name: "Ref arg selects service by reference (binding after arg)",
build: func(b *di.Builder, refs *Refs) {
var fooRef di.SvcReference
b.Services(
di.Svc(NewTestSvcStrArg, di.Ref(&fooRef)).NotAutowired(),
di.SvcVal("foo").Bind(&fooRef),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svc.Args)
},
},
{
name: `"Type[[]string]" arg selects "[]string" service over "string" services`,
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.SvcVal("loose-1"),
di.SvcVal("loose-2"),
di.SvcVal([]string{"slice-elem-1", "slice-elem-2"}),
di.Svc(NewTestSvcSliceArgs, di.Type[[]string]()).NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"slice-elem-1", "slice-elem-2"}, svc.Args)
},
},
{
name: `"SliceOf[string]" arg selects "string" services over "[]string" service`,
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.SvcVal("loose-1"),
di.SvcVal("loose-2"),
di.SvcVal([]string{"slice-elem-1", "slice-elem-2"}),
di.Svc(NewTestSvcSliceArgs, di.SliceOf[string]()).NotAutowired(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"loose-1", "loose-2"}, svc.Args)
},
},
// Manual args (no autowiring) - error cases
{
name: "cannot register a service with no args and manual args",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcNoArgs, "foo").NotAutowired(),
)
},
assertBuildErr: func(t *testing.T, err error) {
require.ErrorContains(t, err, "invalid definition of github.com/michalkurzeja/godi/v2_test.(*TestSvc): failed to add factory args: argument string cannot be slotted to function")
},
},
{
name: "cannot register a service with missing args",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg).NotAutowired(),
)
},
assertBuildErr: func(t *testing.T, err error) {
require.ErrorContains(t, err, "compilation failed: compiler pass (argument validation) returned an error: invalid service github.com/michalkurzeja/godi/v2_test.(*TestSvc): invalid factory github.com/michalkurzeja/godi/v2_test.NewTestSvcStrArg: argument 0 is not set")
},
},
{
name: "cannot register a service with empty interface arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcIfaceArg).NotAutowired(),
)
},
assertBuildErr: func(t *testing.T, err error) {
require.ErrorContains(t, err, "compilation failed: compiler pass (argument validation) returned an error: invalid service github.com/michalkurzeja/godi/v2_test.(*TestSvc): invalid factory github.com/michalkurzeja/godi/v2_test.NewTestSvcIfaceArg: argument 0 is not set")
},
},
{
name: "cannot register a service with empty slice arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcSliceArgs).NotAutowired(),
)
},
assertBuildErr: func(t *testing.T, err error) {
require.ErrorContains(t, err, "compilation failed: compiler pass (argument validation) returned an error: invalid service github.com/michalkurzeja/godi/v2_test.(*TestSvc): invalid factory github.com/michalkurzeja/godi/v2_test.NewTestSvcSliceArgs: argument 0 is not set")
},
},
{
name: "cannot register a manual service with empty variadic arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcVariadicArgs).NotAutowired(),
)
},
assertBuildErr: func(t *testing.T, err error) {
require.ErrorContains(t, err, "compilation failed: compiler pass (argument validation) returned an error: invalid service github.com/michalkurzeja/godi/v2_test.(*TestSvc): invalid factory github.com/michalkurzeja/godi/v2_test.NewTestSvcVariadicArgs: argument 0 is not set")
},
},
{
name: "cannot register a service with wrong type of arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg, 42).NotAutowired(),
)
},
assertBuildErr: func(t *testing.T, err error) {
require.ErrorContains(t, err, "invalid definition of github.com/michalkurzeja/godi/v2_test.(*TestSvc): failed to add factory args: argument int cannot be slotted to function")
},
},
{
name: "cannot register a service with wrong type of interface arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcIfaceArg, 42).NotAutowired(),
)
},
assertBuildErr: func(t *testing.T, err error) {
require.ErrorContains(t, err, "invalid definition of github.com/michalkurzeja/godi/v2_test.(*TestSvc): failed to add factory args: argument int cannot be slotted to function")
},
},
// Child services
{
name: "can register a child service, which can only be used as a dependency for the parent",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg).Children(
di.SvcVal("foo"),
),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svc.Args)
_, err = di.SvcByType[string](c) // This svc only exists in the child scope!
require.ErrorContains(t, err, "service of type string not found")
},
},
{
name: "can use both children and siblings as dependencies",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.SvcVal("bar"),
di.Svc(NewTestSvcVariadicArgs).Children(
di.SvcVal("foo"),
),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo", "bar"}, svc.Args)
},
},
{
name: "sibling service can be accessed by Ref arg",
build: func(b *di.Builder, refs *Refs) {
var barRef di.SvcReference
b.Services(
di.SvcVal("bar").Bind(&barRef),
di.Svc(NewTestSvcStrArg, di.Ref(&barRef)).Children(
di.SvcVal("foo"),
),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"bar"}, svc.Args)
},
},
{
name: "child service can be accessed by Ref arg",
build: func(b *di.Builder, refs *Refs) {
var fooRef di.SvcReference
b.Services(
di.SvcVal("bar"),
di.Svc(NewTestSvcStrArg, di.Ref(&fooRef)).Children(
di.SvcVal("foo").Bind(&fooRef),
),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svc.Args)
},
},
{
name: "sibling service can be accessed by Type arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.SvcVal("bar").Labels("sibling"),
di.Svc(NewTestSvcStrArg, di.Type[string]("sibling")).Children(
di.SvcVal("foo"),
),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"bar"}, svc.Args)
},
},
{
name: "child service can access services from the outer scopes",
build: func(b *di.Builder, refs *Refs) {
var (
foo di.SvcReference
child di.SvcReference
)
b.Services(
di.Svc(Echo[string], di.Ref(&child)).
Bind(refs.Svc.New("svc")).
Children(
di.Svc(Echo[string], di.Ref(&foo)).Bind(&child),
),
di.SvcVal(Echo("foo")).Bind(&foo),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
got, err := di.SvcByRef[string](c, refs.Svc.Get(t, "svc"))
require.NoError(t, err)
require.Equal(t, "foo", got)
},
},
// Methods
{
name: "can register method calls",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewAppendableEcho[string]).
MethodCall((*AppendableEcho[string]).Append, "foo").
MethodCall((*AppendableEcho[string]).AppendVariadic, "bar", "baz"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*AppendableEcho[string]](c)
require.NoError(t, err)
require.Equal(t, []string{"foo", "bar", "baz"}, svc.Echo())
},
},
{
name: "duplicated method call replaces the previous one",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewAppendableEcho[string]).
MethodCall((*AppendableEcho[string]).Append, "foo").
MethodCall((*AppendableEcho[string]).Append, "bar", "baz"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*AppendableEcho[string]](c)
require.NoError(t, err)
require.Equal(t, []string{"bar", "baz"}, svc.Echo())
},
},
{
name: "can register method calls with refs",
build: func(b *di.Builder, refs *Refs) {
var fooRef di.SvcReference
b.Services(
di.Svc(NewAppendableEcho[string]).
MethodCall((*AppendableEcho[string]).Append, di.Ref(&fooRef)),
di.SvcVal("foo").Bind(&fooRef),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*AppendableEcho[string]](c)
require.NoError(t, err)
require.Equal(t, []string{"foo"}, svc.Echo())
},
},
{
name: "can register method calls with Type arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewAppendableEcho[string]).
MethodCall((*AppendableEcho[string]).Append, di.Type[[]string]()),
di.SvcVal([]string{"foo", "bar"}),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*AppendableEcho[string]](c)
require.NoError(t, err)
require.Equal(t, []string{"foo", "bar"}, svc.Echo())
},
},
{
name: "can register method calls with SliceOf arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewAppendableEcho[string]).
MethodCall((*AppendableEcho[string]).Append, di.SliceOf[string]()),
di.SvcVal("foo"),
di.SvcVal("bar"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*AppendableEcho[string]](c)
require.NoError(t, err)
require.Equal(t, []string{"foo", "bar"}, svc.Echo())
},
},
{
name: "can register method calls with label arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewAppendableEcho[string]).
MethodCall((*AppendableEcho[string]).Append, di.SliceOf[string]("label")),
di.SvcVal("foo"),
di.SvcVal("bar").Labels("label"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*AppendableEcho[string]](c)
require.NoError(t, err)
require.Equal(t, []string{"bar"}, svc.Echo())
},
},
// Shared
{
name: "shared service is only instantiated once",
build: func(b *di.Builder, refs *Refs) {
var counter int
b.Services(
di.Svc(Increment, &counter).
Bind(refs.Svc.New("incr")).
Shared(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
incr1, err := di.SvcByRef[int](c, refs.Svc.Get(t, "incr"))
require.NoError(t, err)
require.Equal(t, 1, incr1)
incr2, err := di.SvcByRef[int](c, refs.Svc.Get(t, "incr"))
require.NoError(t, err)
require.Equal(t, 1, incr2)
},
},
{
name: "non-shared service is instantiated on every retrieval",
build: func(b *di.Builder, refs *Refs) {
var counter int
b.Services(
di.Svc(Increment, &counter).
Bind(refs.Svc.New("incr")).
NotShared(),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
incr1, err := di.SvcByRef[int](c, refs.Svc.Get(t, "incr"))
require.NoError(t, err)
require.Equal(t, 1, incr1)
incr2, err := di.SvcByRef[int](c, refs.Svc.Get(t, "incr"))
require.NoError(t, err)
require.Equal(t, 2, incr2)
},
},
// Funcs
{
name: "can register and call a function by ref",
build: func(b *di.Builder, refs *Refs) {
b.Functions(
di.Func(NewTestSvcNoArgs).Bind(refs.Func.New("foo")),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
got, err := di.ExecByRef(c, refs.Func.Get(t, "foo"))
require.NoError(t, err)
require.Len(t, got, 1)
require.IsType(t, new(TestSvc), got[0])
},
},
{
name: "can register and call a function by label",
build: func(b *di.Builder, refs *Refs) {
b.Functions(
di.Func(NewTestSvcNoArgs).Labels("my-label"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
got, err := di.ExecByLabel(c, "my-label")
require.NoError(t, err)
require.Len(t, got, 1)
require.IsType(t, new(TestSvc), got[0])
},
},
{
name: "can register and call a function by type",
build: func(b *di.Builder, refs *Refs) {
b.Functions(
di.Func(NewTestSvcNoArgs),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
got, err := di.ExecByType[func() *TestSvc](c)
require.NoError(t, err)
require.Len(t, got, 1)
require.IsType(t, new(TestSvc), got[0])
},
},
{
name: "returns an error when executing a function that doesn't exist",
assert: func(t *testing.T, c di.Container, refs *Refs) {
_, err := di.ExecByType[func() *TestSvc](c)
require.ErrorContains(t, err, "function of type func() *di_test.TestSvc not found")
},
},
// Autowiring
{
name: "can autowire a service with a single arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcStrArg),
di.SvcVal("foo"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo"}, svc.Args)
},
},
{
name: "can autowire a service with a slice arg",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcSliceArgs),
di.SvcVal("foo"),
di.SvcVal("bar"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo", "bar"}, svc.Args)
},
},
{
name: "can autowire a service with a variadic args list",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcVariadicArgs),
di.SvcVal("foo"),
di.SvcVal("bar"),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo", "bar"}, svc.Args)
},
},
{
name: "autowiring picks exact type match for slices (slice arg)",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcSliceArgs),
di.SvcVal("foo"),
di.SvcVal("bar"),
di.SvcVal([]string{"slice-elem-1", "slice-elem-2"}),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"slice-elem-1", "slice-elem-2"}, svc.Args)
},
},
{
name: "autowiring picks exact type match for slices (variadic arg)",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcVariadicArgs),
di.SvcVal("foo"),
di.SvcVal("bar"),
di.SvcVal([]string{"slice-elem-1", "slice-elem-2"}),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"slice-elem-1", "slice-elem-2"}, svc.Args)
},
},
{
name: "autowires only missing args",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(func(a, b string, i int, f float64) *TestSvc { return &TestSvc{Args: []any{a, b, i, f}} }, "foo", 4.2),
di.SvcVal("bar"),
di.SvcVal(42),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{"foo", "bar", 42, 4.2}, svc.Args)
},
},
// Interface binding
{
name: "can bind an interface to a concrete type",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcIfaceArg),
di.SvcVal(new(TestIfaceImpl)),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{new(TestIfaceImpl)}, svc.Args)
},
},
{
name: "can bind a slice of interface to multiple implementations",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcIfaceSliceArgs),
di.SvcVal(new(TestIfaceImpl)),
di.SvcVal(new(TestIfaceImpl)),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{new(TestIfaceImpl), new(TestIfaceImpl)}, svc.Args)
},
},
{
name: "can bind a variadic list of interface to multiple implementations",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcIfaceVariadicArgs),
di.SvcVal(new(TestIfaceImpl)),
di.SvcVal(new(TestIfaceImpl)),
)
},
assert: func(t *testing.T, c di.Container, refs *Refs) {
svc, err := di.SvcByType[*TestSvc](c)
require.NoError(t, err)
require.Equal(t, []any{new(TestIfaceImpl), new(TestIfaceImpl)}, svc.Args)
},
},
{
name: "returns a build error when multiple implementations of an interface are available",
build: func(b *di.Builder, refs *Refs) {
b.Services(
di.Svc(NewTestSvcIfaceArg),
di.SvcVal(new(TestIfaceImpl)),
di.SvcVal(new(TestIfaceImpl)),
)
},
assertBuildErr: func(t *testing.T, err error) {
require.ErrorContains(t, err, `could not bind argument 0 of service github.com/michalkurzeja/godi/v2_test.(*TestSvc): multiple implementations of interface github.com/michalkurzeja/godi/v2_test.TestIface found: [github.com/michalkurzeja/godi/v2_test.(*TestIfaceImpl) github.com/michalkurzeja/godi/v2_test.(*TestIfaceImpl)]`)
},