-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathCSharpFileBuilderTests.cs
3081 lines (2745 loc) · 113 KB
/
CSharpFileBuilderTests.cs
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable disable
using System.Runtime.CompilerServices;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.DotNet.ApiSymbolExtensions;
using Microsoft.DotNet.ApiSymbolExtensions.Filtering;
using Microsoft.DotNet.ApiSymbolExtensions.Logging;
using Moq;
namespace Microsoft.DotNet.GenAPI.Tests
{
public class CSharpFileBuilderTests
{
class AllowAllFilter : ISymbolFilter
{
public bool Include(ISymbol symbol) => true;
}
private static MetadataReference[] MetadataReferences { get; } = new[] { MetadataReference.CreateFromFile(typeof(object).Assembly!.Location!) };
private static SyntaxTree GetSyntaxTree(string syntax) =>
CSharpSyntaxTree.ParseText(syntax);
private void RunTest(string original,
string expected,
bool includeInternalSymbols = true,
bool includeEffectivelyPrivateSymbols = true,
bool includeExplicitInterfaceImplementationSymbols = true,
bool allowUnsafe = false,
string[] excludedAttributeList = null,
[CallerMemberName] string assemblyName = "",
// Empty string is considered a valid header, null causes to use the default CSharpFileBuilder header
string header = "")
{
using StringWriter stringWriter = new();
Mock<ILog> log = new();
(IAssemblySymbolLoader loader, Dictionary<string, IAssemblySymbol> assemblySymbols) = TestAssemblyLoaderFactory
.CreateFromTexts(log.Object, assemblyTexts: [(assemblyName, original)], respectInternals: includeInternalSymbols, allowUnsafe: allowUnsafe);
ISymbolFilter symbolFilter = SymbolFilterFactory.GetFilterFromList([], null, includeInternalSymbols, includeEffectivelyPrivateSymbols, includeExplicitInterfaceImplementationSymbols);
ISymbolFilter attributeDataSymbolFilter = SymbolFilterFactory.GetFilterFromList(excludedAttributeList, null, includeInternalSymbols, includeEffectivelyPrivateSymbols, includeExplicitInterfaceImplementationSymbols);
IAssemblySymbolWriter csharpFileBuilder = new CSharpFileBuilder(
log.Object,
stringWriter,
loader,
symbolFilter,
attributeDataSymbolFilter,
header: header,
exceptionMessage: null,
includeAssemblyAttributes: false,
MetadataReferences,
addPartialModifier: true);
csharpFileBuilder.WriteAssembly(assemblySymbols.First().Value);
StringBuilder stringBuilder = stringWriter.GetStringBuilder();
string resultedString = stringBuilder.ToString();
stringBuilder.Remove(0, stringBuilder.Length);
SyntaxTree resultedSyntaxTree = GetSyntaxTree(resultedString);
SyntaxTree expectedSyntaxTree = GetSyntaxTree(expected);
// compare SyntaxTree and not string representation
Assert.True(resultedSyntaxTree.IsEquivalentTo(expectedSyntaxTree),
$"Expected:\n{expected}\nResulted:\n{resultedString}");
}
[Fact]
public void TestDefaultHeader()
{
RunTest(original: """
namespace A
{
namespace B {}
namespace C.D { public struct Bar {} }
}
""",
expected: $@"
{CSharpFileBuilder.DefaultFileHeader}
namespace A.C.D {{ public partial struct Bar {{}} }}
",
header: null);
}
[Fact]
public void TestCustomHeader()
{
string customHeader = """
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
""";
RunTest(original: """
namespace A
{
namespace B {}
namespace C.D { public struct Bar {} }
}
""",
expected: $@"
{customHeader}
namespace A.C.D {{ public partial struct Bar {{}} }}
",
header: customHeader);
}
[Fact]
public void TestNamespaceDeclaration()
{
RunTest(original: """
namespace A
{
namespace B {}
namespace C.D { public struct Bar {} }
}
""",
expected: """
namespace A.C.D { public partial struct Bar {} }
""");
}
[Fact]
public void TestClassDeclaration()
{
RunTest(original: """
namespace Foo
{
public class PublicClass { }
class InternalClass { }
public sealed class PublicSealedClass { }
public partial class ProtectedPartialClass { }
}
""",
expected: """
namespace Foo
{
internal partial class InternalClass { }
/// `partial` keyword is not added!
public partial class ProtectedPartialClass { }
public partial class PublicClass { }
public sealed partial class PublicSealedClass { }
}
""");
}
[Fact]
public void TestStructDeclaration()
{
RunTest(original: """
namespace Foo
{
public struct PublicStruct { }
struct InternalStruct { }
readonly struct ReadonlyStruct { }
public readonly struct PublicReadonlyStruct { }
record struct RecordStruct { }
readonly record struct ReadonlyRecordStruct { }
public ref struct PublicRefStruct { }
public readonly ref struct PublicReadonlyRefStruct { }
}
""",
// It's expected that record structs are expanded - they're effectively syntactic sugar that is not persisted in metadata
expected: """
namespace Foo
{
internal partial struct InternalStruct
{
}
public readonly ref partial struct PublicReadonlyRefStruct
{
}
public readonly partial struct PublicReadonlyStruct
{
}
public ref partial struct PublicRefStruct
{
}
public partial struct PublicStruct
{
}
internal readonly partial struct ReadonlyRecordStruct : System.IEquatable<ReadonlyRecordStruct>
{
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly bool Equals(ReadonlyRecordStruct other) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly bool Equals(object obj) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly int GetHashCode() { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator ==(ReadonlyRecordStruct left, ReadonlyRecordStruct right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator !=(ReadonlyRecordStruct left, ReadonlyRecordStruct right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly string ToString() { throw null; }
}
internal readonly partial struct ReadonlyStruct
{
}
internal partial struct RecordStruct : System.IEquatable<RecordStruct>
{
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly bool Equals(RecordStruct other) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly bool Equals(object obj) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly int GetHashCode() { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator ==(RecordStruct left, RecordStruct right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator !=(RecordStruct left, RecordStruct right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly string ToString() { throw null; }
}
}
""");
}
[Fact]
public void TestRecordDeclaration()
{
RunTest(original: """
namespace Foo
{
public record RecordClass;
public record RecordClass1(int i);
public record RecordClass2(string s, int i);
public record DerivedRecord(string s, int i, double d) : RecordClass2(s, i);
public record DerivedRecord2(string x, int i, double d) : RecordClass2(default(string)!, i);
public record DerivedRecord3(string x, int i, double d) : RecordClass2(default(string)!, i);
public record DerivedRecord4(double d) : RecordClass2(default(string)!, default);
public record DerivedRecord5() : RecordClass2(default(string)!, default);
public record RecordClassWithMethods(int i)
{
public void DoSomething() { }
public static void DoSomethingStatic() { }
}
public record RecordClassWithProperties(int i)
{
public int AddI { get; set; }
public int AddIinit { get; init; }
public int AddIro { get; }
}
public record RecordClassWithConstructors(int i)
{
public RecordClassWithConstructors() : this(1) { }
public RecordClassWithConstructors(string s) : this(int.Parse(s)) { }
}
public record RecordWithPrivateDefaultConstructor
{
private RecordWithPrivateDefaultConstructor() { }
}
public sealed record SealedRecordWithPrivateDefaultConstructor
{
private SealedRecordWithPrivateDefaultConstructor() { }
}
}
""",
expected: """
namespace Foo
{
public partial record DerivedRecord(string s, int i, double d) : RecordClass2(default!, default)
{
}
public partial record DerivedRecord2(string x, int i, double d) : RecordClass2(default!, default)
{
}
public partial record DerivedRecord3(string x, int i, double d) : RecordClass2(default!, default)
{
}
public partial record DerivedRecord4(double d) : RecordClass2(default!, default)
{
}
public partial record DerivedRecord5() : RecordClass2(default!, default)
{
}
public partial record RecordClass()
{
}
public partial record RecordClass1(int i)
{
}
public partial record RecordClass2(string s, int i)
{
}
public partial record RecordClassWithConstructors(int i)
{
public RecordClassWithConstructors() { }
public RecordClassWithConstructors(string s) { }
}
public partial record RecordClassWithMethods(int i)
{
public void DoSomething() { }
public static void DoSomethingStatic() { }
}
public partial record RecordClassWithProperties(int i)
{
public int AddI { get { throw null; } set { } }
public int AddIinit { get { throw null; } init { } }
public int AddIro { get { throw null; } }
}
public partial record RecordWithPrivateDefaultConstructor
{
private RecordWithPrivateDefaultConstructor() { }
}
public sealed partial record SealedRecordWithPrivateDefaultConstructor
{
private SealedRecordWithPrivateDefaultConstructor() { }
}
}
""");
}
[Fact]
public void TestRecordStructDeclaration()
{
RunTest(original: """
namespace Foo
{
public record struct RecordStruct;
public record struct RecordStruct1(int i);
public record struct RecordStruct2(string s, int i);
public record struct RecordStructWithMethods(int i)
{
public void DoSomething() { }
public static void DoSomethingStatic() { }
}
public record struct RecordStructWithProperties(int i)
{
public int AddI { get; set; }
public int AddIinit { get; init; }
public int AddIro { get; }
}
public record struct RecordStructWithConstructors(int i)
{
public RecordStructWithConstructors() : this(1) { }
public RecordStructWithConstructors(string s) : this(int.Parse(s)) { }
}
}
""",
expected: """
namespace Foo
{
public partial struct RecordStruct : System.IEquatable<RecordStruct>
{
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly bool Equals(RecordStruct other) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly bool Equals(object obj) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly int GetHashCode() { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator ==(RecordStruct left, RecordStruct right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator !=(RecordStruct left, RecordStruct right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly string ToString() { throw null; }
}
public partial struct RecordStruct1 : System.IEquatable<RecordStruct1>
{
private int _dummyPrimitive;
public RecordStruct1(int i) { }
public int i { get { throw null; } set { } }
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly void Deconstruct(out int i) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly bool Equals(RecordStruct1 other) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly bool Equals(object obj) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly int GetHashCode() { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator ==(RecordStruct1 left, RecordStruct1 right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator !=(RecordStruct1 left, RecordStruct1 right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly string ToString() { throw null; }
}
public partial struct RecordStruct2 : System.IEquatable<RecordStruct2>
{
private object _dummy;
private int _dummyPrimitive;
public RecordStruct2(string s, int i) { }
public int i { get { throw null; } set { } }
public string s { get { throw null; } set { } }
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly void Deconstruct(out string s, out int i) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly bool Equals(RecordStruct2 other) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly bool Equals(object obj) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly int GetHashCode() { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator ==(RecordStruct2 left, RecordStruct2 right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator !=(RecordStruct2 left, RecordStruct2 right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly string ToString() { throw null; }
}
public partial struct RecordStructWithConstructors : System.IEquatable<RecordStructWithConstructors>
{
private int _dummyPrimitive;
public RecordStructWithConstructors() { }
public RecordStructWithConstructors(int i) { }
public RecordStructWithConstructors(string s) { }
public int i { get { throw null; } set { } }
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly void Deconstruct(out int i) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly bool Equals(RecordStructWithConstructors other) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly bool Equals(object obj) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly int GetHashCode() { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator ==(RecordStructWithConstructors left, RecordStructWithConstructors right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator !=(RecordStructWithConstructors left, RecordStructWithConstructors right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly string ToString() { throw null; }
}
public partial struct RecordStructWithMethods : System.IEquatable<RecordStructWithMethods>
{
private int _dummyPrimitive;
public RecordStructWithMethods(int i) { }
public int i { get { throw null; } set { } }
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly void Deconstruct(out int i) { throw null; }
public void DoSomething() { }
public static void DoSomethingStatic() { }
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly bool Equals(RecordStructWithMethods other) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly bool Equals(object obj) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly int GetHashCode() { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator ==(RecordStructWithMethods left, RecordStructWithMethods right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator !=(RecordStructWithMethods left, RecordStructWithMethods right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly string ToString() { throw null; }
}
public partial struct RecordStructWithProperties : System.IEquatable<RecordStructWithProperties>
{
private int _dummyPrimitive;
public RecordStructWithProperties(int i) { }
public int AddI { get { throw null; } set { } }
public int AddIinit { get { throw null; } init { } }
public int AddIro { get { throw null; } }
public int i { get { throw null; } set { } }
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly void Deconstruct(out int i) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public readonly bool Equals(RecordStructWithProperties other) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly bool Equals(object obj) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly int GetHashCode() { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator ==(RecordStructWithProperties left, RecordStructWithProperties right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public static bool operator !=(RecordStructWithProperties left, RecordStructWithProperties right) { throw null; }
[System.Runtime.CompilerServices.CompilerGenerated]
public override readonly string ToString() { throw null; }
}
}
""");
}
[Fact]
public void TestInterfaceGeneration()
{
RunTest(original: """
namespace Foo
{
public interface IPoint
{
// Property signatures:
int X { get; set; }
int Y { get; set; }
double CalculateDistance(IPoint p);
}
}
""",
expected: """
namespace Foo
{
public partial interface IPoint
{
// Property signatures:
int X { get; set; }
int Y { get; set; }
double CalculateDistance(IPoint p);
}
}
""");
}
[Fact]
public void TestEnumGeneration()
{
RunTest(original: """
namespace Foo
{
public enum Color
{
White = 0,
Green = 100,
Blue = 200
}
}
""",
expected: """
namespace Foo
{
public enum Color
{
White = 0,
Green = 100,
Blue = 200
}
}
""");
}
[Fact]
public void TestPropertyGeneration()
{
RunTest(original: """
namespace Foo
{
public class Car
{
public int? Drivers { get; }
public int Wheels { get => 4; }
public bool IsRunning { get; set; }
public bool Is4x4 { get => false; set { } }
}
}
""",
expected: """
namespace Foo
{
public partial class Car
{
public int? Drivers { get { throw null; } }
public bool Is4x4 { get { throw null; } set { } }
public bool IsRunning { get { throw null; } set { } }
public int Wheels { get { throw null; } }
}
}
""");
}
[Fact]
public void TestAbstractPropertyGeneration()
{
RunTest(original: """
namespace Foo
{
abstract class Car
{
abstract protected int? Wheels { get; }
abstract public bool IsRunning { get; set; }
}
}
""",
expected: """
namespace Foo
{
internal abstract partial class Car
{
public abstract bool IsRunning { get; set; }
protected abstract int? Wheels { get; }
}
}
""");
}
[Fact]
public void TestExplicitInterfaceImplementation()
{
RunTest(original: """
namespace Foo
{
public interface IControl
{
void Paint();
}
public interface ISurface
{
void Paint();
}
public class SampleClass : IControl, ISurface
{
public void Paint()
{
}
}
}
""",
expected: """
namespace Foo
{
public partial interface IControl
{
void Paint();
}
public partial interface ISurface
{
void Paint();
}
public partial class SampleClass : IControl, ISurface
{
public void Paint()
{
}
}
}
""");
}
[Fact]
public void TestPartiallySpecifiedGenericClassGeneration()
{
RunTest(original: """
namespace Foo
{
public class BaseNodeMultiple<T, U> { }
public class Node4<T> : BaseNodeMultiple<T, int> { }
public class Node5<T, U> : BaseNodeMultiple<T, U> { }
}
""",
expected: """
namespace Foo
{
public partial class BaseNodeMultiple <T, U> { }
public partial class Node4 <T> : BaseNodeMultiple<T, int> { }
public partial class Node5 <T, U> : BaseNodeMultiple<T, U> { }
}
""");
}
[Fact]
public void TestGenericClassWitConstraintsParameterGeneration()
{
RunTest(original: """
namespace Foo
{
public class SuperKeyType<K, V, U>
where U : System.IComparable<U>
where V : new()
{ }
}
""",
expected: """
namespace Foo
{
public partial class SuperKeyType <K, V, U> where V : new()
where U : System.IComparable<U>
{
}
}
""");
}
[Fact]
public void TestPublicMembersGeneration()
{
RunTest(original: """
namespace Foo
{
public enum Kind
{
None = 0,
Disable = 1
}
public readonly struct Options
{
public readonly bool BoolMember = true;
public readonly Kind KindMember = Kind.Disable;
public Options(Kind kindVal)
: this(kindVal, false)
{
}
public Options(Kind kindVal, bool boolVal)
{
BoolMember = boolVal;
KindMember = kindVal;
}
}
}
""",
expected: """
namespace Foo
{
public enum Kind
{
None = 0,
Disable = 1
}
public readonly partial struct Options
{
public readonly bool BoolMember;
public readonly Kind KindMember;
public Options(Kind kindVal, bool boolVal) { }
public Options(Kind kindVal) { }
}
}
""");
}
[Fact]
public void TestDelegateGeneration()
{
RunTest(original: """
namespace Foo
{
public delegate bool SyntaxReceiverCreator(int a, bool b);
}
""",
expected: """
namespace Foo
{
public delegate bool SyntaxReceiverCreator(int a, bool b);
}
""");
}
[Fact]
public void TestAbstractEventGeneration()
{
RunTest(original: """
namespace Foo
{
public abstract class AbstractEvents
{
public abstract event System.EventHandler<bool> TextChanged;
}
public class Events
{
public event System.EventHandler<string> OnNewMessage { add { } remove { } }
}
}
""",
expected: """
namespace Foo
{
public abstract partial class AbstractEvents
{
public abstract event System.EventHandler<bool> TextChanged;
}
public partial class Events
{
public event System.EventHandler<string> OnNewMessage { add { } remove { } }
}
}
""");
}
[Fact]
public void TestCustomAttributeGeneration()
{
RunTest(original: """
using System;
using System.Diagnostics;
namespace Foo
{
public enum Animal
{
Dog = 1,
Cat,
Bird,
}
public class AnimalTypeAttribute : Attribute
{
protected Animal thePet;
public AnimalTypeAttribute(Animal pet)
{
thePet = pet;
}
public Animal Pet
{
get { return thePet; }
set { thePet = value; }
}
}
[AnimalType(Animal.Cat)]
public class Creature
{
[AnimalType(Animal.Cat)]
[Conditional("DEBUG"), Conditional("TEST1")]
public void SayHello() { }
}
}
""",
expected: """
namespace Foo
{
public enum Animal
{
Dog = 1,
Cat = 2,
Bird = 3
}
public partial class AnimalTypeAttribute : System.Attribute
{
protected Animal thePet;
public AnimalTypeAttribute(Animal pet) { }
public Animal Pet { get { throw null; } set { } }
}
[AnimalType(Animal.Cat)]
public partial class Creature
{
[AnimalType(Animal.Cat)]
[System.Diagnostics.Conditional("DEBUG")]
[System.Diagnostics.Conditional("TEST1")]
public void SayHello() { }
}
}
""");
}
[Fact]
public void TestFullyQualifiedNamesForDefaultEnumParameters()
{
RunTest(original: """
namespace Foo
{
public enum Animal
{
Dog = 1,
Cat = 2,
Bird = 3
}
public class AnimalProperty {
public Animal _animal;
public AnimalProperty(Animal animal = Animal.Cat)
{
_animal = animal;
}
public int Execute(int p = 42) { return p; }
}
}
""",
expected: """
namespace Foo
{
public enum Animal
{
Dog = 1,
Cat = 2,
Bird = 3