-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMockGeneratorTests.cs
More file actions
1405 lines (1194 loc) · 39.3 KB
/
Copy pathMockGeneratorTests.cs
File metadata and controls
1405 lines (1194 loc) · 39.3 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
using System.Linq;
using System.Net.Http;
using System.Text.RegularExpressions;
using Microsoft.CodeAnalysis;
namespace Mockolate.SourceGenerators.Tests;
public partial class MockGeneratorTests
{
[Fact]
public async Task SameMethodDifferingOnlyByNullability_ShouldUseExplicitImplementationForConflictingInterface()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
#nullable enable
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = IInterface1.CreateMock().Implementing<IInterface2>();
}
}
public interface IInterface1
{
void Method(string? value);
}
public interface IInterface2
{
void Method(string value);
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.IInterface1__IInterface2.g.cs");
await That(result.Sources["Mock.IInterface1__IInterface2.g.cs"])
.Contains("public void Method(string? value)").And
.Contains("void global::MyCode.IInterface2.Method(string value)");
}
[Fact]
public async Task SealedClass_ShouldNotBeIncluded()
{
GeneratorResult result = Generator
.Run("""
using System;
using System.Threading;
using System.Threading.Tasks;
using Mockolate;
namespace MyCode
{
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock();
}
}
public sealed class MyService { }
}
""");
await ThatAll(
That(result.Sources.Keys).DoesNotContain("Mock.MyService.g.cs"),
That(result.Diagnostics).IsEmpty()
);
}
[Fact]
public async Task WhenClassHasConstructorWithParameters_ShouldGenerateTypedCreateMockOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock(42);
}
}
public class MyService
{
public MyService(int value) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("public static global::MyCode.MyService CreateMock(int value)")
.IgnoringNewlineStyle().And
.Contains("=> CreateMock(null, null, new object?[] { value });")
.IgnoringNewlineStyle().And
.Contains("public static global::MyCode.MyService CreateMock(global::Mockolate.MockBehavior mockBehavior, int value)")
.IgnoringNewlineStyle().And
.Contains("public static global::MyCode.MyService CreateMock(global::System.Action<global::Mockolate.Mock.IMockSetupForMyService> setup, int value)")
.IgnoringNewlineStyle().And
.Contains(
"public static global::MyCode.MyService CreateMock(global::Mockolate.MockBehavior mockBehavior, global::System.Action<global::Mockolate.Mock.IMockSetupForMyService> setup, int value)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenClassHasMultipleConstructors_ShouldGenerateTypedOverloadPerConstructor()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock("foo");
_ = MyService.CreateMock(1, "foo");
}
}
public class MyService
{
public MyService(string text) { }
public MyService(int number, string text) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("public static global::MyCode.MyService CreateMock(string text)")
.IgnoringNewlineStyle().And
.Contains("public static global::MyCode.MyService CreateMock(int number, string text)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenClassHasOnlyParameterlessConstructor_ShouldNotEmitAdditionalTypedOverloads()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock();
}
}
public class MyService { }
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("public static global::MyCode.MyService CreateMock()")
.IgnoringNewlineStyle()
.Because(
"the hand-written parameterless CreateMock() overload is still emitted, and no typed overload is added beyond it");
}
[Fact]
public async Task WhenConstructorHasCharDefault_ShouldEscapeInTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock();
}
}
public class MyService
{
public MyService(char c = '\n') { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("CreateMock(char c = '\\n')")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenConstructorHasDecimalDefault_ShouldAppendMSuffixInTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock();
}
}
public class MyService
{
public MyService(decimal price = 19.95m) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("CreateMock(decimal price = 19.95m)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenConstructorHasEnumDefault_ShouldCastToFullyQualifiedEnumTypeInTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public enum MyKind { Alpha, Beta }
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock();
}
}
public class MyService
{
public MyService(MyKind kind = MyKind.Beta) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("CreateMock(global::MyCode.MyKind kind = (global::MyCode.MyKind)1)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenConstructorHasFloatDefault_ShouldAppendFSuffixInTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock();
}
}
public class MyService
{
public MyService(float factor = 3.14f) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("CreateMock(float factor = 3.14f)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenConstructorHasInParameter_ShouldNotEmitTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
int value = 42;
_ = MyService.CreateMock([value]);
}
}
public class MyService
{
public MyService(in int value) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.DoesNotContain("CreateMock(in int value)")
.IgnoringNewlineStyle().And
.DoesNotContain("CreateMock(int value)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenConstructorHasLongAndDoubleDefaults_ShouldPreserveLiteralsInTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock();
}
}
public class MyService
{
public MyService(long big = 9999999999L, double pi = 3.14) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("CreateMock(long big = 9999999999, double pi = 3.14)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenConstructorHasNullableDecimalDefault_ShouldAppendMSuffixInTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
#nullable enable
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock();
}
}
public class MyService
{
public MyService(decimal? price = 19.95m) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("CreateMock(decimal? price = 19.95m)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenConstructorHasNullableReferenceDefaultNull_ShouldEmitNullLiteralInTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
#nullable enable
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock();
}
}
public class MyService
{
public MyService(string? text = null) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("CreateMock(string? text = null)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenConstructorHasRefOrParamsParameter_ShouldNotEmitTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock([1, 2, 3]);
}
}
public class MyService
{
public MyService(params int[] values) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.DoesNotContain("public static global::MyCode.MyService CreateMock(int[] values)")
.IgnoringNewlineStyle().And
.DoesNotContain("public static global::MyCode.MyService CreateMock(params int[] values)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenConstructorHasStringDefaultWithQuotes_ShouldEscapeInTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock();
}
}
public class MyService
{
public MyService(string text = "has \"quotes\"") { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("CreateMock(string text = \"has \\\"quotes\\\"\")")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenConstructorHasValueTypeDefaultNull_ShouldEmitDefaultInTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public struct MyToken { public int Value; }
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock();
}
}
public class MyService
{
public MyService(MyToken token = default) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("CreateMock(global::MyCode.MyToken token = default)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenConstructorParameterIsMockBehavior_ShouldNotEmitAmbiguousTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock(Mockolate.MockBehavior.Default);
}
}
public class MyService
{
public MyService(Mockolate.MockBehavior behavior) { }
}
""");
await That(result.Diagnostics).IsEmpty();
int matches = CreateMockBehaviorSignatureRegex().Count(result.Sources["Mock.MyService.g.cs"]);
await That(matches).IsEqualTo(1)
.Because(
"the hand-written CreateMock(MockBehavior) overload already covers this signature, so a typed single-parameter overload would produce a duplicate definition");
}
[Fact]
public async Task WhenConstructorParameterIsUnrelatedAction_ShouldEmitTypedOverload()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
using System;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
Action<string> callback = s => { };
_ = MyService.CreateMock(callback);
}
}
public class MyService
{
public MyService(Action<string> callback) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("CreateMock(global::System.Action<string> callback)")
.IgnoringNewlineStyle()
.Because(
"Action<string> does not collide with the setup action type (Action<IMockSetupForMyService>)");
}
[Fact]
public async Task WhenConstructorsDifferOnlyByNullableValueType_ShouldEmitBothTypedOverloads()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
#nullable enable
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock(1);
_ = MyService.CreateMock((int?)1);
}
}
public class MyService
{
public MyService(int value) { }
public MyService(int? value) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService.g.cs");
await That(result.Sources["Mock.MyService.g.cs"])
.Contains("public static global::MyCode.MyService CreateMock(int value)")
.IgnoringNewlineStyle().And
.Contains("public static global::MyCode.MyService CreateMock(int? value)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenDerivedClassHasBaseClassConstructorParameters_ShouldEmitTypedOverloadForDerived()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = DerivedService.CreateMock("foo");
}
}
public class BaseService
{
public BaseService(string text) { }
}
public class DerivedService : BaseService
{
public DerivedService(string text) : base(text) { }
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.DerivedService.g.cs");
await That(result.Sources["Mock.DerivedService.g.cs"])
.Contains("public static global::MyCode.DerivedService CreateMock(string text)")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenGenericClassHasTypedConstructor_ShouldEmitTypedOverloadForClosedType()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService<string>.CreateMock("foo");
}
}
public class MyService<T>
{
public MyService(T value) { }
}
""");
await That(result.Diagnostics).IsEmpty();
string generated = string.Concat(result.Sources.Values);
await That(generated)
.Contains("CreateMock(string value)")
.IgnoringNewlineStyle()
.Because(
"the mock for the closed generic MyService<string> must carry the typed overload with the substituted type argument");
}
[Fact]
public async Task WhenImplementingAdditionalClass_ShouldCreateCombinationMock()
{
GeneratorResult result = Generator
.Run("""
using System;
using System.Threading;
using System.Threading.Tasks;
using Mockolate;
namespace MyCode
{
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock()
.Implementing<IMyInterface1>()
.Implementing<IMyInterface2>();
}
}
public interface IMyInterface1 { }
public class MyService { }
public interface IMyInterface2 { }
}
""");
await That(result.Sources.Keys).IsEqualTo([
"Mock.g.cs",
"Mock.AsExtensions.g.cs",
"MockBehaviorExtensions.g.cs",
"Mock.IMyInterface1.g.cs",
"Mock.IMyInterface2.g.cs",
"Mock.MyService.g.cs",
"Mock.MyService__IMyInterface1.g.cs",
"Mock.MyService__IMyInterface1__IMyInterface2.g.cs",
]).InAnyOrder();
}
[Fact]
public async Task WhenImplementingAdditionalInterface_WithBaseClassHavingOptionalConstructorParameter_ShouldGenerateTryCastWithDefaultValue()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock().Implementing<IMyInterface>();
}
}
public class MyService
{
public MyService(int value = 0) { }
}
public interface IMyInterface
{
void DoWork();
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService__IMyInterface.g.cs");
await That(result.Sources["Mock.MyService__IMyInterface.g.cs"])
.Contains("static bool TryCastWithDefaultValue<TValue>(object?[] values, int index, TValue defaultValue, global::Mockolate.MockBehavior behavior, out TValue result)")
.IgnoringNewlineStyle().And
.Contains("mock.MockRegistry.ConstructorParameters.Length >= 0 && mock.MockRegistry.ConstructorParameters.Length <= 1")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenImplementingAdditionalInterface_WithBaseClassHavingRequiredConstructorParameter_ShouldGenerateTryCast()
{
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock([42]).Implementing<IMyInterface>();
}
}
public class MyService
{
public MyService(int value) { }
}
public interface IMyInterface
{
void DoWork();
}
""");
await That(result.Diagnostics).IsEmpty();
await That(result.Sources).ContainsKey("Mock.MyService__IMyInterface.g.cs");
await That(result.Sources["Mock.MyService__IMyInterface.g.cs"])
.Contains("static bool TryCast<TValue>(object?[] values, int index, global::Mockolate.MockBehavior behavior, out TValue result)")
.IgnoringNewlineStyle().And
.Contains("No parameterless constructor found for 'MyCode.MyService'")
.IgnoringNewlineStyle().And
.Contains("mock.MockRegistry.ConstructorParameters.Length == 1")
.IgnoringNewlineStyle().And
.DoesNotContain("TryCastWithDefaultValue")
.IgnoringNewlineStyle();
}
[Fact]
public async Task WhenMethodContainsMoreThan16Parameters_ShouldAddCustomAction()
{
GeneratorResult result = Generator
.Run("""
using System;
using System.Threading;
using System.Threading.Tasks;
using Mockolate;
namespace MyCode
{
public class Program
{
public static void Main(string[] args)
{
_ = IMyInterface.CreateMock();
}
}
public interface IMyInterface
{
void MyMethod(int v1, int v2, int v3, int v4, int v5, int v6, int v7, int v8, int v9, int v10, int v11, int v12, int v13, int v14, int v15, int v16, int v17);
}
}
""", typeof(DateTime), typeof(Task));
await That(result.Sources).ContainsKey("ActionFunc.g.cs");
await That(result.Sources["ActionFunc.g.cs"])
.Contains(
"public delegate void Action<in T1, in T2, in T3, in T4, in T5, in T6, in T7, in T8, in T9, in T10, in T11, in T12, in T13, in T14, in T15, in T16, in T17>(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, T16 arg16, T17 arg17);")
.And
.Contains(
"public delegate TResult Func<in T1, in T2, in T3, in T4, in T5, in T6, in T7, in T8, in T9, in T10, in T11, in T12, in T13, in T14, in T15, in T16, in T17, out TResult>(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, T16 arg16, T17 arg17);");
}
[Fact]
public async Task WhenNamesConflict_ShouldBeDistinguishable()
{
GeneratorResult result = Generator
.Run("""
using System;
using System.Threading;
using System.Threading.Tasks;
using Mockolate;
namespace MyCode
{
public class Program
{
public static void Main(string[] args)
{
_ = IMyInt.CreateMock();
_ = I.MyInt.CreateMock();
_ = IMy<int>.CreateMock();
}
}
public interface IMyInt { }
public class I
{
public interface MyInt { }
}
public interface IMy<T> { }
}
""");
await ThatAll(
That(result.Sources.Keys).Contains([
"Mock.IMyInt.g.cs",
"Mock.I_MyInt.g.cs",
"Mock.IMy_int.g.cs",
]).InAnyOrder().IgnoringCase(),
That(result.Diagnostics).IsEmpty()
);
}
[Fact]
public async Task WhenNamesConflictForAdditionalClasses_ShouldBeDistinguishable()
{
GeneratorResult result = Generator
.Run("""
using System;
using System.Threading;
using System.Threading.Tasks;
using Mockolate;
namespace MyCode
{
public class Program
{
public static void Main(string[] args)
{
_ = I.CreateMock()
.Implementing<IMyInt>()
.Implementing<I.MyInt>()
.Implementing<IMy<int>>();
}
}
public interface IMyInt { }
public class I
{
public interface MyInt { }
}
public interface IMy<T> { }
}
""", typeof(HttpResponseMessage));
await ThatAll(
That(result.Sources.Keys).Contains([
"Mock.I.g.cs",
"Mock.IMyInt.g.cs",
"Mock.I_MyInt.g.cs",
"Mock.IMy_int.g.cs",
"Mock.I__IMyInt__I_MyInt__IMy_int.g.cs",
"Mock.I__IMyInt__I_MyInt.g.cs",
"Mock.I__IMyInt.g.cs",
]).InAnyOrder().IgnoringCase()
);
}
[Fact]
public async Task WhenNamesConflictForAdditionalClassesInDifferentNamespaces_ShouldBeDistinguishable()
{
GeneratorResult result = Generator
.Run("""
using System;
using System.Threading;
using System.Threading.Tasks;
using Mockolate;
namespace MyCode
{
public class Program
{
public static void Main(string[] args)
{
_ = IMyService.CreateMock()
.Implementing<MyCode.IMyInt>();
_ = IMyService.CreateMock()
.Implementing<OtherNamespace.IMyInt>();
}
}
public interface IMyInt { }
public interface IMyService { }
}
namespace OtherNamespace
{
public interface IMyInt { }
}
""", typeof(HttpResponseMessage));
await ThatAll(
That(result.Sources.Keys).Contains([
"Mock.IMyService.g.cs",
"Mock.IMyInt.g.cs",
"Mock.IMyInt_1.g.cs",
"Mock.IMyService__IMyInt.g.cs",
"Mock.IMyService__IMyInt_1.g.cs",
]).InAnyOrder(),
That(result.Sources["Mock.IMyService__IMyInt.g.cs"])
.Contains("global::MyCode.IMyInt, IMockForIMyInt, IMockSetupForIMyInt, IMockVerifyForIMyInt,"),
That(result.Sources["Mock.IMyService__IMyInt_1.g.cs"])
.Contains("global::OtherNamespace.IMyInt, IMockForIMyInt_1, IMockSetupForIMyInt_1, IMockVerifyForIMyInt_1,"),
That(result.Diagnostics).IsEmpty()
);
}
[Fact]
public async Task WhenOneCtorStartsWithMockBehaviorAndAnotherOmitsIt_ShouldNotEmitDuplicateTypedOverloads()
{
// Two constructors that could produce the same C# signature after the generator's
// mockBehavior-prefixed overload expansion:
// - ctor A: (MockBehavior, int) → typed overload: CreateMock(MockBehavior, int)
// - ctor B: (int) + mockBehavior → typed overload: CreateMock(MockBehavior, int)
// The dedup key is built in emitted-signature order (prefix first, then ctor params), so
// the second emission must be skipped to avoid a duplicate method definition.
GeneratorResult result = Generator
.Run("""
using Mockolate;
namespace MyCode;
public class Program
{
public static void Main(string[] args)
{
_ = MyService.CreateMock(MockBehavior.Default, 42);