-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy pathRuntimeAsyncTests.cs
More file actions
633 lines (509 loc) · 25.1 KB
/
RuntimeAsyncTests.cs
File metadata and controls
633 lines (509 loc) · 25.1 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
// 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.Tracing;
using System.Linq;
using System.Reflection;
using Microsoft.DotNet.RemoteExecutor;
using Microsoft.DotNet.XUnitExtensions;
using Xunit;
namespace System.Threading.Tasks.Tests
{
public class RuntimeAsyncTests
{
private static bool IsRemoteExecutorAndRuntimeAsyncSupported => RemoteExecutor.IsSupported && PlatformDetection.IsRuntimeAsyncSupported;
private static readonly FieldInfo s_asyncDebuggingEnabledField = GetCorLibClassStaticField("System.Threading.Tasks.Task", "s_asyncDebuggingEnabled");
private static readonly FieldInfo s_taskTimestampsField = GetCorLibClassStaticField("System.Threading.Tasks.Task", "s_runtimeAsyncTaskTimestamps");
private static readonly FieldInfo s_continuationTimestampsField = GetCorLibClassStaticField("System.Threading.Tasks.Task", "s_runtimeAsyncContinuationTimestamps");
private static readonly FieldInfo s_activeTasksField = GetCorLibClassStaticField("System.Threading.Tasks.Task", "s_currentActiveTasks");
private static readonly FieldInfo s_activeFlagsField = GetCorLibClassStaticField("System.Runtime.CompilerServices.AsyncInstrumentation", "s_activeFlags");
private static readonly object s_debuggerLock = new object();
// AsyncDebugger(0x2000000) | all event flags(0x7F)
private const uint EnabledInstrumentationFlags = 0x200007F;
private const uint DisabledInstrumentationFlags = 0x0;
private const uint SynchronizeInstrumentationFlags = 0x80000000;
private static void AttachDebugger()
{
// Simulate a debugger attach to process by setting s_asyncDebuggingEnabled
// and triggering a flag synchronization via the Synchronize bit.
lock (s_debuggerLock)
{
uint flags = Convert.ToUInt32(s_activeFlagsField.GetValue(null));
Assert.True(flags == SynchronizeInstrumentationFlags || flags == DisabledInstrumentationFlags, $"ActiveFlags equals {flags}, expected {SynchronizeInstrumentationFlags} || {DisabledInstrumentationFlags}");
s_asyncDebuggingEnabledField.SetValue(null, true);
s_activeFlagsField.SetValue(null, flags | SynchronizeInstrumentationFlags);
// Run an async method to trigger SyncActiveFlags which will pick up the Synchronize bit.
Func().GetAwaiter().GetResult();
flags = Convert.ToUInt32(s_activeFlagsField.GetValue(null));
Assert.True(flags == EnabledInstrumentationFlags, $"ActiveFlags equals {flags}, expected {EnabledInstrumentationFlags}");
var activeTasks = (Dictionary<int, Task>)s_activeTasksField.GetValue(null);
Assert.True(activeTasks != null, "Expected active tasks dictionary to be initialized");
var taskTimestamps = (Dictionary<int, long>)s_taskTimestampsField.GetValue(null);
Assert.True(taskTimestamps != null, "Expected tasks timestamps dictionary to be initialized");
var continuationTimestamps = (Dictionary<object, long>)s_continuationTimestampsField.GetValue(null);
Assert.True(continuationTimestamps != null, "Expected continuation timestamps dictionary to be initialized");
}
}
private static void DetachDebugger()
{
// Simulate a debugger detach from process.
lock (s_debuggerLock)
{
uint flags = Convert.ToUInt32(s_activeFlagsField.GetValue(null));
s_asyncDebuggingEnabledField.SetValue(null, false);
s_activeFlagsField.SetValue(null, flags | SynchronizeInstrumentationFlags);
// Run an async method to trigger SyncActiveFlags which will detect
// s_asyncDebuggingEnabled is false and clear the debugger flags.
Func().GetAwaiter().GetResult();
flags = Convert.ToUInt32(s_activeFlagsField.GetValue(null));
Assert.True(flags == DisabledInstrumentationFlags, $"ActiveFlags equals {flags}, expected {DisabledInstrumentationFlags}");
}
}
private static FieldInfo GetCorLibClassStaticField(string className, string fieldName)
{
Type? classType = typeof(object).Assembly.GetType(className);
if (classType == null)
{
throw new InvalidOperationException($"Type '{className}' doesn't exist in System.Private.CoreLib.");
}
FieldInfo? field = classType.GetField(fieldName, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static);
if (field == null)
{
throw new InvalidOperationException($"Expected static field '{fieldName}' to exist on type '{className}'.");
}
return field;
}
private static int GetTaskTimestampCount() =>
s_taskTimestampsField.GetValue(null) is Dictionary<int, long> dict ? dict.Count : 0;
private static int GetContinuationTimestampCount() =>
s_continuationTimestampsField.GetValue(null) is Dictionary<object, long> dict ? dict.Count : 0;
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task Func()
{
await Task.Yield();
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task FuncThatThrows()
{
await DeepThrow1();
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task DeepThrow1()
{
await DeepThrow2();
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task DeepThrow2()
{
await Task.Yield();
throw new InvalidOperationException("test exception");
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task<int> FuncWithResult()
{
await Task.Yield();
return 42;
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task OuterFuncThatCatches()
{
try
{
await MiddleFuncThatPropagates();
}
catch (InvalidOperationException)
{
}
await Task.Yield();
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task MiddleFuncThatPropagates()
{
await InnerFuncThatThrows();
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task InnerFuncThatThrows()
{
await Task.Yield();
throw new InvalidOperationException("inner exception");
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task FuncThatCancels(CancellationToken ct)
{
await Task.Yield();
ct.ThrowIfCancellationRequested();
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task FuncThatWaitsTwice(TaskCompletionSource tcs1, TaskCompletionSource tcs2)
{
await tcs1.Task;
await tcs2.Task;
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task FuncThatInspectsContinuationTimestamps(TaskCompletionSource tcs, Action callback)
{
await tcs.Task;
callback();
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task FuncWithNestedDelays(List<long> observedTimestamps)
{
var continuationTimestamps = (Dictionary<object, long>)s_continuationTimestampsField.GetValue(null);
await Task.Delay(50);
lock (continuationTimestamps)
{
foreach (long ts in continuationTimestamps.Values)
observedTimestamps.Add(ts);
}
await NestedDelay1(observedTimestamps);
await NestedDelay2(observedTimestamps);
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task NestedDelay1(List<long> observedTimestamps)
{
var continuationTimestamps = (Dictionary<object, long>)s_continuationTimestampsField.GetValue(null);
await Task.Delay(50);
lock (continuationTimestamps)
{
foreach (long ts in continuationTimestamps.Values)
observedTimestamps.Add(ts);
}
}
[System.Runtime.CompilerServices.RuntimeAsyncMethodGeneration(true)]
static async Task NestedDelay2(List<long> observedTimestamps)
{
var continuationTimestamps = (Dictionary<object, long>)s_continuationTimestampsField.GetValue(null);
await Task.Delay(50);
lock (continuationTimestamps)
{
foreach (long ts in continuationTimestamps.Values)
observedTimestamps.Add(ts);
}
}
static void ValidateTimestampsCleared()
{
// some other tasks may be created by the runtime, so this is just using a reasonably small upper bound
Assert.InRange(GetTaskTimestampCount(), 0, 10);
Assert.InRange(GetContinuationTimestampCount(), 0, 10);
}
[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
public void RuntimeAsync_TaskCompleted()
{
RemoteExecutor.Invoke(async () =>
{
AttachDebugger();
for (int i = 0; i < 1000; i++)
{
await Func();
}
ValidateTimestampsCleared();
DetachDebugger();
}).Dispose();
}
[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
public void RuntimeAsync_ExceptionCleanup()
{
RemoteExecutor.Invoke(async () =>
{
AttachDebugger();
for (int i = 0; i < 1000; i++)
{
try
{
await FuncThatThrows();
}
catch (InvalidOperationException)
{
}
}
ValidateTimestampsCleared();
DetachDebugger();
}).Dispose();
}
[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
public void RuntimeAsync_DebuggerDetach()
{
RemoteExecutor.Invoke(async () =>
{
AttachDebugger();
var activeTasks = (Dictionary<int, Task>)s_activeTasksField.GetValue(null);
// Use an in-flight task to deterministically verify tracking is active
var tcs = new TaskCompletionSource();
Task inflight = FuncThatWaitsTwice(tcs, new TaskCompletionSource());
lock (activeTasks)
{
Assert.True(activeTasks.ContainsKey(inflight.Id),
"Expected in-flight task to be tracked while debugger is attached");
}
// Complete the first await so it resumes and sets a task timestamp
tcs.SetResult();
var taskTimestamps = (Dictionary<int, long>)s_taskTimestampsField.GetValue(null);
bool seenTimestamp = SpinWait.SpinUntil(() =>
{
lock (taskTimestamps)
{
return taskTimestamps.ContainsKey(inflight.Id);
}
}, timeout: TimeSpan.FromSeconds(5));
Assert.True(seenTimestamp, "Timed out waiting for task timestamp");
// Simulate debugger detach — the flag sync should detect the mismatch
// and disable the Debugger flags without crashing.
// Timestamps are not cleared (matches existing behavior).
DetachDebugger();
// Run one task to trigger the flag sync that detects the mismatch
await Func();
// Now start a new in-flight task after detach - it should NOT be tracked
var tcsPost = new TaskCompletionSource();
Task postDetach = FuncThatWaitsTwice(tcsPost, new TaskCompletionSource());
lock (activeTasks)
{
Assert.False(activeTasks.ContainsKey(postDetach.Id),
"Expected in-flight task NOT to be tracked after debugger detach");
}
lock (taskTimestamps)
{
Assert.False(taskTimestamps.ContainsKey(postDetach.Id),
"Expected no task timestamp for post-detach in-flight task");
}
}).Dispose();
}
[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
public void RuntimeAsync_ValueTypeResult()
{
RemoteExecutor.Invoke(async () =>
{
AttachDebugger();
for (int i = 0; i < 1000; i++)
{
int result = await FuncWithResult();
Assert.Equal(42, result);
}
ValidateTimestampsCleared();
DetachDebugger();
}).Dispose();
}
[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
public void RuntimeAsync_HandledExceptionPartialUnwind()
{
RemoteExecutor.Invoke(async () =>
{
AttachDebugger();
for (int i = 0; i < 1000; i++)
{
await OuterFuncThatCatches();
}
ValidateTimestampsCleared();
DetachDebugger();
}).Dispose();
}
[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
public void RuntimeAsync_CancellationCleanup()
{
RemoteExecutor.Invoke(async () =>
{
AttachDebugger();
using var cts = new CancellationTokenSource();
cts.Cancel();
for (int i = 0; i < 1000; i++)
{
try
{
await FuncThatCancels(cts.Token);
}
catch (OperationCanceledException)
{
}
}
ValidateTimestampsCleared();
DetachDebugger();
}).Dispose();
}
[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
public void RuntimeAsync_TimestampsTrackedWhileInFlight()
{
RemoteExecutor.Invoke(async () =>
{
AttachDebugger();
var tcs1 = new TaskCompletionSource();
var tcs2 = new TaskCompletionSource();
Task inflight = FuncThatWaitsTwice(tcs1, tcs2);
// Task is suspended on tcs1 — should be in active tasks
var activeTasks = (Dictionary<int, Task>)s_activeTasksField.GetValue(null);
lock (activeTasks)
{
Assert.True(activeTasks.ContainsKey(inflight.Id), "Expected suspended task to be in s_currentActiveTasks");
}
// Resume from first suspension — this triggers DispatchContinuations which sets timestamps
tcs1.SetResult();
// Poll until the dispatch loop has resumed and re-suspended on tcs2,
// which sets the task timestamp via ResumeRuntimeAsyncMethod.
var taskTimestamps = (Dictionary<int, long>)s_taskTimestampsField.GetValue(null);
bool seenTimestamp = SpinWait.SpinUntil(() =>
{
lock (taskTimestamps)
{
return taskTimestamps.ContainsKey(inflight.Id);
}
}, timeout: TimeSpan.FromSeconds(5));
Assert.True(seenTimestamp, "Timed out waiting for task timestamp to appear after resume");
// Now the task has been through one resume cycle and is suspended again on tcs2.
lock (taskTimestamps)
{
Assert.True(taskTimestamps[inflight.Id] > 0, "Expected non-zero task timestamp");
}
// Complete the task
tcs2.SetResult();
await inflight;
// After completion the task should be removed from all collections
lock (activeTasks)
{
Assert.False(activeTasks.ContainsKey(inflight.Id), "Expected completed task to be removed from s_currentActiveTasks");
}
lock (taskTimestamps)
{
Assert.False(taskTimestamps.ContainsKey(inflight.Id), "Expected task timestamp to be removed after completion");
}
DetachDebugger();
}).Dispose();
}
[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
public void RuntimeAsync_ContinuationTimestampObservedDuringResume()
{
RemoteExecutor.Invoke(async () =>
{
AttachDebugger();
bool continuationTimestampObserved = false;
var tcs = new TaskCompletionSource();
Task inflight = FuncThatInspectsContinuationTimestamps(tcs, () =>
{
// This callback runs inside the resumed async method body, after
// ResumeRuntimeAsyncMethod but before SuspendRuntimeAsyncContext/CompleteRuntimeAsyncMethod.
// The continuation timestamp for the current continuation should still be in the dictionary.
var continuationTimestamps = (Dictionary<object, long>)s_continuationTimestampsField.GetValue(null);
lock (continuationTimestamps)
{
continuationTimestampObserved = continuationTimestamps.Count > 0;
}
});
tcs.SetResult();
await inflight;
Assert.True(continuationTimestampObserved, "Expected continuation timestamp to be present during resumed method execution");
DetachDebugger();
}).Dispose();
}
[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
public void RuntimeAsync_InFlightInstrumentationUpgrade()
{
RemoteExecutor.Invoke(async () =>
{
// Start a multi-await task WITHOUT instrumentation enabled.
var tcs1 = new TaskCompletionSource();
var tcs2 = new TaskCompletionSource();
Task inflight = FuncThatWaitsTwice(tcs1, tcs2);
// Task is now suspended at first await with no instrumentation.
// Attach the debugger mid-flight — this enables instrumentation.
AttachDebugger();
var activeTasks = (Dictionary<int, Task>)s_activeTasksField.GetValue(null);
var taskTimestamps = (Dictionary<int, long>)s_taskTimestampsField.GetValue(null);
// The in-flight task was NOT tracked at creation (no instrumentation then).
lock (activeTasks)
{
Assert.False(activeTasks.ContainsKey(inflight.Id),
"Expected in-flight task NOT to be tracked (started before instrumentation)");
}
// Resume the first await — the dispatch loop's InstrumentCheckPoint should
// detect that instrumentation is now active and transition to the instrumented path.
tcs1.SetResult();
// Wait for the task to suspend at the second await.
bool seenTimestamp = SpinWait.SpinUntil(() =>
{
lock (taskTimestamps)
{
return taskTimestamps.ContainsKey(inflight.Id);
}
}, timeout: TimeSpan.FromSeconds(5));
Assert.True(seenTimestamp,
"Expected task timestamp after mid-flight instrumentation upgrade (InstrumentCheckPoint transition)");
// Complete the second await and let the task finish.
tcs2.SetResult();
await inflight;
DetachDebugger();
}).Dispose();
}
[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
public void RuntimeAsync_TplEvents()
{
RemoteExecutor.Invoke(() =>
{
const int TraceOperationBeginId = 14;
const int TraceOperationEndId = 15;
const int TraceSynchronousWorkBeginId = 17;
const int TraceSynchronousWorkEndId = 18;
AttachDebugger();
var events = new ConcurrentQueue<EventWrittenEventArgs>();
using (var listener = new TestEventListener("System.Threading.Tasks.TplEventSource", EventLevel.Verbose))
{
listener.RunWithCallback(events.Enqueue, () =>
{
for (int i = 0; i < 10; i++)
{
Func().GetAwaiter().GetResult();
}
});
}
Assert.Contains(events, e => e.EventId == TraceOperationBeginId);
Assert.Contains(events, e => e.EventId == TraceOperationEndId);
Assert.Contains(events, e => e.EventId == TraceSynchronousWorkBeginId);
Assert.Contains(events, e => e.EventId == TraceSynchronousWorkEndId);
DetachDebugger();
}).Dispose();
}
[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
public void RuntimeAsync_SuspensionTimestampsAreDistinct()
{
RemoteExecutor.Invoke(async () =>
{
AttachDebugger();
var observedTimestamps = new List<long>();
await FuncWithNestedDelays(observedTimestamps);
// Each suspension across nested async methods should produce a fresh, non-zero
// timestamp — not one inherited from a parent continuation.
Assert.True(observedTimestamps.Count >= 3, $"Expected at least 3 observed timestamps, got {observedTimestamps.Count}");
Assert.All(observedTimestamps, ts => Assert.True(ts > 0, "Expected non-zero timestamp"));
Assert.True(observedTimestamps.Distinct().Count() > 1, "Expected timestamps from different suspensions to not all be identical");
DetachDebugger();
}).Dispose();
}
[ConditionalFact(typeof(RuntimeAsyncTests), nameof(IsRemoteExecutorAndRuntimeAsyncSupported))]
public void RuntimeAsync_NoTplEventsWithoutDebugger()
{
RemoteExecutor.Invoke(() =>
{
const int TraceOperationBeginId = 14;
const string RuntimeAsyncTaskOperationName = "System.Runtime.CompilerServices.AsyncHelpers+RuntimeAsyncTask";
// Enable TplEventSource WITHOUT setting s_asyncDebuggingEnabled.
// The AsyncDebugger guard should prevent the V2 async instrumentation
// from emitting any TPL causality events.
var events = new ConcurrentQueue<EventWrittenEventArgs>();
using (var listener = new TestEventListener("System.Threading.Tasks.TplEventSource", EventLevel.Verbose))
{
listener.RunWithCallback(events.Enqueue, () =>
{
for (int i = 0; i < 10; i++)
{
Func().GetAwaiter().GetResult();
}
});
}
// TraceOperationBegin with the RuntimeAsyncTask operation name is uniquely
// emitted by V2 async instrumentation. It must not appear without a debugger.
Assert.DoesNotContain(events, e =>
e.EventId == TraceOperationBeginId &&
e.Payload?.Count > 1 &&
e.Payload[1] is string name &&
name == RuntimeAsyncTaskOperationName);
}).Dispose();
}
}
}