-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSA1127UnitTests.cs
More file actions
354 lines (333 loc) · 10.7 KB
/
Copy pathSA1127UnitTests.cs
File metadata and controls
354 lines (333 loc) · 10.7 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
// Copyright (c) Contributors to the New StyleCop Analyzers project.
// Licensed under the MIT License. See LICENSE in the project root for license information.
#nullable disable
namespace StyleCop.Analyzers.Test.ReadabilityRules
{
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Testing;
using Xunit;
using static StyleCop.Analyzers.Test.Verifiers.StyleCopCodeFixVerifier<
StyleCop.Analyzers.ReadabilityRules.SA1127GenericTypeConstraintsMustBeOnOwnLine,
StyleCop.Analyzers.ReadabilityRules.SA1127CodeFixProvider>;
public class SA1127UnitTests
{
public static IEnumerable<object[]> GetNullTests()
{
yield return new object[] { $"class Foo\r\n{{\r\n}}" };
yield return new object[] { $"struct Foo\r\n{{\r\n}}" };
yield return new object[] { $"interface Foo\r\n{{\r\n}}" };
yield return new object[] { $"class Foo\r\n{{\r\n private void Method() {{}}\r\n}}" };
}
public static IEnumerable<object[]> GetTypeDeclarationTests()
{
yield return new object[] { $"class Foo<T> where T : class {{}}", $"class Foo<T>\r\n where T : class\r\n{{}}", 14 };
yield return new object[] { $"interface Foo<T> where T : class {{}}", $"interface Foo<T>\r\n where T : class\r\n{{}}", 18 };
yield return new object[] { $"struct Foo<T> where T : class {{}}", $"struct Foo<T>\r\n where T : class\r\n{{}}", 15 };
}
[Theory]
[MemberData(nameof(GetNullTests))]
public async Task TestNullScenariosAsync(string declaration)
{
await VerifyCSharpDiagnosticAsync(declaration, DiagnosticResult.EmptyDiagnosticResults, CancellationToken.None).ConfigureAwait(true);
}
[Theory]
[MemberData(nameof(GetTypeDeclarationTests))]
public async Task TestViolationWithTypeDeclarationAsync(string declaration, string fixedDeclaration, int column)
{
var testCode = $"{declaration}";
var fixedCode = $"{fixedDeclaration}";
var expected = Diagnostic().WithLocation(1, column);
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
public async Task TestViolationWithMethodDeclarationAsync()
{
var testCode = $@"
class Foo
{{
private void Method<T>() where T : class {{ }}
}}";
var fixedCode = $@"
class Foo
{{
private void Method<T>()
where T : class
{{ }}
}}";
var expected = Diagnostic().WithLocation(4, 30);
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
[WorkItem(1476, "https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/1476")]
public async Task TestViolationWithObsoleteMethodDeclarationAsync()
{
var testCode = @"
class Foo
{
[System.Obsolete]
private void Method<T>() where T : class { }
}";
var fixedCode = @"
class Foo
{
[System.Obsolete]
private void Method<T>()
where T : class
{ }
}";
var expected = Diagnostic().WithLocation(5, 30);
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
[WorkItem(1476, "https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/1476")]
public async Task TestViolationWithMethodDeclarationMultiLineParametersAsync()
{
var testCode = @"
class Foo
{
private void Method<T>(
int a,
int b) where T : class { }
}";
var fixedCode = @"
class Foo
{
private void Method<T>(
int a,
int b)
where T : class
{ }
}";
var expected = Diagnostic().WithLocation(6, 16);
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
[WorkItem(1652, "https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/1652")]
public async Task TestViolationWithMethodDeclarationAndXmlCommentsAsync()
{
var testCode = $@"
class Foo
{{
/// <summary>Foo</summary>
/// <typeparam name=""T"">The type.</typeparam>
private void Method<T>() where T : class {{ }}
}}";
var fixedCode = $@"
class Foo
{{
/// <summary>Foo</summary>
/// <typeparam name=""T"">The type.</typeparam>
private void Method<T>()
where T : class
{{ }}
}}";
var expected = Diagnostic().WithLocation(6, 30);
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
[WorkItem(1652, "https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/1652")]
public async Task TestViolationWithMethodDeclarationRegionDirectiveAsync()
{
var testCode = $@"
class Foo
{{
#region Test
private void Method<T>() where T : class {{ }}
#endregion
}}";
var fixedCode = $@"
class Foo
{{
#region Test
private void Method<T>()
where T : class
{{ }}
#endregion
}}";
var expected = Diagnostic().WithLocation(5, 30);
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
public async Task TestViolationWithExpressionBodiedMethodDeclarationAsync()
{
var testCode = $@"
class Foo
{{
private string Method<T>() where T : class => typeof(T).Name;
}}";
var fixedCode = $@"
class Foo
{{
private string Method<T>()
where T : class
=> typeof(T).Name;
}}";
var expected = Diagnostic().WithLocation(4, 32);
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
public async Task TestViolationWithOuterGenericClassAndInnerMethodAsync()
{
var testCode = $@"
using System;
class Foo<T> where T : class
{{
T Method<T>()
{{
throw new NotImplementedException();
}}
}}";
var fixedCode = $@"
using System;
class Foo<T>
where T : class
{{
T Method<T>()
{{
throw new NotImplementedException();
}}
}}";
var expected = Diagnostic().WithLocation(3, 14);
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
public async Task TestViolationWithInterfaceAndGenericMethodAsync()
{
var testCode = $@"
interface Foo
{{
T GenericMethod<T>() where T : class;
}}";
var fixedCode = $@"
interface Foo
{{
T GenericMethod<T>()
where T : class;
}}";
var expected = Diagnostic().WithLocation(4, 26);
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
public async Task TestViolationWithInterfaceAndGenericMethodTwoConstraintsAsync()
{
var testCode = $@"
interface Foo
{{
T GenericMethod<T, R>() where T : class where R : new();
}}";
var fixedCode = $@"
interface Foo
{{
T GenericMethod<T, R>()
where T : class
where R : new();
}}";
var expected = new DiagnosticResult[]
{
Diagnostic().WithLocation(4, 29),
Diagnostic().WithLocation(4, 45),
};
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
public async Task TestViolationWithClassAndTwoTypeConstraintsOnSingleLineAsync()
{
var testCode = $@"
class Foo<T, R> where T : class where R : T, new()
{{
}}";
var fixedCode = $@"
class Foo<T, R>
where T : class
where R : T, new()
{{
}}";
var expected = Diagnostic().WithLocation(2, 17);
var expected2 = Diagnostic().WithLocation(2, 33);
await VerifyCSharpFixAsync(testCode, new[] { expected, expected2 }, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
public async Task TestViolationWithClassAndTwoTypeConstraintsAndFirstOnSingleLineAsync()
{
var testCode = $@"
class Foo<T, R> where T : class
where R : T, new()
{{
}}";
var fixedCode = $@"
class Foo<T, R>
where T : class
where R : T, new()
{{
}}";
var expected = Diagnostic().WithLocation(2, 17);
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
public async Task TestViolationWithMethodAndThreeTypeConstraintsOnSingleLineAsync()
{
var testCode = $@"
class Foo
{{
private void Method<T1, T2, T3>() where T1 : class where T2 : class where T3 : class {{ }}
}}";
var fixedCode = $@"
class Foo
{{
private void Method<T1, T2, T3>()
where T1 : class
where T2 : class
where T3 : class
{{ }}
}}";
var expected = Diagnostic().WithLocation(4, 39);
var expected2 = Diagnostic().WithLocation(4, 56);
var expected3 = Diagnostic().WithLocation(4, 73);
await VerifyCSharpFixAsync(testCode, new[] { expected, expected2, expected3 }, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
public async Task TestViolationWithMethodAndCommentTriviaAtEndOfLineAsync()
{
var testCode = $@"
using System;
class Foo
{{
T GenericMethod<T>() where T : class // constrain this to just classes
{{
throw new NotImplementedException();
}}
}}";
var fixedCode = $@"
using System;
class Foo
{{
T GenericMethod<T>()
where T : class // constrain this to just classes
{{
throw new NotImplementedException();
}}
}}";
var expected = Diagnostic().WithLocation(5, 26);
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
[Fact]
public async Task TestViolationWithTwoConstraintsAndCommaTriviaAsync()
{
var testCode = $@"
class Foo<T, R> where T : class // constraint1
where R : T, new() // constraint2
{{
}}";
var fixedCode = $@"
class Foo<T, R>
where T : class // constraint1
where R : T, new() // constraint2
{{
}}";
var expected = Diagnostic().WithLocation(2, 17);
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(true);
}
}
}