forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystemDiagnosticsTraceWriterTest.cs
More file actions
1211 lines (1002 loc) · 45.8 KB
/
Copy pathSystemDiagnosticsTraceWriterTest.cs
File metadata and controls
1211 lines (1002 loc) · 45.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
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) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic;
using System.Diagnostics;
using System.Net;
using System.Net.Http;
using System.Net.Http.Formatting;
using System.Web.Http.ModelBinding;
using Microsoft.TestCommon;
namespace System.Web.Http.Tracing.Diagnostics.Test
{
public class SystemDiagnosticsTraceWriterTest
{
// Duplicates of constants in HttpError
private const string MessageKey = "Message";
private const string MessageDetailKey = "MessageDetail";
private const string ModelStateKey = "ModelState";
private const string ExceptionMessageKey = "ExceptionMessage";
private const string ExceptionTypeKey = "ExceptionType";
private const string StackTraceKey = "StackTrace";
private const string InnerExceptionKey = "InnerException";
[Fact]
public void Ctor_Initializes_Properties()
{
// Arrange
SystemDiagnosticsTraceWriter writer = new SystemDiagnosticsTraceWriter();
// Act & Assert
Assert.False(writer.IsVerbose);
Assert.Equal(TraceLevel.Info, writer.MinimumLevel);
Assert.Null(writer.TraceSource);
}
[Fact]
public void TraceSource_Accepts_Custom_TraceSource()
{
// Arrange
SystemDiagnosticsTraceWriter writer = new SystemDiagnosticsTraceWriter();
TraceSource traceSource = new TraceSource("CustomTraceSource");
// Act
writer.TraceSource = traceSource;
// Assert
Assert.Equal(traceSource, writer.TraceSource);
}
[Fact]
public void TraceSource_Accepts_Null_TraceSource()
{
// Arrange
SystemDiagnosticsTraceWriter writer = new SystemDiagnosticsTraceWriter();
// Act
writer.TraceSource = null;
// Assert
Assert.Null(writer.TraceSource);
}
[Theory]
[InlineData(TraceLevel.Debug)]
[InlineData(TraceLevel.Info)]
[InlineData(TraceLevel.Warn)]
[InlineData(TraceLevel.Error)]
[InlineData(TraceLevel.Fatal)]
public void MinimumLevel_Setter_Accepts_All_Legal_Levels(TraceLevel level)
{
// Arrange
SystemDiagnosticsTraceWriter writer = new SystemDiagnosticsTraceWriter();
// Act
writer.MinimumLevel = level;
// Assert
Assert.Equal(level, writer.MinimumLevel);
}
[Theory]
[InlineData(TraceLevel.Off - 1)]
[InlineData(TraceLevel.Fatal + 1)]
public void MinimumLevel_Setter_Throws_With_Bad_Level(TraceLevel level)
{
// Arrange & Act & Assert
ArgumentOutOfRangeException exception = Assert.Throws<ArgumentOutOfRangeException>(() => { new SystemDiagnosticsTraceWriter().MinimumLevel = level; });
Assert.Equal("value", exception.ParamName);
Assert.Contains("The TraceLevel property must be a value between TraceLevel.Off and TraceLevel.Fatal, inclusive.", exception.Message);
Assert.Equal(level, exception.ActualValue);
}
[Fact]
public void Trace_Throws_With_Null_Category()
{
// Arrange
SystemDiagnosticsTraceWriter writer = new SystemDiagnosticsTraceWriter();
// Act & Assert
ArgumentNullException exception = Assert.Throws<ArgumentNullException>(
() => writer.Trace(new HttpRequestMessage(),
null,
TraceLevel.Info,
(tr) => { }));
Assert.Equal("category", exception.ParamName);
}
[Fact]
public void Trace_Throws_With_Null_TraceAction()
{
// Arrange
SystemDiagnosticsTraceWriter writer = new SystemDiagnosticsTraceWriter();
// Act & Assert
ArgumentNullException exception = Assert.Throws<ArgumentNullException>(
() => writer.Trace(new HttpRequestMessage(),
"MyCategory",
TraceLevel.Info,
traceAction: null));
Assert.Equal("traceAction", exception.ParamName);
}
[Theory]
[InlineData(TraceLevel.Off - 1)]
[InlineData(TraceLevel.Fatal + 1)]
public void Trace_Throws_With_Illegal_Level(TraceLevel level)
{
// Arrange
SystemDiagnosticsTraceWriter writer = new SystemDiagnosticsTraceWriter();
// Act & Assert
ArgumentOutOfRangeException exception = Assert.Throws<ArgumentOutOfRangeException>(
() => writer.Trace(new HttpRequestMessage(),
"MyCategory",
level,
(tr) => { }));
Assert.Equal("level", exception.ParamName);
Assert.Contains("The TraceLevel property must be a value between TraceLevel.Off and TraceLevel.Fatal, inclusive.", exception.Message);
Assert.Equal(level, exception.ActualValue);
}
[Fact]
public void Trace_Writes_To_Custom_TraceSource()
{
// Arrange
SystemDiagnosticsTraceWriter writer = CreateTraceWriter();
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
// Act
writer.Info(request, "TestCategory", "TestMessage");
// Assert
Assert.Equal("Message='TestMessage'", ((TestTraceListener)writer.TraceSource.Listeners[0]).Messages[0]);
}
[Theory]
[InlineData(TraceLevel.Debug, TraceEventType.Verbose)]
[InlineData(TraceLevel.Info, TraceEventType.Information)]
[InlineData(TraceLevel.Warn, TraceEventType.Warning)]
[InlineData(TraceLevel.Error, TraceEventType.Error)]
[InlineData(TraceLevel.Fatal, TraceEventType.Critical)]
public void Trace_Writes_Correct_EventType_To_TraceListeners(TraceLevel level, TraceEventType diagnosticLevel)
{
// Arrange
SystemDiagnosticsTraceWriter writer = CreateTraceWriter();
writer.MinimumLevel = level;
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
// Act
writer.Trace(request, "TestCategory", level, (tr) => { tr.Message = "TestMessage"; });
// Assert
Assert.Equal(diagnosticLevel, ((TestTraceListener)writer.TraceSource.Listeners[0]).TraceEventType);
}
[Theory]
[InlineData(TraceLevel.Debug)]
[InlineData(TraceLevel.Info)]
[InlineData(TraceLevel.Warn)]
[InlineData(TraceLevel.Error)]
[InlineData(TraceLevel.Fatal)]
public void Trace_Verbose_Writes_Correct_Message_To_TraceListeners_With_All_Fields_Set(TraceLevel level)
{
// Arrange
SystemDiagnosticsTraceWriter writer = CreateTraceWriter();
writer.MinimumLevel = level;
writer.IsVerbose = true;
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
InvalidOperationException exception = new InvalidOperationException("TestException");
// Act
writer.Trace(request, "TestCategory", level, (tr) =>
{
tr.Message = "TestMessage";
tr.Operation = "TestOperation";
tr.Operator = "TestOperator";
tr.Status = HttpStatusCode.Accepted;
tr.Exception = exception;
});
// Assert
string expected = String.Format("Level={0}, Kind=Trace, Category='TestCategory', Id={1}, Message='TestMessage', Operation=TestOperator.TestOperation, Status=202 (Accepted), Exception={2}",
level.ToString(),
request.GetCorrelationId().ToString(),
exception.ToString());
string actual = ((TestTraceListener)writer.TraceSource.Listeners[0]).Messages[0].Trim();
string timePrefix = "] ";
actual = actual.Substring(actual.IndexOf(timePrefix) + timePrefix.Length);
Assert.Equal(expected, actual);
}
[Theory]
[InlineData(TraceLevel.Debug)]
[InlineData(TraceLevel.Info)]
[InlineData(TraceLevel.Warn)]
[InlineData(TraceLevel.Error)]
[InlineData(TraceLevel.Fatal)]
public void Trace_Brief_Writes_Correct_Message_To_TraceListeners_With_All_Fields_Set(TraceLevel level)
{
// Arrange
SystemDiagnosticsTraceWriter writer = CreateTraceWriter();
writer.MinimumLevel = level;
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
InvalidOperationException exception = new InvalidOperationException("TestException");
// Act
writer.Trace(request, "TestCategory", level, (tr) =>
{
tr.Message = "TestMessage";
tr.Operation = "TestOperation";
tr.Operator = "TestOperator";
tr.Status = HttpStatusCode.Accepted;
tr.Exception = exception;
});
// Assert
string expected = "Message='TestMessage', Operation=TestOperator.TestOperation, Status=202 (Accepted), Exception=System.InvalidOperationException: TestException";
string actual = ((TestTraceListener)writer.TraceSource.Listeners[0]).Messages[0].Trim();
Assert.Equal(expected, actual);
}
[Fact]
public void Trace_Verbose_Writes_Correct_Message_To_TraceListeners_With_Only_Required_Fields_Set()
{
// Arrange
SystemDiagnosticsTraceWriter writer = CreateTraceWriter();
writer.IsVerbose = true;
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
InvalidOperationException exception = new InvalidOperationException("TestException");
// Act
writer.Info(request, "TestCategory", String.Empty);
// Assert
string expected = String.Format("Level=Info, Kind=Trace, Category='TestCategory', Id={0}",
request.GetCorrelationId().ToString());
string actual = ((TestTraceListener)writer.TraceSource.Listeners[0]).Messages[0].Trim();
string timePrefix = "] ";
actual = actual.Substring(actual.IndexOf(timePrefix) + timePrefix.Length);
Assert.Equal(expected, actual);
}
[Fact]
public void Trace_Brief_Writes_Correct_Message_To_TraceListeners_With_Only_Required_Fields_Set()
{
// Arrange
SystemDiagnosticsTraceWriter writer = CreateTraceWriter();
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
InvalidOperationException exception = new InvalidOperationException("TestException");
// Act
writer.Info(request, "TestCategory", "TestMessage");
// Assert
string expected = "Message='TestMessage'";
string actual = ((TestTraceListener)writer.TraceSource.Listeners[0]).Messages[0].Trim();
Assert.Equal(expected, actual);
}
[Fact]
public void Trace_Brief_Trace_Does_Not_Trace_When_No_Data()
{
// Arrange
SystemDiagnosticsTraceWriter writer = CreateTraceWriter();
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
InvalidOperationException exception = new InvalidOperationException("TestException");
// Act
writer.Trace(request, "TestCategory", TraceLevel.Info, (tr) => { });
// Assert
Assert.Equal(0, ((TestTraceListener)writer.TraceSource.Listeners[0]).Messages.Count);
}
[Fact]
public void Trace_Brief_Trace_Does_Not_Trace_BeginKind()
{
// Arrange
SystemDiagnosticsTraceWriter writer = CreateTraceWriter();
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
InvalidOperationException exception = new InvalidOperationException("TestException");
// Act
writer.Trace(request, "TestCategory", TraceLevel.Info, (tr) => { tr.Kind = TraceKind.Begin; tr.Message = "TestMessage"; });
// Assert
Assert.Equal(0, ((TestTraceListener)writer.TraceSource.Listeners[0]).Messages.Count);
}
[Theory]
[InlineData(TraceLevel.Debug)]
[InlineData(TraceLevel.Info)]
[InlineData(TraceLevel.Warn)]
[InlineData(TraceLevel.Error)]
[InlineData(TraceLevel.Fatal)]
public void Trace_Does_Not_Trace_Below_Minimum_Level(TraceLevel level)
{
// Arrange
SystemDiagnosticsTraceWriter writer = CreateTraceWriter();
writer.MinimumLevel = level;
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
InvalidOperationException exception = new InvalidOperationException("TestException");
// Act
writer.Trace(request, "TestCategory", level - 1, (tr) => { });
// Assert
Assert.Equal(0, ((TestTraceListener)writer.TraceSource.Listeners[0]).Messages.Count);
}
[Fact]
public void Trace_Traces_Warning_EventType_When_Translates_HttpResponseException_Error()
{
// Arrange
SystemDiagnosticsTraceWriter writer = CreateTraceWriter();
writer.IsVerbose = true;
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
HttpResponseMessage response = request.CreateErrorResponse(HttpStatusCode.BadRequest, "bad request");
HttpResponseException responseException = new HttpResponseException(response);
// Act
writer.Error(request, "TestCategory", responseException);
// Assert
Assert.Equal(TraceEventType.Warning, ((TestTraceListener)writer.TraceSource.Listeners[0]).TraceEventType);
}
[Fact]
void Format_Throws_With_Null_TraceRecord()
{
// Arrange & Act & Assert
ArgumentNullException exception =
Assert.Throws<ArgumentNullException>(
() => { new SystemDiagnosticsTraceWriter().Format(null); });
Assert.Equal("traceRecord", exception.ParamName);
}
[Theory]
[InlineData(TraceLevel.Debug)]
[InlineData(TraceLevel.Info)]
[InlineData(TraceLevel.Warn)]
[InlineData(TraceLevel.Error)]
[InlineData(TraceLevel.Fatal)]
public void Format_Verbose_Builds_Trace_With_All_TraceRecord_Properties(TraceLevel level)
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
InvalidOperationException exception;
try
{
// Want the full stack trace in the payload
throw new InvalidOperationException("TestException");
}
catch (InvalidOperationException ex)
{
exception = ex;
}
TraceRecord traceRecord = new TraceRecord(request, "TestCategory", level)
{
Message = "TestMessage",
Operation = "TestOperation",
Operator = "TestOperator",
Status = HttpStatusCode.Accepted,
Exception = exception
};
// Act
string formattedTrace = new SystemDiagnosticsTraceWriter() { IsVerbose = true }.Format(traceRecord);
// Assert
AssertContainsExactly(formattedTrace,
new Dictionary<string, string>
{
{ "Level", level.ToString() },
{ "Kind", TraceKind.Trace.ToString() },
{ "Category", "'TestCategory'"},
{ "Id", request.GetCorrelationId().ToString() },
{ "Message", "'TestMessage'" },
{ "Operation", "TestOperator.TestOperation" },
{ "Status", "202 (Accepted)" },
{ "Exception", exception.ToString() },
});
}
[Fact]
public void Format_Builds_Trace_With_Null_Fields()
{
// Arrange
TraceRecord traceRecord = new TraceRecord(request: null, category: null, level: TraceLevel.Info)
{
Message = null,
Operation = null,
Operator = null,
};
// Act
string formattedTrace = new SystemDiagnosticsTraceWriter() { IsVerbose = true }.Format(traceRecord);
// Assert
AssertContainsExactly(formattedTrace,
new Dictionary<string, string>
{
{ "Level", TraceLevel.Info.ToString() },
{ "Kind", TraceKind.Trace.ToString() },
{ "Id", new Guid().ToString() }
});
}
[Fact]
public void Format_Delegates_To_FormatRequestEnvelope_Begin()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
TraceRecord traceRecord = new TraceRecord(request, "System.Web.Http.Request", TraceLevel.Info)
{
Kind = TraceKind.Begin,
};
// Act
string actualTrace = new SystemDiagnosticsTraceWriter() { IsVerbose = true }.Format(traceRecord);
// Assert
string timePrefix = "] ";
actualTrace = actualTrace.Substring(actualTrace.IndexOf(timePrefix) + timePrefix.Length);
string expectedTrace = String.Format("Request received, Method=GET, Url=http://localhost/, Id={0}", traceRecord.RequestId.ToString());
Assert.Equal(expectedTrace, actualTrace);
}
[Fact]
public void Format_Verbose_Delegates_To_FormatRequestEnvelope_End()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
TraceRecord traceRecord = new TraceRecord(request, "System.Web.Http.Request", TraceLevel.Info)
{
Kind = TraceKind.End,
};
// Act
string actualTrace = new SystemDiagnosticsTraceWriter() { IsVerbose = true }.Format(traceRecord);
// Assert
string timePrefix = "] ";
actualTrace = actualTrace.Substring(actualTrace.IndexOf(timePrefix) + timePrefix.Length);
string expectedTrace = String.Format("Sending response, Method=GET, Url=http://localhost/, Id={0}", traceRecord.RequestId.ToString());
Assert.Equal(expectedTrace, actualTrace);
}
[Fact]
void FormatRequestEnvelope_Throws_With_Null_TraceRecord()
{
// Arrange & Act & Assert
ArgumentNullException exception =
Assert.Throws<ArgumentNullException>(
() => { new SystemDiagnosticsTraceWriter().FormatRequestEnvelope(null); });
Assert.Equal("traceRecord", exception.ParamName);
}
[Fact]
public void FormatRequestEnvelope_Verbose_Builds_Correct_Begin_Trace_With_Only_Required_Fields()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
TraceRecord traceRecord = new TraceRecord(request, "System.Web.Http.Request", TraceLevel.Info)
{
Kind = TraceKind.Begin,
};
// Act
string actualTrace = new SystemDiagnosticsTraceWriter() { IsVerbose = true }.FormatRequestEnvelope(traceRecord);
// Assert
string timePrefix = "] ";
actualTrace = actualTrace.Substring(actualTrace.IndexOf(timePrefix) + timePrefix.Length);
string expectedTrace = String.Format("Request received, Method=GET, Url=http://localhost/, Id={0}", traceRecord.RequestId.ToString());
Assert.Equal(expectedTrace, actualTrace);
}
[Fact]
public void FormatRequestEnvelope_Verbose_Builds_Correct_Begin_Trace_With_All_Fields()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
Exception exception = null;
try
{
throw new InvalidOperationException("ExceptionMessage");
}
catch (Exception ex)
{
exception = ex;
}
TraceRecord traceRecord = new TraceRecord(request, "System.Web.Http.Request", TraceLevel.Info)
{
Kind = TraceKind.Begin,
Message = "EnvelopeMessage",
Exception = exception
};
// Act
string actualTrace = new SystemDiagnosticsTraceWriter() { IsVerbose = true }.FormatRequestEnvelope(traceRecord);
// Assert
string timePrefix = "] ";
actualTrace = actualTrace.Substring(actualTrace.IndexOf(timePrefix) + timePrefix.Length);
string expectedTrace = String.Format("Request received, Method=GET, Url=http://localhost/, Id={0}, Message='EnvelopeMessage', Exception={1}",
traceRecord.RequestId.ToString(),
exception.ToString().Trim());
Assert.Equal(expectedTrace, actualTrace);
}
[Fact]
public void FormatRequestEnvelope_Verbose_Builds_Correct_Begin_Trace_With_Null_Fields()
{
// Arrange
TraceRecord traceRecord = new TraceRecord(request: null, category: null, level: TraceLevel.Info)
{
Kind = TraceKind.Begin,
};
// Act
string actualTrace = new SystemDiagnosticsTraceWriter() { IsVerbose = true }.FormatRequestEnvelope(traceRecord);
// Assert
string timePrefix = "] ";
actualTrace = actualTrace.Substring(actualTrace.IndexOf(timePrefix) + timePrefix.Length);
string expectedTrace = String.Format("Request received, Id={0}", traceRecord.RequestId.ToString());
Assert.Equal(expectedTrace, actualTrace);
}
[Fact]
public void FormatRequestEnvelope_Verbose_Builds_Correct_End_Trace_With_Only_Required_Fields()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
TraceRecord traceRecord = new TraceRecord(request, "System.Web.Http.Request", TraceLevel.Info)
{
Kind = TraceKind.End,
Status = HttpStatusCode.Accepted
};
// Act
string actualTrace = new SystemDiagnosticsTraceWriter() { IsVerbose = true }.FormatRequestEnvelope(traceRecord);
// Assert
string timePrefix = "] ";
actualTrace = actualTrace.Substring(actualTrace.IndexOf(timePrefix) + timePrefix.Length);
string expectedTrace = String.Format("Sending response, Status=202 (Accepted), Method=GET, Url=http://localhost/, Id={0}", traceRecord.RequestId.ToString());
Assert.Equal(expectedTrace, actualTrace);
}
[Fact]
public void FormatRequestEnvelope_Verbose_Builds_Correct_End_Trace_With_All_Fields()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
Exception exception = null;
try
{
throw new InvalidOperationException("ExceptionMessage");
}
catch (Exception ex)
{
exception = ex;
}
TraceRecord traceRecord = new TraceRecord(request, "System.Web.Http.Request", TraceLevel.Info)
{
Kind = TraceKind.End,
Status = HttpStatusCode.Accepted,
Message = "EnvelopeMessage",
Exception = exception
};
// Act
string actualTrace = new SystemDiagnosticsTraceWriter() { IsVerbose = true }.FormatRequestEnvelope(traceRecord);
// Assert
string timePrefix = "] ";
actualTrace = actualTrace.Substring(actualTrace.IndexOf(timePrefix) + timePrefix.Length);
string expectedTrace = String.Format("Sending response, Status=202 (Accepted), Method=GET, Url=http://localhost/, Id={0}, Message={1}, Exception={2}",
traceRecord.RequestId.ToString(),
"'EnvelopeMessage'",
exception.ToString().Trim());
Assert.Equal(expectedTrace, actualTrace);
}
[Fact]
public void FormatRequestEnvelope_Verbose_Builds_Correct_End_Trace_With_Null_Fields()
{
// Arrange
TraceRecord traceRecord = new TraceRecord(request: null, category: null, level: TraceLevel.Info)
{
Kind = TraceKind.End,
};
// Act
string actualTrace = new SystemDiagnosticsTraceWriter() { IsVerbose = true }.FormatRequestEnvelope(traceRecord);
// Assert
string timePrefix = "] ";
actualTrace = actualTrace.Substring(actualTrace.IndexOf(timePrefix) + timePrefix.Length);
string expectedTrace = String.Format("Sending response, Id={0}", traceRecord.RequestId.ToString());
Assert.Equal(expectedTrace, actualTrace);
}
[Fact]
void TranslateHttpResponseException_Throws_With_Null_TraceRecord()
{
// Arrange & Act & Assert
ArgumentNullException exception =
Assert.Throws<ArgumentNullException>(
() => { new SystemDiagnosticsTraceWriter().TranslateHttpResponseException(null); });
Assert.Equal("traceRecord", exception.ParamName);
}
[Fact]
public void TranslateHttpResponseException_Copies_Status_From_Response()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
TraceRecord traceRecord = new TraceRecord(request, "MyCategory", TraceLevel.Error)
{
Exception = new HttpResponseException(new HttpResponseMessage(HttpStatusCode.BadRequest))
};
// Act
new SystemDiagnosticsTraceWriter().TranslateHttpResponseException(traceRecord);
// Assert
Assert.Equal(HttpStatusCode.BadRequest, traceRecord.Status);
}
[Fact]
public void TranslateHttpResponseException_Maps_Client_Error_To_Warning()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
TraceRecord traceRecord = new TraceRecord(request, "MyCategory", TraceLevel.Error)
{
Exception = new HttpResponseException(new HttpResponseMessage(HttpStatusCode.BadRequest))
};
// Act
new SystemDiagnosticsTraceWriter().TranslateHttpResponseException(traceRecord);
// Assert
Assert.Equal(TraceLevel.Warn, traceRecord.Level);
}
[Fact]
public void TranslateHttpResponseException_Maps_Non_Errors_To_Info()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
TraceRecord traceRecord = new TraceRecord(request, "MyCategory", TraceLevel.Error)
{
Exception = new HttpResponseException(new HttpResponseMessage(HttpStatusCode.Moved))
};
// Act
new SystemDiagnosticsTraceWriter().TranslateHttpResponseException(traceRecord);
// Assert
Assert.Equal(TraceLevel.Info, traceRecord.Level);
}
[Fact]
public void TranslateHttpResponseException_Does_Not_Alter_Server_Errors()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
TraceRecord traceRecord = new TraceRecord(request, "MyCategory", TraceLevel.Error)
{
Exception = new HttpResponseException(new HttpResponseMessage(HttpStatusCode.InternalServerError))
};
// Act
new SystemDiagnosticsTraceWriter().TranslateHttpResponseException(traceRecord);
// Assert
Assert.Equal(TraceLevel.Error, traceRecord.Level);
}
[Fact]
public void TranslateHttpResponseException_Unpacks_Empty_HttpError()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
HttpError httpError = new HttpError();
HttpResponseMessage errorResponse = request.CreateResponse(HttpStatusCode.BadRequest);
errorResponse.Content = new ObjectContent<HttpError>(httpError, new JsonMediaTypeFormatter());
TraceRecord traceRecord = new TraceRecord(request, "MyCategory", TraceLevel.Error)
{
Exception = new HttpResponseException(errorResponse)
};
// Act
new SystemDiagnosticsTraceWriter().TranslateHttpResponseException(traceRecord);
// Assert
Assert.Equal(0, ParseTrace(traceRecord.Message).Count);
}
[Fact]
public void TranslateHttpResponseException_Unpacks_HttpError_With_All_Fields_Set()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
Exception exception = null;
try
{
throw new InvalidOperationException("ExpectedExceptionMessage");
}
catch (Exception ex)
{
exception = ex;
}
HttpError httpError = new HttpError(exception, includeErrorDetail: true);
httpError.Message = "ExpectedUserMessage";
httpError[MessageDetailKey] = "ExpectedDetailMessage";
HttpResponseMessage errorResponse = request.CreateResponse(HttpStatusCode.BadRequest);
errorResponse.Content = new ObjectContent<HttpError>(httpError, new JsonMediaTypeFormatter());
TraceRecord traceRecord = new TraceRecord(request, "MyCategory", TraceLevel.Error)
{
Exception = new HttpResponseException(errorResponse)
};
// Act
new SystemDiagnosticsTraceWriter().TranslateHttpResponseException(traceRecord);
// Assert
Assert.Equal(TraceLevel.Warn, traceRecord.Level);
AssertContainsExactly(traceRecord.Message, new Dictionary<string, string>()
{
{ "UserMessage", "'ExpectedUserMessage'" },
{ "MessageDetail", "'ExpectedDetailMessage'" },
{ "ExceptionType", "'System.InvalidOperationException'" },
{ "ExceptionMessage", "'ExpectedExceptionMessage'" },
{ "StackTrace", exception.StackTrace.Trim() }
});
}
[Fact]
public void TranslateHttpResponseException_Unpacks_HttpError_With_Inner_Exceptions()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
Exception exception1 = null;
Exception exception2 = null;
Exception exception3 = null;
try
{
throw new NotSupportedException("ExpectedExceptionMessage3");
}
catch (Exception ex)
{
exception3 = ex;
}
try
{
throw new NotImplementedException("ExpectedExceptionMessage2", exception3);
}
catch (Exception ex)
{
exception2 = ex;
}
try
{
throw new InvalidOperationException("ExpectedExceptionMessage1", exception2);
}
catch (Exception ex)
{
exception1 = ex;
}
HttpError httpError = new HttpError(exception1, includeErrorDetail: true);
httpError.Message = "ExpectedUserMessage";
httpError[MessageDetailKey] = "ExpectedDetailMessage";
HttpResponseMessage errorResponse = request.CreateResponse(HttpStatusCode.BadRequest);
errorResponse.Content = new ObjectContent<HttpError>(httpError, new JsonMediaTypeFormatter());
TraceRecord traceRecord = new TraceRecord(request, "System.Web.Http.Request", TraceLevel.Error)
{
Exception = new HttpResponseException(errorResponse)
};
// Act
new SystemDiagnosticsTraceWriter().TranslateHttpResponseException(traceRecord);
// Assert
Assert.Equal(TraceLevel.Warn, traceRecord.Level);
AssertContainsExactly(traceRecord.Message, new Dictionary<string, string>()
{
{ "UserMessage", "'ExpectedUserMessage'" },
{ "MessageDetail", "'ExpectedDetailMessage'" },
{ "ExceptionType", "'System.InvalidOperationException'" },
{ "ExceptionMessage", "'ExpectedExceptionMessage1'" },
{ "StackTrace", exception1.StackTrace.Trim() },
{ "ExceptionType[1]", "'System.NotImplementedException'" },
{ "ExceptionMessage[1]", "'ExpectedExceptionMessage2'" },
{ "StackTrace[1]", exception2.StackTrace.Trim() },
{ "ExceptionType[2]", "'System.NotSupportedException'" },
{ "ExceptionMessage[2]", "'ExpectedExceptionMessage3'" },
{ "StackTrace[2]", exception3.StackTrace.Trim() }
});
}
[Fact]
public void TranslateHttpResponseException_HiddenInAggregateException_UnpackTheMostSevere()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new Uri("http://localhost"),
Method = HttpMethod.Get
};
var ex500 = new HttpResponseException(HttpStatusCode.InternalServerError);
var ex503 = new HttpResponseException(HttpStatusCode.ServiceUnavailable);
var ex401 = new HttpResponseException(HttpStatusCode.Unauthorized);
var ex503IsWithinMe = new Exception("I have 503 inside me", ex503);