-
Notifications
You must be signed in to change notification settings - Fork 862
Expand file tree
/
Copy pathParserTests.LogMethod.cs
More file actions
521 lines (435 loc) · 16.6 KB
/
ParserTests.LogMethod.cs
File metadata and controls
521 lines (435 loc) · 16.6 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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
using Microsoft.Gen.Logging.Parsing;
using Xunit;
namespace Microsoft.Gen.Logging.Test;
public partial class ParserTests
{
[Fact]
public async Task InvalidMethodBody()
{
const string Source = @"
partial class C
{
static partial void M1(ILogger logger);
[LoggerMessage(0, LogLevel.Debug, ""M1"")]
static partial void M1(ILogger logger)
/*0+*/{
}/*-0*/
}
";
await RunGenerator(Source, DiagDescriptors.LoggingMethodHasBody);
}
[Fact]
public async Task NullableLogger()
{
await RunGenerator(@"
namespace TestClasses
{
internal static partial class NullableTestExtensions
{
[LoggerMessage(6, LogLevel.Debug, ""M6 {p0}"")]
internal static partial void M6(ILogger? logger, string p0);
}
}");
}
[Fact]
public async Task MissingILogger()
{
const string Source = @"
partial class C
{
[LoggerMessage(0, LogLevel.Debug, ""M1 {p1}"")]
static partial void M1/*0+*/(int p1)/*-0*/;
}
";
await RunGenerator(Source, DiagDescriptors.MissingLoggerParameter);
}
[Fact]
public async Task NoILoggerField()
{
const string Source = @"
partial class C
{
[LoggerMessage(0, LogLevel.Debug, ""M1"")]
public partial void /*0+*/M1/*-0*/();
}
";
await RunGenerator(Source, DiagDescriptors.MissingLoggerMember);
}
[Fact]
public async Task ValidDerivation()
{
const string Source = @"
partial class C
{
public ILogger? Logger { get; set; }
[LoggerMessage(0, LogLevel.Debug, ""M1"")]
public partial void M1();
}
partial class D : C
{
private readonly ILogger<D> logger;
public D(ILogger<D> logger)
{
this.logger = logger;
}
[LoggerMessage(0, LogLevel.Information, ""M2"")]
private partial void M2();
}
partial class E(ILogger<E> logger)
{
protected readonly ILogger<E> _logger = logger;
[LoggerMessage(Level = LogLevel.Information, Message = ""M1"")]
private partial void M1();
}
partial class F(ILogger<F> logger) : E(logger)
{
[LoggerMessage(Level = LogLevel.Information, Message = ""M2"")]
private partial void M2();
}
";
await RunGenerator(Source);
}
[Fact]
public async Task MultipleILoggerMembers()
{
const string Source = @"
partial class C
{
public ILogger _logger1;
public ILogger /*0+*/_logger2/*-0*/;
[LoggerMessage(0, LogLevel.Debug, ""M1"")]
public partial void M1();
}
partial class D
{
public ILogger? Logger { get; set; } = null!;
public ILogger /*1+*/_logger2/*-1*/;
[LoggerMessage(0, LogLevel.Debug, ""M1"")]
public partial void M1();
}
partial class E
{
public ILogger<int> Logger { get; set; } = null!;
public ILogger /*2+*/_logger2/*-2*/;
[LoggerMessage(0, LogLevel.Debug, ""M1"")]
public partial void M1();
}
partial class F(ILogger logger, ILogger /*3+*/logger2/*-3*/)
{
[LoggerMessage(0, LogLevel.Debug, ""M1"")]
public partial void M1();
}
";
await RunGenerator(Source, DiagDescriptors.MultipleLoggerMembers);
}
[Fact]
public async Task PrimaryConstructorParameterLoggerHidden()
{
const string Source = @"
partial class C(ILogger /*0+*/logger/*-0*/)
{
public object logger;
[LoggerMessage(0, LogLevel.Debug, ""M1"")]
public partial void M1();
}
";
await RunGenerator(Source, DiagDescriptors.PrimaryConstructorParameterLoggerHidden,
ignoreDiag: DiagDescriptors.MissingLoggerMember);
}
[Fact]
public async Task MethodReturnType()
{
const string Source = @"
partial class C
{
[LoggerMessage(0, LogLevel.Debug, ""M1"")]
public static partial /*0+*/int/*-0*/ M1(ILogger logger);
public static partial int M1(ILogger logger) { return 0; }
}
";
await RunGenerator(Source, DiagDescriptors.LoggingMethodMustReturnVoid);
}
[Fact]
public async Task NotStatic()
{
const string Source = @"
partial class C
{
[LoggerMessage(0, LogLevel.Debug, ""M1"")]
partial void /*0+*/M1/*-0*/(ILogger logger);
}
";
await RunGenerator(Source, DiagDescriptors.LoggingMethodShouldBeStatic);
}
[Fact]
public async Task InstanceEmptyLoggingMethod()
{
const string Source = @"
partial class C
{
public ILogger _logger;
[LoggerMessage]
public partial void /*0+*/M1/*-0*/(LogLevel level);
[LoggerMessage(LogLevel.Debug)]
public partial void /*1+*/M2/*-1*/();
}";
await RunGenerator(Source, DiagDescriptors.EmptyLoggingMethod);
}
[Fact]
public async Task StaticEmptyLoggingMethod()
{
const string Source = @"
partial class C
{
[LoggerMessage]
public static partial void /*0+*/M1/*-0*/(ILogger logger, LogLevel level);
[LoggerMessage(LogLevel.Debug)]
public static partial void /*1+*/M2/*-1*/(ILogger logger);
}";
await RunGenerator(Source, DiagDescriptors.EmptyLoggingMethod);
}
[Fact]
public async Task NonEmptyLoggingMethod()
{
await RunGenerator(@"
partial class C
{
public ILogger _logger;
[LoggerMessage]
public partial void M1(LogLevel level, Exception ex);
[LoggerMessage(LogLevel.Debug)]
public partial void M2(Exception ex);
[LoggerMessage]
public static partial void M3(ILogger logger, LogLevel level, Exception ex);
[LoggerMessage(LogLevel.Debug)]
public static partial void M4(ILogger logger, Exception ex);
}");
}
[Fact]
public async Task NotPartial()
{
const string Source = @"
partial class C
{
[LoggerMessage(0, LogLevel.Debug, ""M1"")]
static void /*0+*/M1/*-0*/(ILogger logger);
}
";
await RunGenerator(Source, DiagDescriptors.LoggingMethodMustBePartial);
}
[Fact]
public async Task MethodGeneric()
{
const string Source = @"
partial class C
{
[LoggerMessage(0, LogLevel.Debug, ""M1 {value}"")]
static partial void M1<T>(ILogger logger, T value);
}
";
await RunGenerator(Source);
}
[Fact]
public async Task MethodGenericWithConstraints()
{
const string Source = @"
partial class C
{
[LoggerMessage(0, LogLevel.Debug, ""M1 {code}"")]
static partial void M1<TCode>(ILogger logger, TCode code)
where TCode : struct, System.Enum;
}
";
await RunGenerator(Source);
}
[Fact]
public async Task MethodGenericMultipleTypeParams()
{
const string Source = @"
partial class C
{
[LoggerMessage(0, LogLevel.Debug, ""M1 {p1} {p2}"")]
static partial void M1<T1, T2>(ILogger logger, T1 p1, T2 p2)
where T1 : class
where T2 : notnull;
}
";
await RunGenerator(Source);
}
[Fact]
public async Task MethodGenericWithAllowsRefStructConstraint()
{
// The 'allows ref struct' detection requires Roslyn 4.9+ (ITypeParameterSymbol.AllowsRefLikeType).
// Skip gracefully on older Roslyn versions where the property and syntax are unavailable.
if (typeof(ITypeParameterSymbol).GetProperty("AllowsRefLikeType") is null)
{
return;
}
const string Source = @"
partial class C
{
[LoggerMessage(0, LogLevel.Debug, ""M1"")]
static partial void /*0+*/M1/*-0*/<T>(ILogger logger) where T : allows ref struct;
}
";
await RunGenerator(Source, DiagDescriptors.LoggingMethodHasAllowsRefStructConstraint);
}
[Theory]
[CombinatorialData]
public async Task LogMethodParamsRefKind([CombinatorialValues("ref", "out")] string modifier)
{
string source = @$"
partial class C
{{
[LoggerMessage(0, LogLevel.Debug, ""Parameter {{P1}}"")]
static partial void M(ILogger logger, {modifier} int /*0+*/p1/*-0*/);
}}";
await RunGenerator(source, DiagDescriptors.LoggingMethodParameterRefKind);
}
[Theory]
[CombinatorialData]
public async Task LogMethod_DetectsSensitiveMembersInRecord([CombinatorialRange(0, TotalSensitiveCases)] int positionNumber)
{
var sb = new System.Text.StringBuilder(@"
using Microsoft.Extensions.Compliance.Testing;
using System.Collections;
{17}
public record class BaseRecord
{
{0}public string PropBase { get; }
{1}public string FieldBase;
}
{18}
public record struct InlineStruct({2}string InlineProp);
{19}
public record class InterimRecord : BaseRecord
{
{3}public string PropInterim { get; }
{4}public string FieldInterim;
// Hiding on purpose:
{5}public new string FieldBase;
public virtual string PropVirt => nameof(PropVirt);
}
{20}
// 'internal' on purpose
internal record struct EnumerableStructRecord : IEnumerable
{
{6}public string EnumProp => nameof(EnumProp);
public IEnumerator GetEnumerator() => null!;
}
{16}
record MyRecord : InterimRecord
{
{7}public string Field;
{8}public string PropGet { get; }
{9}public string PropGetSet { get; set; }
{10}public string PropPrivateGet { private get; set; }
{11}public string PropInternalGet { internal get; set; }
{12}public string PropProtectedGet { protected get; set; }
{13}public override string PropVirt => nameof(MyRecord);
{14}public string PropGetInit { get; init; }
public EnumerableStructRecord PropRecord { get; } = new();
{15}public InlineStruct FieldRecord = new(nameof(FieldRecord));
}
partial class C
{
[LoggerMessage(LogLevel.Debug, ""Param is {p0}"")]
public static partial void LogTemplate(ILogger logger, IRedactorProvider provider, MyRecord /*0+*/p0/*-0*/);
[LoggerMessage(LogLevel.Debug, ""No param here"")]
public static partial void LogStructured(ILogger logger, MyRecord /*1+*/p0/*-1*/);
[LoggerMessage(LogLevel.Debug)]
public static partial void LogFullyStructured(ILogger logger, MyRecord /*2+*/p0/*-2*/);
[LoggerMessage(LogLevel.Debug, ""Param is {p0}"")]
public static partial void LogProperties(ILogger logger, IRedactorProvider rp, [LogProperties] MyRecord /*3+*/p0/*-3*/);
}");
for (int i = 0; i < TotalSensitiveCases; i++)
{
var template = "{" + i.ToString() + "}";
var replacement = i switch
{
_ when positionNumber == i
=> "[PrivateData] ",
_ => string.Empty,
};
sb.Replace(template, replacement);
}
await RunGenerator(
sb.ToString(),
DiagDescriptors.RecordTypeSensitiveArgumentIsInTemplate,
ignoreDiag: DiagDescriptors.ParameterHasNoCorrespondingTemplate);
}
[Theory]
[InlineData("System.Nullable<int>")]
[InlineData("int?")]
public async Task LogMethod_DetectsSensitiveNullableMembersInRecord(string type)
{
await RunGenerator(@$"
using Microsoft.Extensions.Compliance.Testing;
record MyRecord
{{
[PrivateData]
public {type} Field;
}}
partial class C
{{
[LoggerMessage(LogLevel.Debug, ""Param is {{p0}}"")]
public static partial void LogTemplate(ILogger logger, MyRecord /*0+*/p0/*-0*/);
}}",
DiagDescriptors.RecordTypeSensitiveArgumentIsInTemplate);
}
[Theory]
[InlineData("[PrivateData]")]
[InlineData("[property: PrivateData]")]
public async Task LogMethod_DetectsSensitiveMembersInRecord_WithPrimaryCtor(string annotation)
{
await RunGenerator(@$"
using Microsoft.Extensions.Compliance.Testing;
record MyRecord({annotation} string userIp);
partial class C
{{
[LoggerMessage(LogLevel.Debug, ""Param is {{p0}}"")]
public static partial void LogTemplate(ILogger logger, MyRecord /*0+*/p0/*-0*/);
}}",
DiagDescriptors.RecordTypeSensitiveArgumentIsInTemplate);
}
[Fact]
public async Task LogMethod_SkipsNonSensitiveMembersInRecord()
{
await RunGenerator(@"
using Microsoft.Extensions.Compliance.Testing;
public record class BaseRecord
{
[PrivateData] public const int ConstFieldBase = 99;
[PrivateData] public static int StaticFieldBase;
[PrivateData] public static int StaticPropBase => 100;
[PrivateData] private int PrivateFieldBase;
[PrivateData] internal int InternalFieldBase;
}
public record class InterimRecord : BaseRecord
{
[PrivateData] public virtual decimal PropVirt => decimal.MinusOne;
}
internal record class MyRecord : InterimRecord
{
[PrivateData] public const int ConstField = 99;
[PrivateData] public static int StaticField;
[PrivateData] public static int StaticProp => 100;
[PrivateData] private int PrivateField;
[PrivateData] internal int InternalField;
[PrivateData] private string PrivatePropGetSet { get; set; }
[PrivateData] internal string InternalPropGetSet { get; set; }
[PrivateData] protected string ProtectedPropGetSet { get; set; }
// This one overrides 'virtual' property declared in 'InterimRecord':
public override decimal PropVirt => decimal.One;
}
partial class C
{
[LoggerMessage(LogLevel.Debug, ""Param is {p0}"")]
public static partial void LogFunc(ILogger logger, IRedactorProvider provider, MyRecord /*0+*/p0/*-0*/);
}");
}
}