-
Notifications
You must be signed in to change notification settings - Fork 468
/
ReviewUnusedParametersTests.cs
1360 lines (1159 loc) · 36 KB
/
ReviewUnusedParametersTests.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
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Testing;
using Microsoft.CodeAnalysis.Text;
using Test.Utilities;
using Xunit;
using VerifyCS = Test.Utilities.CSharpCodeFixVerifier<
Microsoft.CodeQuality.Analyzers.Maintainability.ReviewUnusedParametersAnalyzer,
Microsoft.CodeQuality.CSharp.Analyzers.Maintainability.CSharpReviewUnusedParametersFixer>;
using VerifyVB = Test.Utilities.VisualBasicCodeFixVerifier<
Microsoft.CodeQuality.Analyzers.Maintainability.ReviewUnusedParametersAnalyzer,
Microsoft.CodeQuality.VisualBasic.Analyzers.Maintainability.BasicReviewUnusedParametersFixer>;
namespace Microsoft.CodeQuality.Analyzers.Maintainability.UnitTests
{
public class ReviewUnusedParametersTests
{
#region Unit tests for no analyzer diagnostic
[Fact]
[WorkItem(459, "https://github.com/dotnet/roslyn-analyzers/issues/459")]
public async Task NoDiagnosticSimpleCasesTest()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
public class NeatCode
{
// Used parameter methods
public void UsedParameterMethod1(string use)
{
Console.WriteLine(this);
Console.WriteLine(use);
}
public void UsedParameterMethod2(string use)
{
UsedParameterMethod3(ref use);
}
public void UsedParameterMethod3(ref string use)
{
use = null;
}
}
");
await VerifyVB.VerifyAnalyzerAsync(@"
Imports System
Public Class NeatCode
' Used parameter methods
Public Sub UsedParameterMethod1(use As String)
Console.WriteLine(Me)
Console.WriteLine(use)
End Sub
Public Sub UsedParameterMethod2(use As String)
UsedParameterMethod3(use)
End Sub
Public Sub UsedParameterMethod3(ByRef use As String)
use = Nothing
End Sub
End Class
");
}
[Fact]
[WorkItem(459, "https://github.com/dotnet/roslyn-analyzers/issues/459")]
public async Task NoDiagnosticDelegateTest()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
public class NeatCode
{
// Used parameter methods
public void UsedParameterMethod1(Action a)
{
a();
}
public void UsedParameterMethod2(Action a1, Action a2)
{
try
{
a1();
}
catch(Exception)
{
a2();
}
}
}
");
await VerifyVB.VerifyAnalyzerAsync(@"
Imports System
Public Class NeatCode
' Used parameter methods
Public Sub UsedParameterMethod1(a As Action)
a()
End Sub
Public Sub UsedParameterMethod2(a1 As Action, a2 As Action)
Try
a1()
Catch generatedExceptionName As Exception
a2()
End Try
End Sub
End Class
");
}
[Fact]
[WorkItem(8884, "https://github.com/dotnet/roslyn/issues/8884")]
public async Task NoDiagnosticDelegateTest2_CSharp()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
public class NeatCode
{
// Used parameter methods
public void UsedParameterMethod1(Action a)
{
Action a2 = new Action(() =>
{
a();
});
}
}");
}
[Fact]
[WorkItem(459, "https://github.com/dotnet/roslyn-analyzers/issues/459")]
public async Task NoDiagnosticDelegateTest2_VB()
{
await VerifyVB.VerifyAnalyzerAsync(@"
Imports System
Public Class NeatCode
' Used parameter methods
Public Sub UsedParameterMethod1(a As Action)
Dim a2 As New Action(Sub()
a()
End Sub)
End Sub
End Class
");
}
[Fact]
[WorkItem(8884, "https://github.com/dotnet/roslyn/issues/8884")]
public async Task NoDiagnosticUsingTest_CSharp()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
class C
{
void F(int x, IDisposable o)
{
using (o)
{
int y = x;
}
}
}
");
}
[Fact]
[WorkItem(8884, "https://github.com/dotnet/roslyn/issues/8884")]
public async Task NoDiagnosticUsingTest_VB()
{
await VerifyVB.VerifyAnalyzerAsync(@"
Imports System
Class C
Private Sub F(x As Integer, o As IDisposable)
Using o
Dim y As Integer = x
End Using
End Sub
End Class
");
}
[Fact]
[WorkItem(8884, "https://github.com/dotnet/roslyn/issues/8884")]
public async Task NoDiagnosticLinqTest_CSharp()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
using System.Linq;
using System.Reflection;
class C
{
private object F(Assembly assembly)
{
var type = (from t in assembly.GetTypes()
select t.Attributes).FirstOrDefault();
return type;
}
}
");
}
[Fact]
[WorkItem(8884, "https://github.com/dotnet/roslyn/issues/8884")]
public async Task NoDiagnosticLinqTest_VB()
{
await VerifyVB.VerifyAnalyzerAsync(@"
Imports System
Imports System.Linq
Imports System.Reflection
Class C
Private Function F(assembly As Assembly) As Object
Dim type = (From t In assembly.DefinedTypes() Select t.Attributes).FirstOrDefault()
Return type
End Function
End Class
");
}
[Fact]
[WorkItem(459, "https://github.com/dotnet/roslyn-analyzers/issues/459")]
public async Task NoDiagnosticSpecialCasesTest()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
using System.Runtime.InteropServices;
public abstract class Derived : Base, I
{
// Override
public override void VirtualMethod(int param)
{
}
// Abstract
public abstract void AbstractMethod(int param);
// Implicit interface implementation
public void Method1(int param)
{
}
// Explicit interface implementation
void I.Method2(int param)
{
}
// Event handlers
public void MyEventHandler(object o, EventArgs e)
{
}
public void MyEventHandler2(object o, MyEventArgs e)
{
}
public class MyEventArgs : EventArgs { }
}
public class Base
{
// Virtual
public virtual void VirtualMethod(int param)
{
}
}
public interface I
{
void Method1(int param);
void Method2(int param);
}
public class ClassWithExtern
{
[DllImport(""Dependency.dll"")]
public static extern void DllImportMethod(int param);
public static extern void ExternalMethod(int param);
}
");
await VerifyVB.VerifyAnalyzerAsync(@"
Imports System
Imports System.Runtime.InteropServices
Public MustInherit Class Derived
Inherits Base
Implements I
' Override
Public Overrides Sub VirtualMethod(param As Integer)
End Sub
' Abstract
Public MustOverride Sub AbstractMethod(param As Integer)
' Explicit interface implementation - VB has no implicit interface implementation.
Public Sub Method1(param As Integer) Implements I.Method1
End Sub
' Explicit interface implementation
Private Sub I_Method2(param As Integer) Implements I.Method2
End Sub
' Event handlers
Public Sub MyEventHandler(o As Object, e As EventArgs)
End Sub
Public Sub MyEventHandler2(o As Object, e As MyEventArgs)
End Sub
Public Class MyEventArgs
Inherits EventArgs
End Class
End Class
Public Class Base
' Virtual
Public Overridable Sub VirtualMethod(param As Integer)
End Sub
End Class
Public Interface I
Sub Method1(param As Integer)
Sub Method2(param As Integer)
End Interface
Public Class ClassWithExtern
<DllImport(""Dependency.dll"")>
Public Shared Sub DllImportMethod(param As Integer)
End Sub
Public Declare Function DeclareFunction Lib ""Dependency.dll"" (param As Integer) As Integer
End Class
");
}
[Fact]
[WorkItem(459, "https://github.com/dotnet/roslyn-analyzers/issues/459")]
public async Task NoDiagnosticForMethodsWithSpecialAttributesTest()
{
await VerifyCS.VerifyAnalyzerAsync(@"
#define CONDITION_1
using System;
using System.Diagnostics;
using System.Runtime.Serialization;
public class ConditionalMethodsClass
{
[Conditional(""CONDITION_1"")]
private static void ConditionalMethod(int a)
{
AnotherConditionalMethod(a);
}
[Conditional(""CONDITION_2"")]
private static void AnotherConditionalMethod(int b)
{
Console.WriteLine(b);
}
}
public class SerializableMethodsClass
{
[OnSerializing]
private void OnSerializingCallback(StreamingContext context)
{
Console.WriteLine(this);
}
[OnSerialized]
private void OnSerializedCallback(StreamingContext context)
{
Console.WriteLine(this);
}
[OnDeserializing]
private void OnDeserializingCallback(StreamingContext context)
{
Console.WriteLine(this);
}
[OnDeserialized]
private void OnDeserializedCallback(StreamingContext context)
{
Console.WriteLine(this);
}
}
");
await VerifyVB.VerifyAnalyzerAsync(@"
#Const CONDITION_1 = 5
Imports System
Imports System.Diagnostics
Imports System.Runtime.Serialization
Public Class ConditionalMethodsClass
<Conditional(""CONDITION_1"")> _
Private Shared Sub ConditionalMethod(a As Integer)
AnotherConditionalMethod(a)
End Sub
<Conditional(""CONDITION_2"")> _
Private Shared Sub AnotherConditionalMethod(b As Integer)
Console.WriteLine(b)
End Sub
End Class
Public Class SerializableMethodsClass
<OnSerializing> _
Private Sub OnSerializingCallback(context As StreamingContext)
Console.WriteLine(Me)
End Sub
<OnSerialized> _
Private Sub OnSerializedCallback(context As StreamingContext)
Console.WriteLine(Me)
End Sub
<OnDeserializing> _
Private Sub OnDeserializingCallback(context As StreamingContext)
Console.WriteLine(Me)
End Sub
<OnDeserialized> _
Private Sub OnDeserializedCallback(context As StreamingContext)
Console.WriteLine(Me)
End Sub
End Class
");
}
[Fact, WorkItem(1218, "https://github.com/dotnet/roslyn-analyzers/issues/1218")]
public async Task NoDiagnosticForMethodsUsedAsDelegatesCSharp()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
public class C1
{
private Action<object> _handler;
public void Handler(object o1)
{
}
public void SetupHandler()
{
_handler = Handler;
}
}
public class C2
{
public void Handler(object o1)
{
}
public void TakesHandler(Action<object> handler)
{
handler(null);
}
public void SetupHandler()
{
TakesHandler(Handler);
}
}
public class C3
{
private Action<object> _handler;
public C3()
{
_handler = Handler;
}
public void Handler(object o1)
{
}
}");
}
[Fact, WorkItem(1218, "https://github.com/dotnet/roslyn-analyzers/issues/1218")]
public async Task NoDiagnosticForMethodsUsedAsDelegatesBasic()
{
await VerifyVB.VerifyAnalyzerAsync(@"
Imports System
Public Class C1
Private _handler As Action(Of Object)
Public Sub Handler(o As Object)
End Sub
Public Sub SetupHandler()
_handler = AddressOf Handler
End Sub
End Class
Module M2
Sub Handler(o As Object)
End Sub
Sub TakesHandler(handler As Action(Of Object))
handler(Nothing)
End Sub
Sub SetupHandler()
TakesHandler(AddressOf Handler)
End Sub
End Module
Class C3
Private _handler As Action(Of Object)
Sub New()
_handler = AddressOf Handler
End Sub
Sub Handler(o As Object)
End Sub
End Class
");
}
[Fact, WorkItem(1218, "https://github.com/dotnet/roslyn-analyzers/issues/1218")]
public async Task NoDiagnosticForObsoleteMethods()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
public class C1
{
[Obsolete]
public void ObsoleteMethod(object o1)
{
}
}");
await VerifyVB.VerifyAnalyzerAsync(@"
Imports System
Public Class C1
<Obsolete>
Public Sub ObsoleteMethod(o1 as Object)
End Sub
End Class");
}
[Fact, WorkItem(1218, "https://github.com/dotnet/roslyn-analyzers/issues/1218")]
public async Task NoDiagnosticMethodJustThrowsNotImplemented()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
public class MyAttribute: Attribute
{
public int X;
public MyAttribute(int x)
{
X = x;
}
}
public class C1
{
public int Prop1
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
}
public void Method1(object o1)
{
throw new NotImplementedException();
}
public void Method2(object o1) => throw new NotImplementedException();
[MyAttribute(0)]
public void Method3(object o1)
{
throw new NotImplementedException();
}
}");
await VerifyVB.VerifyAnalyzerAsync(@"
Imports System
Public Class C1
Property Prop1 As Integer
Get
Throw New NotImplementedException()
End Get
Set(ByVal value As Integer)
Throw New NotImplementedException()
End Set
End Property
Public Sub Method1(o1 As Object)
Throw New NotImplementedException()
End Sub
End Class");
}
[Fact, WorkItem(1218, "https://github.com/dotnet/roslyn-analyzers/issues/1218")]
public async Task NoDiagnosticMethodJustThrowsNotSupported()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
public class C1
{
public int Prop1
{
get
{
throw new NotSupportedException();
}
set
{
throw new NotSupportedException();
}
}
public void Method1(object o1)
{
throw new NotSupportedException();
}
public void Method2(object o1) => throw new NotSupportedException();
}");
await VerifyVB.VerifyAnalyzerAsync(@"
Imports System
Public Class C1
Property Prop1 As Integer
Get
Throw New NotSupportedException()
End Get
Set(ByVal value As Integer)
Throw New NotSupportedException()
End Set
End Property
Public Sub Method1(o1 As Object)
Throw New NotSupportedException()
End Sub
End Class");
}
[Fact]
public async Task NoDiagnosticsForIndexer()
{
await VerifyCS.VerifyAnalyzerAsync(@"
class C
{
public int this[int i]
{
get { return 0; }
set { }
}
}
");
await VerifyVB.VerifyAnalyzerAsync(@"
Class C
Public Property Item(i As Integer) As Integer
Get
Return 0
End Get
Set
End Set
End Property
End Class
");
}
[Fact]
public async Task NoDiagnosticsForPropertySetter()
{
await VerifyCS.VerifyAnalyzerAsync(@"
class C
{
public int Property
{
get { return 0; }
set { }
}
}
");
await VerifyVB.VerifyAnalyzerAsync(@"
Class C
Public Property Property1 As Integer
Get
Return 0
End Get
Set
End Set
End Property
End Class
");
}
[Fact]
public async Task NoDiagnosticsForFirstParameterOfExtensionMethod()
{
await VerifyCS.VerifyAnalyzerAsync(@"
static class C
{
static void ExtensionMethod(this int i) { }
static int ExtensionMethod(this int i, int anotherParam) { return anotherParam; }
}
");
}
[Fact]
public async Task NoDiagnosticsForSingleStatementMethodsWithDefaultParameters()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
public class C
{
public void SomeMethod(string p1, string p2 = null)
{
throw new NotImplementedException();
}
}
");
await VerifyVB.VerifyAnalyzerAsync(@"
Imports System
Public Class C
Public Sub Test(p1 As String, Optional p2 As String = Nothing)
Throw New NotImplementedException()
End Sub
End Class");
}
[Fact]
[WorkItem(2589, "https://github.com/dotnet/roslyn-analyzers/issues/2589")]
[WorkItem(2593, "https://github.com/dotnet/roslyn-analyzers/issues/2593")]
public async Task NoDiagnosticDiscardParameterNames()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
public class C
{
public void M(int _, int _1, int _4)
{
}
}
");
await VerifyVB.VerifyAnalyzerAsync(@"
Imports System
Public Class C
' _ is not an allowed identifier in VB.
Public Sub M(_1 As Integer, _2 As Integer, _4 As Integer)
End Sub
End Class
");
}
[Fact]
[WorkItem(2466, "https://github.com/dotnet/roslyn-analyzers/issues/2466")]
public async Task NoDiagnosticUsedLocalFunctionParameters()
{
await VerifyCS.VerifyAnalyzerAsync(@"
using System;
public class C
{
public void M()
{
LocalFunction(0);
return;
void LocalFunction(int x)
{
Console.WriteLine(x);
}
}
}
");
}
[Theory]
[WorkItem(1375, "https://github.com/dotnet/roslyn-analyzers/issues/1375")]
[InlineData("public", "dotnet_code_quality.api_surface = private", false)]
[InlineData("private", "dotnet_code_quality.api_surface = internal, public", false)]
[InlineData("public", "dotnet_code_quality.CA1801.api_surface = internal, private", false)]
[InlineData("public", "dotnet_code_quality.CA1801.api_surface = Friend, Private", false)]
[InlineData("public", "dotnet_code_quality.Usage.api_surface = internal, private", false)]
[InlineData("public", @"dotnet_code_quality.api_surface = all
dotnet_code_quality.CA1801.api_surface = private", false)]
[InlineData("public", "dotnet_code_quality.api_surface = public", true)]
[InlineData("public", "dotnet_code_quality.api_surface = internal, public", true)]
[InlineData("public", "dotnet_code_quality.CA1801.api_surface = public", true)]
[InlineData("public", "dotnet_code_quality.CA1801.api_surface = all", true)]
[InlineData("public", "dotnet_code_quality.Usage.api_surface = public, private", true)]
[InlineData("public", @"dotnet_code_quality.api_surface = all
dotnet_code_quality.CA1801.api_surface = public", true)]
public async Task EditorConfigConfiguration_ApiSurfaceOption_AsAdditionalDocument(string accessibility, string editorConfigText, bool expectDiagnostic)
{
var paramName = expectDiagnostic ? "[|unused|]" : "unused";
await new VerifyCS.Test
{
TestState =
{
Sources =
{
$@"
public class C
{{
{accessibility} void M(int {paramName})
{{
}}
}}"
},
AdditionalFiles = { (".editorconfig", editorConfigText) }
}
}.RunAsync();
await new VerifyVB.Test
{
TestState =
{
Sources =
{
$@"
Public Class C
{accessibility} Sub M({paramName} As Integer)
End Sub
End Class"
},
AdditionalFiles = { (".editorconfig", editorConfigText) }
}
}.RunAsync();
}
[Theory]
[WorkItem(1375, "https://github.com/dotnet/roslyn-analyzers/issues/1375")]
[InlineData("public", "dotnet_code_quality.api_surface = private", false)]
[InlineData("private", "dotnet_code_quality.api_surface = internal, public", false)]
[InlineData("public", "dotnet_code_quality.CA1801.api_surface = internal, private", false)]
[InlineData("public", "dotnet_code_quality.CA1801.api_surface = Friend, Private", false)]
[InlineData("public", "dotnet_code_quality.Usage.api_surface = internal, private", false)]
[InlineData("public", @"dotnet_code_quality.api_surface = all
dotnet_code_quality.CA1801.api_surface = private", false)]
[InlineData("public", "dotnet_code_quality.api_surface = public", true)]
[InlineData("public", "dotnet_code_quality.api_surface = internal, public", true)]
[InlineData("public", "dotnet_code_quality.CA1801.api_surface = public", true)]
[InlineData("public", "dotnet_code_quality.CA1801.api_surface = all", true)]
[InlineData("public", "dotnet_code_quality.Usage.api_surface = public, private", true)]
[InlineData("public", @"dotnet_code_quality.api_surface = all
dotnet_code_quality.CA1801.api_surface = public", true)]
public async Task EditorConfigConfiguration_ApiSurfaceOption_AsAnalyzerConfigDocument(string accessibility, string editorConfigText, bool expectDiagnostic)
{
var csTest = new VerifyCS.Test
{
TestState =
{
Sources =
{
$@"
public class C
{{
{accessibility} void M(int unused)
{{
}}
}}"
}
},
SolutionTransforms = { WithAnalyzerConfigDocument }
};
if (expectDiagnostic)
{
csTest.ExpectedDiagnostics.Add(VerifyCS.Diagnostic().WithSpan(@"z:\Test0.cs", 4, 23, 4, 29).WithArguments("unused", "M"));
}
await csTest.RunAsync();
var vbTest = new VerifyVB.Test
{
TestState =
{
Sources =
{
$@"
Public Class C
{accessibility} Sub M(unused As Integer)
End Sub
End Class"
},
},
SolutionTransforms = { WithAnalyzerConfigDocument }
};
if (expectDiagnostic)
{
vbTest.ExpectedDiagnostics.Add(VerifyVB.Diagnostic().WithSpan(@"z:\Test0.vb", 3, 18, 3, 24).WithArguments("unused", "M"));
}
await vbTest.RunAsync();
return;
Solution WithAnalyzerConfigDocument(Solution solution, ProjectId projectId)
{
var project = solution.GetProject(projectId)!;
var projectFilePath = project.Language == LanguageNames.CSharp ? @"z:\Test.csproj" : @"z:\Test.vbproj";
solution = solution.WithProjectFilePath(projectId, projectFilePath);
var documentId = project.DocumentIds.Single();
var documentExtension = project.Language == LanguageNames.CSharp ? "cs" : "vb";
solution = solution.WithDocumentFilePath(documentId, $@"z:\Test0.{documentExtension}");
return solution.GetProject(projectId)!
.AddAnalyzerConfigDocument(
".editorconfig",
SourceText.From($"[*.{documentExtension}]" + Environment.NewLine + editorConfigText),
filePath: @"z:\.editorconfig")
.Project.Solution;
}
}
[Theory]
[WorkItem(1375, "https://github.com/dotnet/roslyn-analyzers/issues/1375")]
[InlineData("public", "dotnet_code_quality.api_surface = private", false)]
[InlineData("private", "dotnet_code_quality.api_surface = internal, public", false)]
[InlineData("public", "dotnet_code_quality.CA1801.api_surface = internal, private", false)]
[InlineData("public", "dotnet_code_quality.CA1801.api_surface = Friend, Private", false)]
[InlineData("public", "dotnet_code_quality.Usage.api_surface = internal, private", false)]
[InlineData("public", @"dotnet_code_quality.api_surface = all
dotnet_code_quality.CA1801.api_surface = private", false)]
[InlineData("public", "dotnet_code_quality.api_surface = public", true)]
[InlineData("public", "dotnet_code_quality.api_surface = internal, public", true)]
[InlineData("public", "dotnet_code_quality.CA1801.api_surface = public", true)]
[InlineData("public", "dotnet_code_quality.CA1801.api_surface = all", true)]
[InlineData("public", "dotnet_code_quality.Usage.api_surface = public, private", true)]
[InlineData("public", @"dotnet_code_quality.api_surface = all
dotnet_code_quality.CA1801.api_surface = public", true)]
public async Task EditorConfigConfiguration_ApiSurfaceOption_AsAnalyzerConfigDocumentAndAdditionalDocument(string accessibility, string editorConfigText, bool expectDiagnostic)
{
var csTest = new VerifyCS.Test
{
TestState =
{
Sources =
{
$@"
public class C
{{
{accessibility} void M(int unused)
{{
}}
}}"
},
AdditionalFiles = { (".editorconfig", editorConfigText) }
},
SolutionTransforms = { WithAnalyzerConfigDocument }
};
if (expectDiagnostic)
{
csTest.ExpectedDiagnostics.Add(VerifyCS.Diagnostic().WithSpan(@"z:\Test0.cs", 4, 23, 4, 29).WithArguments("unused", "M"));