forked from pakrym/jab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiagnosticsTest.cs
More file actions
498 lines (459 loc) · 15.8 KB
/
Copy pathDiagnosticsTest.cs
File metadata and controls
498 lines (459 loc) · 15.8 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
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Testing;
using Xunit;
using Verify = JabTests.GeneratorAnalyzerVerifier<Jab.ContainerGenerator>;
namespace JabTests
{
public class DiagnosticsTest
{
[Fact]
public async Task ProducesDiagnosticWhenModuleNotMarkedWithAttribute()
{
string testCode = @"
public interface IModule {}
[ServiceProvider]
[{|#1:Import(typeof(IModule))|}]
public partial class Container {}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0006")
.WithLocation(1)
.WithArguments("IModule", "ServiceProviderModuleAttribute"));
}
[Fact]
public async Task ProducesDiagnosticWhenServiceProviderIsNotPartial()
{
string testCode = @"
[ServiceProvider]
[Singleton(typeof(Object))]
public class {|#1:Container|} {}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0005")
.WithLocation(1)
.WithArguments("Container"));
}
[Fact]
public async Task ProducesDiagnosticWhenInstanceMemberNotFound()
{
string testCode = @"
[ServiceProvider]
[{|#1:Singleton(typeof(ICloneable), Instance = ""CreateCloneable"")|}]
public partial class Container {}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0003")
.WithLocation(1)
.WithArguments("CreateCloneable", "Instance"));
}
[Theory]
[InlineData("Singleton")]
[InlineData("Transient")]
public async Task ProducesDiagnosticWhenFactoryMemberNotFound(string attribute)
{
string testCode = $@"
[ServiceProvider]
[{{|#1:{attribute}(typeof(ICloneable), Factory = ""CreateCloneable"")|}}]
public partial class Container {{}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0003")
.WithLocation(1)
.WithArguments("CreateCloneable", "Factory"));
}
[Theory]
[InlineData("Singleton")]
[InlineData("Transient")]
public async Task ProducesDiagnosticWhenFactoryMemberIsAmbiguous(string attribute)
{
string testCode = $@"
[ServiceProvider]
[{{|#1:{attribute}(typeof(ICloneable), Factory = ""CreateCloneable"")|}}]
public partial class Container {{
ICloneable CreateCloneable() => null;
ICloneable CreateCloneable(int why) => null;
}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0004")
.WithLocation(1)
.WithArguments("CreateCloneable", "Factory"));
}
[Fact]
public async Task ProducesJAB0002WhenRequiredDependencyNotFound()
{
string testCode = $@"
interface IDependency {{ }}
class Service {{ public Service(IDependency dep) {{}} }}
[ServiceProvider]
[{{|#1:Transient(typeof(Service))|}}]
public partial class Container {{}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0002")
.WithLocation(1)
.WithArguments("IDependency", "Service"));
}
[Fact]
public async Task ProducesJAB0019WhenRequiredNamedDependencyNotFound()
{
string testCode = $@"
class Dependency {{ }}
class Service {{ public Service([FromNamedServices(""Named"")] Dependency dep) {{}} }}
[ServiceProvider]
[{{|#1:Transient(typeof(Service))|}}]
[Transient(typeof(Dependency))]
public partial class Container {{}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0019")
.WithLocation(1)
.WithArguments("Dependency", "Named", "Service"));
}
[Fact]
public async Task DoesNotProduceDiagnosticForResolveDelegateWhenServiceRegistered()
{
string testCode = @"
interface IService { }
class Service : IService { }
class Consumer { public Consumer(Resolve<IService> resolver) { } }
[ServiceProvider]
[Transient(typeof(IService), typeof(Service))]
[Transient(typeof(Consumer))]
public partial class Container { }
";
await Verify.VerifyAnalyzerAsync(testCode);
}
[Fact]
public async Task ProducesDiagnosticWhenResolveDelegateServiceNotRegistered()
{
string testCode = @"
interface IService { }
class Consumer { public Consumer({|#1:Resolve<IService>|} resolver) { } }
[ServiceProvider]
[Transient(typeof(Consumer))]
public partial class Container { }
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0021")
.WithLocation(1)
.WithArguments("IService"));
}
[Fact]
public async Task ProducesDiagnosticWhenNamedResolveDelegateHasNoNamedService()
{
string testCode = @"
interface IService { }
class Service : IService { }
class Consumer { public Consumer({|#1:NamedResolve<IService>|} resolver) { } }
[ServiceProvider]
[Transient(typeof(IService), typeof(Service))]
[Transient(typeof(Consumer))]
public partial class Container { }
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0022")
.WithLocation(1)
.WithArguments("IService"));
}
[Fact]
public async Task DoesNotProduceDiagnosticForNamedResolveWhenNamedServiceRegistered()
{
string testCode = @"
interface IService { }
class Service : IService { }
class Consumer { public Consumer(NamedResolve<IService> resolver) { } }
[ServiceProvider]
[Singleton(typeof(IService), typeof(Service), Name = "Named")]
[Transient(typeof(Consumer))]
public partial class Container { }
";
await Verify.VerifyAnalyzerAsync(testCode);
}
[Fact]
public async Task ProducesJAB0002WhenRequiredDependenciesNotFound()
{
string testCode = $@"
interface IDependency {{ }}
interface IDependency2 {{ }}
class Service {{ public Service(IDependency dep, IDependency2 dep2) {{}} }}
[ServiceProvider]
[{{|#1:Transient(typeof(Service))|}}]
public partial class Container {{}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0002")
.WithLocation(1)
.WithArguments("IDependency", "Service"),
DiagnosticResult
.CompilerError("JAB0002")
.WithLocation(1)
.WithArguments("IDependency2", "Service"));
}
[Fact]
public async Task ProducesJAB0007WhenRequiredImplementationHasNoPublicConstructors()
{
string testCode = $@"
class Service {{ private Service() {{}} }}
[ServiceProvider]
[{{|#1:Transient(typeof(Service))|}}]
public partial class Container {{}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0007")
.WithLocation(1)
.WithArguments("Service"));
}
[Fact]
public async Task ProducesJAB0011WhenBothImplementationAndFactory()
{
string testCode = $@"
public class Service {{ private Service() {{}} }}
[ServiceProvider]
[{{|#1:Transient(typeof(Service), typeof(Service), Factory=nameof(F))|}}]
[{{|#2:Singleton(typeof(Service), typeof(Service), Instance=nameof(F))|}}]
public partial class Container {{
public Service F() => null;
}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0011")
.WithLocation(1)
.WithArguments("Service"),
DiagnosticResult
.CompilerError("JAB0011")
.WithLocation(2)
.WithArguments("Service"));
}
[Fact]
public async Task ProducesJAB0012WhenFactoryIsNotCallable()
{
string testCode = $@"
public class Service {{ private Service() {{}} }}
public class Service2 {{ private Service2() {{}} }}
[ServiceProvider]
[Transient(typeof(Service), Factory=nameof(F))]
[Transient(typeof(Service2), Factory=nameof(F1))]
public partial class Container {{
public {{|#1:object|}} F = null;
public {{|#2:object|}} F1 {{get;}} = null;
}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0012")
.WithLocation(1)
.WithArguments("F", "Service"),
DiagnosticResult
.CompilerError("JAB0012")
.WithLocation(2)
.WithArguments("F1", "Service2"));
}
[Fact]
public async Task ProducesJAB0008WhenCircularChainDetected()
{
string testCode = $@"
interface IService {{}}
class FirstService {{ public FirstService(IService s) {{}} }}
class Service : IService {{ public Service(AnotherService s) {{}} }}
class AnotherService {{ public AnotherService({{|#1:IService|}} s) {{}} }}
[ServiceProvider]
[Transient(typeof(FirstService))]
[Transient(typeof(IService), typeof(Service))]
[Transient(typeof(AnotherService))]
public partial class Container {{}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0008")
.WithLocation(1)
.WithArguments("IService", "FirstService -> IService -> Service -> AnotherService -> IService"));
}
[Fact]
public async Task ProducesJAB0009ForRegistrationsWithoutServiceProvider()
{
string testCode = $@"
interface IService {{}}
[Transient(typeof(IService))]
public partial class {{|#1:Container|}} {{}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0009")
.WithLocation(1)
.WithArguments("Container"));
}
[Fact]
public async Task ProducesJAB0009ForInterafaceWithRegistrationsWithoutServiceProvider()
{
string testCode = $@"
interface IService {{}}
[Transient(typeof(IService))]
interface {{|#1:Container|}} {{}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0009")
.WithLocation(1)
.WithArguments("Container"));
}
[Fact]
public async Task ProducesJAB0010OrJAB0018IfGetServiceCallTypeUnregistered()
{
string testCode = $@"
interface IService {{}}
[ServiceProvider]
public partial class Container {{
public T GetService<T>() => default;
public T GetService<T>(string name) => default;
public static void Main() {{
var container = new Container();
{{|#1:container.GetService<IService>()|}};
{{|#2:container.GetService<IService>(""Named"")|}};
}}
}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0010")
.WithLocation(1)
.WithArguments("IService"),
DiagnosticResult
.CompilerError("JAB0018")
.WithLocation(2)
.WithArguments("IService", "Named"));
}
[Fact]
public async Task ProducesJAB0010IfRootServicesTypeUnregistered()
{
string testCode = $@"
interface IService {{}}
[{{|#1:ServiceProvider(RootServices=new[] {{ typeof(IService) }})|}}]
public partial class Container {{}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0010")
.WithLocation(1)
.WithArguments("IService"));
}
[Fact]
public async Task ProducesDiagnosticWhenServiceNameNotAlphanumeric()
{
string testCode = @"
public class Service {}
[ServiceProvider]
[{|#1:Singleton(typeof(Service), Name = """")|}]
[{|#2:Singleton(typeof(Service), Name = ""'"")|}]
[{|#3:Singleton(typeof(Service), Name = ""1a"")|}]
[Singleton(typeof(Service), Name = ""aA10"")]
public partial class Container {}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0015")
.WithLocation(1)
.WithArguments(""),
DiagnosticResult
.CompilerError("JAB0015")
.WithLocation(2)
.WithArguments("'"),
DiagnosticResult
.CompilerError("JAB0015")
.WithLocation(3)
.WithArguments("1a"));
}
[Fact]
public async Task ProducesDiagnosticWhenBuiltInServicesRequestedAsNamed()
{
string testCode = @"
public class Service {
public Service(
[FromNamedServices(""A"")] {|#1:IServiceProvider|} sp
) {}
}
[ServiceProvider]
[Singleton(typeof(Service))]
public partial class Container {}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0016")
.WithLocation(1)
.WithArguments("System.IServiceProvider"));
}
[Fact]
public async Task ProducesDiagnosticWhenImplicitIEnumerableRequestedAsNamed()
{
string testCode = @"
public class Service1 {}
public class Service {
public Service(
[FromNamedServices(""A"")] {|#1:IEnumerable<Service1>|} s,
IEnumerable<Service1> ss
) {}
}
[ServiceProvider]
[Singleton(typeof(Service))]
[Singleton(typeof(Service1))]
public partial class Container {}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0017")
.WithLocation(1)
.WithArguments("System.Collections.Generic.IEnumerable<Service1>"));
}
[Fact]
public async Task ProducesJAB0013WhenNullableNonOptionalDependencyNotFound()
{
string testCode = $@"
#nullable enable
interface IDependency {{ }}
class Service {{ public Service(IDependency? dep) {{}} }}
[ServiceProvider]
[{{|#1:Transient(typeof(Service))|}}]
public partial class Container {{}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0013")
.WithSeverity(DiagnosticSeverity.Error)
.WithLocation(1)
.WithArguments("IDependency?", "Service"));
}
[Fact]
public async Task ProducesJAB0014WhenNullableNonOptionalDependencyFound()
{
string testCode = $@"
#nullable enable
interface IDependency {{ }}
class Dependency : IDependency {{ }}
class Service {{ public Service(IDependency? dep) {{}} }}
[ServiceProvider]
[{{|#1:Transient(typeof(Service))|}}]
[{{|#2:Transient(typeof(IDependency), typeof(Dependency))|}}]
public partial class Container {{}}
";
await Verify.VerifyAnalyzerAsync(testCode,
DiagnosticResult
.CompilerError("JAB0014")
.WithSeverity(DiagnosticSeverity.Info)
.WithLocation(1)
.WithArguments("IDependency?", "Service"));
}
}
}