forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDiagnosticsTests.cs
1151 lines (990 loc) · 56.2 KB
/
DiagnosticsTests.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.Tracing;
using System.IO;
using System.Linq;
using System.Net.Http.Headers;
using System.Net.Test.Common;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.DotNet.RemoteExecutor;
using Xunit;
using Xunit.Abstractions;
namespace System.Net.Http.Functional.Tests
{
[ActiveIssue("Foo")]
public abstract class DiagnosticsTest : HttpClientHandlerTestBase
{
private const string EnableActivityPropagationEnvironmentVariableSettingName = "DOTNET_SYSTEM_NET_HTTP_ENABLEACTIVITYPROPAGATION";
private const string EnableActivityPropagationAppCtxSettingName = "System.Net.Http.EnableActivityPropagation";
private static bool EnableActivityPropagationEnvironmentVariableIsNotSetAndRemoteExecutorSupported =>
string.IsNullOrEmpty(Environment.GetEnvironmentVariable(EnableActivityPropagationEnvironmentVariableSettingName)) && RemoteExecutor.IsSupported;
private static readonly Uri InvalidUri = new("http://nosuchhost.invalid");
public DiagnosticsTest(ITestOutputHelper output) : base(output) { }
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/71877", TestPlatforms.Browser)]
public void EventSource_ExistsWithCorrectId()
{
Type esType = typeof(HttpClient).Assembly.GetType("System.Net.NetEventSource", throwOnError: true, ignoreCase: false);
Assert.NotNull(esType);
Assert.Equal("Private.InternalDiagnostics.System.Net.Http", EventSource.GetName(esType));
Assert.Equal(Guid.Parse("a60cec70-947b-5b80-efe2-7c5547b99b3d"), EventSource.GetGuid(esType));
Assert.NotEmpty(EventSource.GenerateManifest(esType, "assemblyPathToIncludeInManifest"));
}
// Diagnostic tests are each invoked in their own process as they enable/disable
// process-wide EventSource-based tracing, and other tests in the same process
// could interfere with the tests, as well as the enabling of tracing interfering
// with those tests.
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public async Task SendAsync_ExpectedDiagnosticSourceLogging()
{
await RemoteExecutor.Invoke(async (useVersion, testAsync) =>
{
HttpRequestMessage requestLogged = null;
HttpResponseMessage responseLogged = null;
Guid requestGuid = Guid.Empty;
Guid responseGuid = Guid.Empty;
bool exceptionLogged = false;
bool activityLogged = false;
TaskCompletionSource responseLoggedTcs = new(TaskCreationOptions.RunContinuationsAsynchronously);
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.Request"))
{
Assert.NotNull(kvp.Value);
requestLogged = GetProperty<HttpRequestMessage>(kvp.Value, "Request");
requestGuid = GetProperty<Guid>(kvp.Value, "LoggingRequestId");
}
else if (kvp.Key.Equals("System.Net.Http.Response"))
{
Assert.NotNull(kvp.Value);
responseLogged = GetProperty<HttpResponseMessage>(kvp.Value, "Response");
responseGuid = GetProperty<Guid>(kvp.Value, "LoggingRequestId");
TaskStatus requestStatus = GetProperty<TaskStatus>(kvp.Value, "RequestTaskStatus");
Assert.Equal(TaskStatus.RanToCompletion, requestStatus);
responseLoggedTcs.SetResult();
}
else if (kvp.Key.Equals("System.Net.Http.Exception"))
{
exceptionLogged = true;
}
else if (kvp.Key.StartsWith("System.Net.Http.HttpRequestOut"))
{
activityLogged = true;
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
diagnosticListenerObserver.Enable(s => !s.Contains("HttpRequestOut"));
await GetFactoryForVersion(useVersion).CreateClientAndServerAsync(
async uri =>
{
(HttpRequestMessage request, HttpResponseMessage response) = await GetAsync(useVersion, testAsync, uri);
await responseLoggedTcs.Task;
Assert.Same(request, requestLogged);
Assert.Same(response, responseLogged);
},
async server => await server.HandleRequestAsync());
Assert.Equal(requestGuid, responseGuid);
Assert.False(exceptionLogged, "Exception was logged for successful request");
Assert.False(activityLogged, "HttpOutReq was logged while HttpOutReq logging was disabled");
}
}, UseVersion.ToString(), TestAsync.ToString()).DisposeAsync();
}
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public async Task SendAsync_ExpectedDiagnosticSourceNoLogging()
{
await RemoteExecutor.Invoke(async (useVersion, testAsync) =>
{
bool requestLogged = false;
bool responseLogged = false;
bool activityStartLogged = false;
bool activityStopLogged = false;
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.Request"))
{
requestLogged = true;
}
else if (kvp.Key.Equals("System.Net.Http.Response"))
{
responseLogged = true;
}
else if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Start"))
{
activityStartLogged = true;
}
else if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Stop"))
{
activityStopLogged = true;
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
await GetFactoryForVersion(useVersion).CreateClientAndServerAsync(
async uri =>
{
await GetAsync(useVersion, testAsync, uri);
},
async server =>
{
HttpRequestData request = await server.AcceptConnectionSendResponseAndCloseAsync();
AssertNoHeadersAreInjected(request);
});
Assert.False(requestLogged, "Request was logged while logging disabled.");
Assert.False(activityStartLogged, "HttpRequestOut.Start was logged while logging disabled.");
Assert.False(responseLogged, "Response was logged while logging disabled.");
Assert.False(activityStopLogged, "HttpRequestOut.Stop was logged while logging disabled.");
}
}, UseVersion.ToString(), TestAsync.ToString()).DisposeAsync();
}
[ConditionalTheory(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
[InlineData(false)]
[InlineData(true)]
public async Task SendAsync_HttpTracingEnabled_Succeeds(bool useSsl)
{
if (useSsl && UseVersion == HttpVersion.Version20 && !PlatformDetection.SupportsAlpn)
{
return;
}
await RemoteExecutor.Invoke(async (useVersion, useSsl, testAsync) =>
{
using (var listener = new TestEventListener("Private.InternalDiagnostics.System.Net.Http", EventLevel.Verbose))
{
var events = new ConcurrentQueue<EventWrittenEventArgs>();
await listener.RunWithCallbackAsync(events.Enqueue, async () =>
{
// Exercise various code paths to get coverage of tracing
await GetFactoryForVersion(useVersion).CreateClientAndServerAsync(
async uri => await GetAsync(useVersion, testAsync, uri),
async server => await server.HandleRequestAsync(),
options: new GenericLoopbackOptions { UseSsl = bool.Parse(useSsl) });
});
// We don't validate receiving specific events, but rather that we do at least
// receive some events, and that enabling tracing doesn't cause other failures
// in processing.
Assert.DoesNotContain(events,
ev => ev.EventId == 0); // make sure there are no event source error messages
Assert.InRange(events.Count, 1, int.MaxValue);
}
}, UseVersion.ToString(), useSsl.ToString(), TestAsync.ToString()).DisposeAsync();
}
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public async Task SendAsync_ExpectedDiagnosticExceptionLogging()
{
await RemoteExecutor.Invoke(async (useVersion, testAsync) =>
{
Exception exceptionLogged = null;
TaskCompletionSource responseLoggedTcs = new(TaskCreationOptions.RunContinuationsAsynchronously);
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.Response"))
{
Assert.NotNull(kvp.Value);
TaskStatus requestStatus = GetProperty<TaskStatus>(kvp.Value, "RequestTaskStatus");
Assert.Equal(TaskStatus.Faulted, requestStatus);
responseLoggedTcs.SetResult();
}
else if (kvp.Key.Equals("System.Net.Http.Exception"))
{
Assert.NotNull(kvp.Value);
exceptionLogged = GetProperty<Exception>(kvp.Value, "Exception");
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
diagnosticListenerObserver.Enable();
Exception ex = await Assert.ThrowsAsync<HttpRequestException>(() => GetAsync(useVersion, testAsync, InvalidUri));
await responseLoggedTcs.Task;
Assert.Same(ex, exceptionLogged);
}
}, UseVersion.ToString(), TestAsync.ToString()).DisposeAsync();
}
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public async Task SendAsync_ExpectedDiagnosticCancelledLogging()
{
await RemoteExecutor.Invoke(async (useVersion, testAsync) =>
{
TaskCompletionSource responseLoggedTcs = new(TaskCreationOptions.RunContinuationsAsynchronously);
TaskCompletionSource activityStopTcs = new(TaskCreationOptions.RunContinuationsAsynchronously);
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.Response"))
{
Assert.NotNull(kvp.Value);
TaskStatus status = GetProperty<TaskStatus>(kvp.Value, "RequestTaskStatus");
Assert.Equal(TaskStatus.Canceled, status);
responseLoggedTcs.SetResult();
}
else if (kvp.Key == "System.Net.Http.HttpRequestOut.Stop")
{
Assert.NotNull(kvp.Value);
GetProperty<HttpRequestMessage>(kvp.Value, "Request");
TaskStatus status = GetProperty<TaskStatus>(kvp.Value, "RequestTaskStatus");
Assert.Equal(TaskStatus.Canceled, status);
activityStopTcs.SetResult();
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
diagnosticListenerObserver.Enable();
var cts = new CancellationTokenSource();
await GetFactoryForVersion(useVersion).CreateClientAndServerAsync(
async uri =>
{
await Assert.ThrowsAsync<TaskCanceledException>(() => GetAsync(useVersion, testAsync, uri, cts.Token));
},
async server =>
{
await server.AcceptConnectionAsync(async connection =>
{
cts.Cancel();
await responseLoggedTcs.Task;
await activityStopTcs.Task;
});
});
}
}, UseVersion.ToString(), TestAsync.ToString()).DisposeAsync();
}
[ConditionalTheory(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
[InlineData(ActivityIdFormat.Hierarchical)]
[InlineData(ActivityIdFormat.W3C)]
public async Task SendAsync_ExpectedDiagnosticSourceActivityLogging(ActivityIdFormat idFormat)
{
await RemoteExecutor.Invoke(async (useVersion, testAsync, idFormatString) =>
{
ActivityIdFormat idFormat = Enum.Parse<ActivityIdFormat>(idFormatString);
bool requestLogged = false;
bool responseLogged = false;
bool exceptionLogged = false;
HttpRequestMessage activityStartRequestLogged = null;
HttpRequestMessage activityStopRequestLogged = null;
HttpResponseMessage activityStopResponseLogged = null;
TaskCompletionSource activityStopTcs = new(TaskCreationOptions.RunContinuationsAsynchronously);
Activity parentActivity = new Activity("parent");
parentActivity.SetIdFormat(idFormat);
parentActivity.AddBaggage("correlationId", Guid.NewGuid().ToString("N").ToString());
parentActivity.AddBaggage("moreBaggage", Guid.NewGuid().ToString("N").ToString());
parentActivity.AddTag("tag", "tag"); // add tag to ensure it is not injected into request
parentActivity.TraceStateString = "Foo";
parentActivity.Start();
Assert.Equal(idFormat, parentActivity.IdFormat);
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.Request"))
{
requestLogged = true;
}
else if (kvp.Key.Equals("System.Net.Http.Response"))
{
responseLogged = true;
}
else if (kvp.Key.Equals("System.Net.Http.Exception"))
{
exceptionLogged = true;
}
else if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Start"))
{
Assert.NotNull(kvp.Value);
Assert.NotNull(Activity.Current);
Assert.Equal(parentActivity, Activity.Current.Parent);
activityStartRequestLogged = GetProperty<HttpRequestMessage>(kvp.Value, "Request");
}
else if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Stop"))
{
Assert.NotNull(kvp.Value);
Assert.NotNull(Activity.Current);
Assert.Equal(parentActivity, Activity.Current.Parent);
Assert.True(Activity.Current.Duration != TimeSpan.Zero);
activityStopRequestLogged = GetProperty<HttpRequestMessage>(kvp.Value, "Request");
activityStopResponseLogged = GetProperty<HttpResponseMessage>(kvp.Value, "Response");
TaskStatus requestStatus = GetProperty<TaskStatus>(kvp.Value, "RequestTaskStatus");
Assert.Equal(TaskStatus.RanToCompletion, requestStatus);
activityStopTcs.SetResult();
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
diagnosticListenerObserver.Enable(s => s.Contains("HttpRequestOut"));
await GetFactoryForVersion(useVersion).CreateClientAndServerAsync(
async uri =>
{
(HttpRequestMessage request, HttpResponseMessage response) = await GetAsync(useVersion, testAsync, uri);
await activityStopTcs.Task;
Assert.Same(request, activityStartRequestLogged);
Assert.Same(request, activityStopRequestLogged);
Assert.Same(response, activityStopResponseLogged);
},
async server =>
{
HttpRequestData requestData = await server.AcceptConnectionSendResponseAndCloseAsync();
AssertHeadersAreInjected(requestData, parentActivity);
});
Assert.False(requestLogged, "Request was logged when Activity logging was enabled.");
Assert.False(exceptionLogged, "Exception was logged for successful request");
Assert.False(responseLogged, "Response was logged when Activity logging was enabled.");
}
}, UseVersion.ToString(), TestAsync.ToString(), idFormat.ToString()).DisposeAsync();
}
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public async Task SendAsync_ExpectedDiagnosticSourceActivityLogging_InvalidBaggage()
{
await RemoteExecutor.Invoke(async (useVersion, testAsync) =>
{
bool exceptionLogged = false;
TaskCompletionSource activityStopTcs = new(TaskCreationOptions.RunContinuationsAsynchronously);
Activity parentActivity = new Activity("parent");
parentActivity.SetIdFormat(ActivityIdFormat.Hierarchical);
parentActivity.AddBaggage("bad/key", "value");
parentActivity.AddBaggage("goodkey", "bad/value");
parentActivity.AddBaggage("key", "value");
parentActivity.Start();
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Stop"))
{
Assert.NotNull(kvp.Value);
Assert.NotNull(Activity.Current);
Assert.Equal(parentActivity, Activity.Current.Parent);
Assert.True(Activity.Current.Duration != TimeSpan.Zero);
HttpRequestMessage request = GetProperty<HttpRequestMessage>(kvp.Value, "Request");
Assert.True(request.Headers.TryGetValues("Request-Id", out var requestId));
Assert.True(request.Headers.TryGetValues("Correlation-Context", out var correlationContext));
Assert.Equal("key=value, goodkey=bad%2Fvalue, bad%2Fkey=value", Assert.Single(correlationContext));
TaskStatus requestStatus = GetProperty<TaskStatus>(kvp.Value, "RequestTaskStatus");
Assert.Equal(TaskStatus.RanToCompletion, requestStatus);
activityStopTcs.SetResult();
}
else if (kvp.Key.Equals("System.Net.Http.Exception"))
{
exceptionLogged = true;
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
diagnosticListenerObserver.Enable(s => s.Contains("HttpRequestOut"));
await GetFactoryForVersion(useVersion).CreateClientAndServerAsync(
async uri =>
{
await GetAsync(useVersion, testAsync, uri);
},
async server => await server.HandleRequestAsync());
await activityStopTcs.Task;
Assert.False(exceptionLogged, "Exception was logged for successful request");
}
}, UseVersion.ToString(), TestAsync.ToString()).DisposeAsync();
}
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public async Task SendAsync_ExpectedDiagnosticSourceActivityLoggingDoesNotOverwriteHeader()
{
await RemoteExecutor.Invoke(async (useVersion, testAsync) =>
{
bool activityStartLogged = false;
TaskCompletionSource activityStopTcs = new(TaskCreationOptions.RunContinuationsAsynchronously);
Activity parentActivity = new Activity("parent");
parentActivity.SetIdFormat(ActivityIdFormat.Hierarchical);
parentActivity.AddBaggage("correlationId", Guid.NewGuid().ToString("N").ToString());
parentActivity.Start();
string customRequestIdHeader = "|foo.bar.";
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Start"))
{
HttpRequestMessage request = GetProperty<HttpRequestMessage>(kvp.Value, "Request");
request.Headers.Add("Request-Id", customRequestIdHeader);
activityStartLogged = true;
}
else if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Stop"))
{
HttpRequestMessage request = GetProperty<HttpRequestMessage>(kvp.Value, "Request");
Assert.Single(request.Headers.GetValues("Request-Id"));
Assert.Equal(customRequestIdHeader, request.Headers.GetValues("Request-Id").Single());
Assert.False(request.Headers.TryGetValues("traceparent", out var _));
Assert.False(request.Headers.TryGetValues("tracestate", out var _));
activityStopTcs.SetResult();
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
diagnosticListenerObserver.Enable();
await GetFactoryForVersion(useVersion).CreateClientAndServerAsync(
async uri =>
{
await GetAsync(useVersion, testAsync, uri);
},
async server => await server.HandleRequestAsync());
await activityStopTcs.Task;
Assert.True(activityStartLogged, "HttpRequestOut.Start was not logged.");
}
}, UseVersion.ToString(), TestAsync.ToString()).DisposeAsync();
}
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public async Task SendAsync_ExpectedDiagnosticSourceActivityLoggingDoesNotOverwriteW3CTraceParentHeader()
{
await RemoteExecutor.Invoke(async (useVersion, testAsync) =>
{
bool activityStartLogged = false;
TaskCompletionSource activityStopTcs = new(TaskCreationOptions.RunContinuationsAsynchronously);
Activity parentActivity = new Activity("parent");
parentActivity.SetParentId(ActivityTraceId.CreateRandom(), ActivitySpanId.CreateRandom());
parentActivity.TraceStateString = "some=state";
parentActivity.Start();
string customTraceParentHeader = "00-abcdef0123456789abcdef0123456789-abcdef0123456789-01";
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Start"))
{
HttpRequestMessage request = GetProperty<HttpRequestMessage>(kvp.Value, "Request");
Assert.Single(request.Headers.GetValues("traceparent"));
Assert.False(request.Headers.TryGetValues("tracestate", out var _));
Assert.Equal(customTraceParentHeader, request.Headers.GetValues("traceparent").Single());
Assert.False(request.Headers.TryGetValues("Request-Id", out var _));
activityStartLogged = true;
}
else if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Stop"))
{
activityStopTcs.SetResult();
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
diagnosticListenerObserver.Enable();
await GetFactoryForVersion(useVersion).CreateClientAndServerAsync(
async uri =>
{
using HttpClient client = CreateHttpClient(useVersion);
var request = new HttpRequestMessage(HttpMethod.Get, uri)
{
Version = Version.Parse(useVersion)
};
request.Headers.Add("traceparent", customTraceParentHeader);
await client.SendAsync(bool.Parse(testAsync), request);
},
async server => await server.HandleRequestAsync());
await activityStopTcs.Task;
Assert.True(activityStartLogged, "HttpRequestOut.Start was not logged.");
}
}, UseVersion.ToString(), TestAsync.ToString()).DisposeAsync();
}
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public async Task SendAsync_ExpectedDiagnosticSourceUrlFilteredActivityLogging()
{
await RemoteExecutor.Invoke(async (useVersion, testAsync) =>
{
bool activityStartLogged = false;
bool activityStopLogged = false;
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Start"))
{
activityStartLogged = true;
}
else if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Stop"))
{
activityStopLogged = true;
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
await GetFactoryForVersion(useVersion).CreateClientAndServerAsync(
async uri =>
{
diagnosticListenerObserver.Enable((s, r, _) =>
{
if (s.StartsWith("System.Net.Http.HttpRequestOut") && r is HttpRequestMessage request)
{
return request.RequestUri != uri;
}
return true;
});
await GetAsync(useVersion, testAsync, uri);
},
async server => await server.HandleRequestAsync());
Assert.False(activityStartLogged, "HttpRequestOut.Start was logged while URL disabled.");
Assert.False(activityStopLogged, "HttpRequestOut.Stop was logged while URL disabled.");
}
}, UseVersion.ToString(), TestAsync.ToString()).DisposeAsync();
}
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public async Task SendAsync_ExpectedDiagnosticExceptionActivityLogging()
{
await RemoteExecutor.Invoke(async (useVersion, testAsync) =>
{
Exception exceptionLogged = null;
TaskCompletionSource activityStopTcs = new(TaskCreationOptions.RunContinuationsAsynchronously);
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Stop"))
{
Assert.NotNull(kvp.Value);
GetProperty<HttpRequestMessage>(kvp.Value, "Request");
TaskStatus requestStatus = GetProperty<TaskStatus>(kvp.Value, "RequestTaskStatus");
Assert.Equal(TaskStatus.Faulted, requestStatus);
activityStopTcs.SetResult();
}
else if (kvp.Key.Equals("System.Net.Http.Exception"))
{
Assert.NotNull(kvp.Value);
exceptionLogged = GetProperty<Exception>(kvp.Value, "Exception");
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
diagnosticListenerObserver.Enable();
Exception ex = await Assert.ThrowsAsync<HttpRequestException>(() => GetAsync(useVersion, testAsync, InvalidUri));
await activityStopTcs.Task;
Assert.Same(ex, exceptionLogged);
}
}, UseVersion.ToString(), TestAsync.ToString()).DisposeAsync();
}
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public async Task SendAsync_ExpectedDiagnosticSynchronousExceptionActivityLogging()
{
await RemoteExecutor.Invoke(async (useVersion, testAsync) =>
{
Exception exceptionLogged = null;
TaskCompletionSource activityStopTcs = new(TaskCreationOptions.RunContinuationsAsynchronously);
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Stop"))
{
Assert.NotNull(kvp.Value);
GetProperty<HttpRequestMessage>(kvp.Value, "Request");
TaskStatus requestStatus = GetProperty<TaskStatus>(kvp.Value, "RequestTaskStatus");
Assert.Equal(TaskStatus.Faulted, requestStatus);
activityStopTcs.SetResult();
}
else if (kvp.Key.Equals("System.Net.Http.Exception"))
{
Assert.NotNull(kvp.Value);
exceptionLogged = GetProperty<Exception>(kvp.Value, "Exception");
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
diagnosticListenerObserver.Enable();
using (HttpClientHandler handler = CreateHttpClientHandler(useVersion))
using (HttpClient client = CreateHttpClient(handler, useVersion))
{
// Set a ftp proxy.
// Forces a synchronous exception for SocketsHttpHandler.
// SocketsHttpHandler only allow http & https & socks scheme for proxies.
handler.Proxy = new WebProxy($"ftp://foo.bar", false);
var request = new HttpRequestMessage(HttpMethod.Get, InvalidUri)
{
Version = Version.Parse(useVersion)
};
// We cannot use Assert.Throws<Exception>(() => { SendAsync(...); }) to verify the
// synchronous exception here, because DiagnosticsHandler SendAsync() method has async
// modifier, and returns Task. If the call is not awaited, the current test method will continue
// run before the call is completed, thus Assert.Throws() will not capture the exception.
// We need to wait for the Task to complete synchronously, to validate the exception.
Exception exception = null;
if (bool.Parse(testAsync))
{
Task sendTask = client.SendAsync(request);
Assert.True(sendTask.IsFaulted);
exception = sendTask.Exception.InnerException;
}
else
{
try
{
client.Send(request);
}
catch (Exception ex)
{
exception = ex;
}
Assert.NotNull(exception);
}
await activityStopTcs.Task;
Assert.IsType<NotSupportedException>(exception);
Assert.Same(exceptionLogged, exception);
}
}
}, UseVersion.ToString(), TestAsync.ToString()).DisposeAsync();
}
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public async Task SendAsync_ExpectedDiagnosticSourceNewAndDeprecatedEventsLogging()
{
await RemoteExecutor.Invoke(async (useVersion, testAsync) =>
{
bool requestLogged = false;
bool activityStartLogged = false;
bool activityStopLogged = false;
TaskCompletionSource responseLoggedTcs = new(TaskCreationOptions.RunContinuationsAsynchronously);
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.Request"))
{
requestLogged = true;
}
else if (kvp.Key.Equals("System.Net.Http.Response"))
{
responseLoggedTcs.SetResult();
}
else if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Start"))
{
activityStartLogged = true;
}
else if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Stop"))
{
activityStopLogged = true;
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
diagnosticListenerObserver.Enable();
await GetFactoryForVersion(useVersion).CreateClientAndServerAsync(
async uri =>
{
await GetAsync(useVersion, testAsync, uri);
},
async server => await server.HandleRequestAsync());
await responseLoggedTcs.Task;
Assert.True(activityStartLogged, "HttpRequestOut.Start was not logged.");
Assert.True(requestLogged, "Request was not logged.");
Assert.True(activityStopLogged, "HttpRequestOut.Stop was not logged.");
}
}, UseVersion.ToString(), TestAsync.ToString()).DisposeAsync();
}
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public async Task SendAsync_ExpectedDiagnosticExceptionOnlyActivityLogging()
{
await RemoteExecutor.Invoke(async (useVersion, testAsync) =>
{
bool activityLogged = false;
Exception exceptionLogged = null;
TaskCompletionSource exceptionLoggedTcs = new(TaskCreationOptions.RunContinuationsAsynchronously);
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
if (kvp.Key.Equals("System.Net.Http.HttpRequestOut.Stop"))
{
activityLogged = true;
}
else if (kvp.Key.Equals("System.Net.Http.Exception"))
{
Assert.NotNull(kvp.Value);
exceptionLogged = GetProperty<Exception>(kvp.Value, "Exception");
exceptionLoggedTcs.SetResult();
}
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
diagnosticListenerObserver.Enable(s => s.Equals("System.Net.Http.Exception"));
Exception ex = await Assert.ThrowsAsync<HttpRequestException>(() => GetAsync(useVersion, testAsync, InvalidUri));
await exceptionLoggedTcs.Task;
Assert.Same(ex, exceptionLogged);
Assert.False(activityLogged, "HttpOutReq was logged when logging was disabled");
}
}, UseVersion.ToString(), TestAsync.ToString()).DisposeAsync();
}
public static IEnumerable<object[]> UseSocketsHttpHandler_WithIdFormat_MemberData()
{
yield return new object[] { true, ActivityIdFormat.Hierarchical };
yield return new object[] { true, ActivityIdFormat.W3C };
yield return new object[] { false, ActivityIdFormat.Hierarchical };
yield return new object[] { false, ActivityIdFormat.W3C };
}
[ConditionalTheory(nameof(EnableActivityPropagationEnvironmentVariableIsNotSetAndRemoteExecutorSupported))]
[InlineData("true")]
[InlineData("1")]
[InlineData("0")]
[InlineData("false")]
[InlineData("FALSE")]
[InlineData("fAlSe")]
[InlineData("helloworld")]
[InlineData("")]
public void SendAsync_SuppressedGlobalStaticPropagationEnvVar(string envVarValue)
{
RemoteExecutor.Invoke(async (useVersion, testAsync, envVarValue) =>
{
Environment.SetEnvironmentVariable(EnableActivityPropagationEnvironmentVariableSettingName, envVarValue);
bool isInstrumentationEnabled = !(envVarValue == "0" || envVarValue.Equals("false", StringComparison.OrdinalIgnoreCase));
bool anyEventLogged = false;
var diagnosticListenerObserver = new FakeDiagnosticListenerObserver(kvp =>
{
anyEventLogged = true;
});
using (DiagnosticListener.AllListeners.Subscribe(diagnosticListenerObserver))
{
diagnosticListenerObserver.Enable();
await GetFactoryForVersion(useVersion).CreateClientAndServerAsync(
async uri =>
{
Activity parent = new Activity("parent").Start();
(HttpRequestMessage request, _) = await GetAsync(useVersion, testAsync, uri);
string headerName = parent.IdFormat == ActivityIdFormat.Hierarchical ? "Request-Id" : "traceparent";
Assert.Equal(isInstrumentationEnabled, request.Headers.Contains(headerName));
},
async server => await server.HandleRequestAsync());
Assert.Equal(isInstrumentationEnabled, anyEventLogged);
}
}, UseVersion.ToString(), TestAsync.ToString(), envVarValue).Dispose();
}
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotBrowser))]
[MemberData(nameof(UseSocketsHttpHandler_WithIdFormat_MemberData))]
public async Task SendAsync_HeadersAreInjectedOnRedirects(bool useSocketsHttpHandler, ActivityIdFormat idFormat)
{
Activity parent = new Activity("parent");
parent.SetIdFormat(idFormat);
parent.TraceStateString = "Foo";
parent.Start();
await GetFactoryForVersion(UseVersion).CreateServerAsync(async (originalServer, originalUri) =>
{
await GetFactoryForVersion(UseVersion).CreateServerAsync(async (redirectServer, redirectUri) =>
{
Task clientTask = GetAsync(UseVersion.ToString(), TestAsync.ToString(), originalUri, useSocketsHttpHandler: useSocketsHttpHandler);
Task<HttpRequestData> serverTask = originalServer.HandleRequestAsync(HttpStatusCode.Redirect, new[] { new HttpHeaderData("Location", redirectUri.AbsoluteUri) });
await Task.WhenAny(clientTask, serverTask);
Assert.False(clientTask.IsCompleted, $"{clientTask.Status}: {clientTask.Exception}");
HttpRequestData firstRequestData = await serverTask;
AssertHeadersAreInjected(firstRequestData, parent);
serverTask = redirectServer.HandleRequestAsync();
await TestHelper.WhenAllCompletedOrAnyFailed(clientTask, serverTask);
HttpRequestData secondRequestData = await serverTask;
AssertHeadersAreInjected(secondRequestData, parent);
if (idFormat == ActivityIdFormat.W3C)
{
string firstParent = GetHeaderValue(firstRequestData, "traceparent");
string firstState = GetHeaderValue(firstRequestData, "tracestate");
Assert.True(ActivityContext.TryParse(firstParent, firstState, out ActivityContext firstContext));
string secondParent = GetHeaderValue(secondRequestData, "traceparent");
string secondState = GetHeaderValue(secondRequestData, "tracestate");
Assert.True(ActivityContext.TryParse(secondParent, secondState, out ActivityContext secondContext));
Assert.Equal(firstContext.TraceId, secondContext.TraceId);
Assert.Equal(firstContext.TraceFlags, secondContext.TraceFlags);
Assert.Equal(firstContext.TraceState, secondContext.TraceState);
Assert.NotEqual(firstContext.SpanId, secondContext.SpanId);
}
else
{
Assert.NotEqual(GetHeaderValue(firstRequestData, "Request-Id"), GetHeaderValue(secondRequestData, "Request-Id"));
}
});
});
}
[ConditionalTheory(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
[InlineData(true)]
[InlineData(false)]
public async Task SendAsync_SuppressedGlobalStaticPropagationNoListenerAppCtx(bool switchValue)
{
await RemoteExecutor.Invoke(async (useVersion, testAsync, switchValue) =>
{
AppContext.SetSwitch(EnableActivityPropagationAppCtxSettingName, bool.Parse(switchValue));
await GetFactoryForVersion(useVersion).CreateClientAndServerAsync(
async uri =>
{
Activity parent = new Activity("parent").Start();
(HttpRequestMessage request, _) = await GetAsync(useVersion, testAsync, uri);
string headerName = parent.IdFormat == ActivityIdFormat.Hierarchical ? "Request-Id" : "traceparent";
Assert.Equal(bool.Parse(switchValue), request.Headers.Contains(headerName));
},
async server => await server.HandleRequestAsync());
}, UseVersion.ToString(), TestAsync.ToString(), switchValue.ToString()).DisposeAsync();
}
public static IEnumerable<object[]> SocketsHttpHandlerPropagators_WithIdFormat_MemberData()
{
foreach (var propagator in new[] { null, DistributedContextPropagator.CreateDefaultPropagator(), DistributedContextPropagator.CreateNoOutputPropagator(), DistributedContextPropagator.CreatePassThroughPropagator() })
{
foreach (ActivityIdFormat format in new[] { ActivityIdFormat.Hierarchical, ActivityIdFormat.W3C })
{
yield return new object[] { propagator, format };
}
}
}
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotBrowser))]
[MemberData(nameof(SocketsHttpHandlerPropagators_WithIdFormat_MemberData))]
public async Task SendAsync_CustomSocketsHttpHandlerPropagator_PropagatorIsUsed(DistributedContextPropagator propagator, ActivityIdFormat idFormat)
{
Activity parent = new Activity("parent");
parent.SetIdFormat(idFormat);
parent.Start();
await GetFactoryForVersion(UseVersion).CreateClientAndServerAsync(
async uri =>
{
using var handler = CreateSocketsHttpHandler(allowAllCertificates: true);
handler.ActivityHeadersPropagator = propagator;
using var client = new HttpClient(handler);
var request = CreateRequest(HttpMethod.Get, uri, UseVersion, exactVersion: true);
await client.SendAsync(TestAsync, request);
},
async server =>
{
HttpRequestData requestData = await server.HandleRequestAsync();
if (propagator is null || ReferenceEquals(propagator, DistributedContextPropagator.CreateNoOutputPropagator()))
{
AssertNoHeadersAreInjected(requestData);
}
else
{
AssertHeadersAreInjected(requestData, parent, ReferenceEquals(propagator, DistributedContextPropagator.CreatePassThroughPropagator()));
}
});
}
public static IEnumerable<object[]> SocketsHttpHandler_ActivityCreation_MemberData()
{
foreach (var currentActivitySet in new bool[] {
true, // Activity was set
false }) // No Activity is set
{
foreach (var diagnosticListenerActivityEnabled in new bool?[] {
true, // DiagnosticListener requested an Activity
false, // DiagnosticListener does not want an Activity
null }) // There is no DiagnosticListener
{
foreach (var activitySourceCreatesActivity in new bool?[] {
true, // ActivitySource created an Activity
false, // ActivitySource chose not to create an Activity
null }) // ActivitySource had no listeners
{
yield return new object[] { currentActivitySet, diagnosticListenerActivityEnabled, activitySourceCreatesActivity };
}
}
}
}
[ConditionalTheory(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
[MemberData(nameof(SocketsHttpHandler_ActivityCreation_MemberData))]
public async Task SendAsync_ActivityIsCreatedIfRequested(bool currentActivitySet, bool? diagnosticListenerActivityEnabled, bool? activitySourceCreatesActivity)
{
string parameters = $"{currentActivitySet},{diagnosticListenerActivityEnabled},{activitySourceCreatesActivity}";
await RemoteExecutor.Invoke(async (useVersion, testAsync, parametersString) =>
{
bool?[] parameters = parametersString.Split(',').Select(p => p.Length == 0 ? (bool?)null : bool.Parse(p)).ToArray();
bool currentActivitySet = parameters[0].Value;
bool? diagnosticListenerActivityEnabled = parameters[1];
bool? activitySourceCreatesActivity = parameters[2];