forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpRouteExceptionHandlerTests.cs
More file actions
598 lines (486 loc) · 24.6 KB
/
Copy pathHttpRouteExceptionHandlerTests.cs
File metadata and controls
598 lines (486 loc) · 24.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
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
// 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;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.IO;
using System.Net;
using System.Net.Http;
using System.Runtime.ExceptionServices;
using System.Threading;
using System.Threading.Tasks;
using System.Web.Http.ExceptionHandling;
using System.Web.Http.Results;
using Microsoft.TestCommon;
using Moq;
namespace System.Web.Http.WebHost.Routing
{
public class HttpRouteExceptionHandlerTests
{
[Fact]
public void ExceptionInfo_ReturnsSpecifiedInstance()
{
// Arrange
ExceptionDispatchInfo expectedExceptionInfo = CreateExceptionInfo();
IExceptionLogger logger = CreateDummyLogger();
IExceptionHandler handler = CreateDummyHandler();
HttpRouteExceptionHandler product = CreateProductUnderTest(expectedExceptionInfo, logger, handler);
// Act
ExceptionDispatchInfo exceptionInfo = product.ExceptionInfo;
// Assert
Assert.Same(exceptionInfo, expectedExceptionInfo);
}
[Fact]
public void ExceptionLogger_ReturnsSpecifiedInstance()
{
// Arrange
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo();
IExceptionLogger expectedLogger = CreateDummyLogger();
IExceptionHandler handler = CreateDummyHandler();
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo, expectedLogger, handler);
// Act
IExceptionLogger logger = product.ExceptionLogger;
// Assert
Assert.Same(expectedLogger, logger);
}
[Fact]
public void ExceptionHandler_ReturnsSpecifiedInstance()
{
// Arrange
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo();
IExceptionLogger logger = CreateDummyLogger();
IExceptionHandler expectedHandler = CreateDummyHandler();
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo, logger, expectedHandler);
// Act
IExceptionHandler handler = product.ExceptionHandler;
// Assert
Assert.Same(expectedHandler, handler);
}
[Fact]
public void ExceptionInfo_IfUsingExceptionInfoConstructor_ReturnsSpecifiedInstance()
{
// Arrange
ExceptionDispatchInfo expectedExceptionInfo = CreateExceptionInfo();
HttpRouteExceptionHandler product = CreateProductUnderTest(expectedExceptionInfo);
// Act
ExceptionDispatchInfo exceptionInfo = product.ExceptionInfo;
// Assert
Assert.Same(exceptionInfo, expectedExceptionInfo);
}
[Fact]
public void ExceptionLogger_IfUsingExceptionInfoConstructor_ReturnsExceptionServicesInstance()
{
// Arrange
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo();
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo);
// Act
IExceptionLogger logger = product.ExceptionLogger;
// Assert
IExceptionLogger expectedLogger = ExceptionServices.GetLogger(GlobalConfiguration.Configuration);
Assert.Same(expectedLogger, logger);
}
[Fact]
public void ExceptionHandler_IfUsingExceptionInfoConstructor_ReturnsExceptionServicesInstance()
{
// Arrange
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo();
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo);
// Act
IExceptionHandler handler = product.ExceptionHandler;
// Assert
IExceptionHandler expectedHandler = ExceptionServices.GetHandler(GlobalConfiguration.Configuration);
Assert.Same(expectedHandler, handler);
}
[Fact]
public async Task ProcessRequestAsync_IfExceptionIsHttpResponseException_UsesExceptionResponse()
{
// Arrange
HttpStatusCode expectedStatusCode = HttpStatusCode.Forbidden;
using (HttpResponseMessage response = CreateResponse(expectedStatusCode))
using (HttpRequestMessage request = CreateRequest())
{
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo(new HttpResponseException(response));
IExceptionLogger logger = CreateDummyLogger();
IExceptionHandler handler = CreateDummyHandler();
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo, logger, handler);
int statusCode = 0;
Mock<HttpResponseBase> responseBaseMock = new Mock<HttpResponseBase>();
responseBaseMock.SetupSet(r => r.StatusCode = It.IsAny<int>()).Callback<int>((s) => statusCode = s);
responseBaseMock.SetupGet(r => r.Cache).Returns(() => new Mock<HttpCachePolicyBase>().Object);
HttpResponseBase responseBase = responseBaseMock.Object;
HttpContextBase contextBase = CreateStubContextBase(responseBase);
contextBase.SetHttpRequestMessage(request);
// Act
await product.ProcessRequestAsync(contextBase);
// Assert
Assert.Equal((int)expectedStatusCode, statusCode);
}
}
[Fact]
public async Task ProcessRequestAsync_IfExceptionIsNotHttpResponseException_CallsExceptionServices()
{
// Arrange
Exception expectedException = CreateException();
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo(expectedException);
Mock<IExceptionLogger> loggerMock = CreateStubExceptionLoggerMock();
IExceptionLogger logger = loggerMock.Object;
Mock<IExceptionHandler> handlerMock = CreateStubExceptionHandlerMock();
IExceptionHandler handler = handlerMock.Object;
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo, logger, handler);
HttpResponseBase responseBase = CreateStubResponseBase();
HttpContextBase contextBase = CreateStubContextBase(responseBase);
using (HttpRequestMessage expectedRequest = new HttpRequestMessage())
{
contextBase.SetHttpRequestMessage(expectedRequest);
// Act & Assert
await Assert.ThrowsAsync<Exception>(() => product.ProcessRequestAsync(contextBase));
Func<ExceptionContext, bool> exceptionContextMatches = (c) =>
c != null
&& c.Exception == expectedException
&& c.CatchBlock == WebHostExceptionCatchBlocks.HttpWebRoute
&& c.Request == expectedRequest;
loggerMock.Verify(l => l.LogAsync(It.Is<ExceptionLoggerContext>(c =>
exceptionContextMatches(c.ExceptionContext)), CancellationToken.None), Times.Once());
handlerMock.Verify(l => l.HandleAsync(It.Is<ExceptionHandlerContext>(c =>
exceptionContextMatches(c.ExceptionContext)), CancellationToken.None), Times.Once());
}
}
[Fact]
public async Task ProcessRequestAsync_IfHandlerHandles_UsesHandlerResult()
{
// Arrange
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo();
IExceptionLogger logger = CreateStubExceptionLogger();
HttpStatusCode expectedStatusCode = HttpStatusCode.Ambiguous;
Mock<IExceptionHandler> handlerMock = new Mock<IExceptionHandler>(MockBehavior.Strict);
handlerMock
.Setup(h => h.HandleAsync(It.IsAny<ExceptionHandlerContext>(), It.IsAny<CancellationToken>()))
.Returns<ExceptionHandlerContext, CancellationToken>((c, i) =>
{
c.Result = new StatusCodeResult(expectedStatusCode, new HttpRequestMessage());
return Task.FromResult(0);
});
IExceptionHandler handler = handlerMock.Object;
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo, logger, handler);
int statusCode = 0;
Mock<HttpResponseBase> responseBaseMock = new Mock<HttpResponseBase>();
responseBaseMock.SetupSet(r => r.StatusCode = It.IsAny<int>()).Callback<int>((c) => statusCode = c);
responseBaseMock.SetupGet(r => r.Cache).Returns(() => new Mock<HttpCachePolicyBase>().Object);
HttpResponseBase responseBase = responseBaseMock.Object;
HttpContextBase contextBase = CreateStubContextBase(responseBase);
using (HttpRequestMessage request = CreateRequest())
{
contextBase.SetHttpRequestMessage(request);
// Act
await product.ProcessRequestAsync(contextBase);
// Assert
Assert.Equal((int)expectedStatusCode, statusCode);
}
}
[Fact]
public async Task ProcessRequestAsync_IfHandlerDoesNotHandle_ReturnsTaskPropagatingException()
{
// Arrange
Exception expectedException = CreateExceptionWithCallStack();
string expectedStackTrace = expectedException.StackTrace;
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo(expectedException);
IExceptionLogger logger = CreateStubExceptionLogger();
IExceptionHandler handler = CreateStubExceptionHandler();
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo, logger, handler);
HttpResponseBase responseBase = CreateStubResponseBase();
HttpContextBase contextBase = CreateStubContextBase(responseBase);
using (HttpRequestMessage request = CreateRequest())
{
contextBase.SetHttpRequestMessage(request);
// Act & Assert
var exception = await Assert.ThrowsAsync<Exception>(() => product.ProcessRequestAsync(contextBase));
Assert.Same(expectedException, exception);
Assert.NotNull(exception.StackTrace);
Assert.StartsWith(expectedStackTrace, exception.StackTrace);
}
}
[Fact]
public async Task ProcessRequestAsync_IfCopyToAsyncOnErrorResponseThrows_CallsExceptionLogger()
{
// Arrange
Exception expectedOriginalException = CreateException();
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo(expectedOriginalException);
Mock<IExceptionLogger> loggerMock = CreateStubExceptionLoggerMock();
IExceptionLogger logger = loggerMock.Object;
Exception expectedErrorException = CreateException();
using (HttpResponseMessage expectedErrorResponse = new HttpResponseMessage())
using (HttpRequestMessage expectedRequest = new HttpRequestMessage())
{
expectedErrorResponse.Content = CreateFaultingContent(expectedErrorException);
Mock<IExceptionHandler> handlerMock = new Mock<IExceptionHandler>(MockBehavior.Strict);
handlerMock
.Setup(h => h.HandleAsync(It.IsAny<ExceptionHandlerContext>(), It.IsAny<CancellationToken>()))
.Returns<ExceptionHandlerContext, CancellationToken>((c, i) =>
{
c.Result = new ResponseMessageResult(expectedErrorResponse);
return Task.FromResult(0);
});
IExceptionHandler handler = handlerMock.Object;
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo, logger, handler);
HttpResponseBase responseBase = CreateStubResponseBase(Stream.Null);
HttpContextBase contextBase = CreateStubContextBase(responseBase);
contextBase.SetHttpRequestMessage(expectedRequest);
// Act
await product.ProcessRequestAsync(contextBase);
// Assert
loggerMock.Verify(l => l.LogAsync(It.Is<ExceptionLoggerContext>(c =>
c.ExceptionContext != null
&& c.ExceptionContext.Exception == expectedOriginalException
&& c.ExceptionContext.CatchBlock == WebHostExceptionCatchBlocks.HttpWebRoute
&& c.ExceptionContext.Request == expectedRequest),
CancellationToken.None), Times.Once());
loggerMock.Verify(l => l.LogAsync(It.Is<ExceptionLoggerContext>(c =>
c.ExceptionContext != null
&& c.ExceptionContext.Exception == expectedErrorException
&& c.ExceptionContext.CatchBlock == WebHostExceptionCatchBlocks.HttpControllerHandlerBufferError
&& c.ExceptionContext.Request == expectedRequest
&& c.ExceptionContext.Response == expectedErrorResponse),
CancellationToken.None), Times.Once());
}
}
[Fact]
public async Task ProcessRequestAsync_IfExceptionIsHttpResponseException_DisposesRequestAndResponse()
{
// Arrange
using (HttpResponseMessage response = CreateResponse())
using (HttpRequestMessage request = CreateRequest())
using (SpyDisposable spy = new SpyDisposable())
{
request.RegisterForDispose(spy);
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo(new HttpResponseException(response));
IExceptionLogger logger = CreateDummyLogger();
IExceptionHandler handler = CreateDummyHandler();
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo, logger, handler);
Mock<HttpResponseBase> responseBaseMock = new Mock<HttpResponseBase>();
responseBaseMock.SetupGet(r => r.Cache).Returns(() => new Mock<HttpCachePolicyBase>().Object);
HttpResponseBase responseBase = responseBaseMock.Object;
HttpContextBase contextBase = CreateStubContextBase(responseBase);
contextBase.SetHttpRequestMessage(request);
// Act
await product.ProcessRequestAsync(contextBase);
// Assert
Assert.True(spy.Disposed);
Assert.ThrowsObjectDisposed(() => request.Method = HttpMethod.Get,
typeof(HttpRequestMessage).FullName);
Assert.ThrowsObjectDisposed(() => response.StatusCode = HttpStatusCode.OK,
typeof(HttpResponseMessage).FullName);
}
}
[Fact]
public async Task ProcessRequestAsync_IfExceptionIsNotHttpResponseException_DisposesRequest()
{
// Arrange
using (HttpRequestMessage request = CreateRequest())
using (SpyDisposable spy = new SpyDisposable())
{
request.RegisterForDispose(spy);
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo(CreateException());
Mock<IExceptionLogger> loggerMock = new Mock<IExceptionLogger>(MockBehavior.Strict);
loggerMock
.Setup(l => l.LogAsync(It.IsAny<ExceptionLoggerContext>(), It.IsAny<CancellationToken>()))
.Returns(Task.FromResult(0));
Mock<IExceptionHandler> handlerMock = new Mock<IExceptionHandler>(MockBehavior.Strict);
handlerMock
.Setup(h => h.HandleAsync(It.IsAny<ExceptionHandlerContext>(), It.IsAny<CancellationToken>()))
.Returns(Task.FromResult(0));
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo, loggerMock.Object, handlerMock.Object);
Mock<HttpResponseBase> responseBaseMock = new Mock<HttpResponseBase>();
responseBaseMock.SetupGet(r => r.Cache).Returns(() => new Mock<HttpCachePolicyBase>().Object);
HttpResponseBase responseBase = responseBaseMock.Object;
HttpContextBase contextBase = CreateStubContextBase(responseBase);
contextBase.SetHttpRequestMessage(request);
// Act & Assert
await Assert.ThrowsAsync<Exception>(() => product.ProcessRequestAsync(contextBase));
Assert.True(spy.Disposed);
Assert.ThrowsObjectDisposed(() => request.Method = HttpMethod.Get,
typeof(HttpRequestMessage).FullName);
}
}
// This scenario emulates what would happen if a route throws OperationCanceledException.
[Fact]
public async Task ProcessRequestAsync_RouteCanceled_CancelsRequest()
{
// Arrange
using (HttpRequestMessage request = CreateRequest())
{
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo(new OperationCanceledException());
IExceptionLogger logger = CreateDummyLogger();
IExceptionHandler handler = CreateDummyHandler();
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo, logger, handler);
Mock<HttpRequestBase> requestBase = new Mock<HttpRequestBase>(MockBehavior.Strict);
requestBase.Setup(r => r.Abort()).Verifiable();
Mock<HttpResponseBase> responseBase = new Mock<HttpResponseBase>(MockBehavior.Strict);
HttpContextBase contextBase = CreateStubContextBase(requestBase.Object, responseBase.Object);
contextBase.SetHttpRequestMessage(request);
// Act
await product.ProcessRequestAsync(contextBase);
// Assert
requestBase.Verify(r => r.Abort(), Times.Once());
}
}
// This scenario emulates what would happen if the request is canceled while trying to handle an http response exception
// thrown by routing.
[Fact]
public async Task ProcessRequestAsync_WritingResponseCanceled_CancelsRequest()
{
// Arrange
using (HttpRequestMessage request = CreateRequest())
{
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo(new HttpResponseException(HttpStatusCode.OK));
IExceptionLogger logger = CreateDummyLogger();
IExceptionHandler handler = CreateDummyHandler();
HttpRouteExceptionHandler product = CreateProductUnderTest(exceptionInfo, logger, handler);
Mock<HttpRequestBase> requestBase = new Mock<HttpRequestBase>(MockBehavior.Strict);
requestBase.Setup(r => r.Abort()).Verifiable();
Mock<HttpResponseBase> responseBase = new Mock<HttpResponseBase>(MockBehavior.Strict);
responseBase.SetupSet(r => r.StatusCode = It.IsAny<int>()).Throws(new OperationCanceledException());
HttpContextBase contextBase = CreateStubContextBase(requestBase.Object, responseBase.Object);
contextBase.SetHttpRequestMessage(request);
// Act
await product.ProcessRequestAsync(contextBase);
// Assert
requestBase.Verify(r => r.Abort(), Times.Once());
}
}
private static IExceptionHandler CreateDummyHandler()
{
return new Mock<IExceptionHandler>(MockBehavior.Strict).Object;
}
private static IExceptionLogger CreateDummyLogger()
{
return new Mock<IExceptionLogger>(MockBehavior.Strict).Object;
}
private static Exception CreateException()
{
return new Exception();
}
private static Exception CreateExceptionWithCallStack()
{
try
{
throw CreateException();
}
catch (Exception exception)
{
return exception;
}
}
private static ExceptionDispatchInfo CreateExceptionInfo()
{
return CreateExceptionInfo(CreateException());
}
private static ExceptionDispatchInfo CreateExceptionInfo(Exception exception)
{
return ExceptionDispatchInfo.Capture(exception);
}
private static HttpContent CreateFaultingContent(Exception exception)
{
return new FaultingHttpContent(exception);
}
private static HttpRouteExceptionHandler CreateProductUnderTest(ExceptionDispatchInfo exceptionInfo)
{
return new HttpRouteExceptionHandler(exceptionInfo);
}
private static HttpRouteExceptionHandler CreateProductUnderTest(ExceptionDispatchInfo exceptionInfo,
IExceptionLogger exceptionLogger, IExceptionHandler exceptionHandler)
{
return new HttpRouteExceptionHandler(exceptionInfo, exceptionLogger, exceptionHandler);
}
private static HttpRequestMessage CreateRequest()
{
return new HttpRequestMessage();
}
private static HttpResponseMessage CreateResponse()
{
return new HttpResponseMessage();
}
private static HttpResponseMessage CreateResponse(HttpStatusCode statusCode)
{
return new HttpResponseMessage(statusCode);
}
private static HttpContextBase CreateStubContextBase(HttpResponseBase response)
{
return CreateStubContextBase(request: null, response: response);
}
private static HttpContextBase CreateStubContextBase(HttpRequestBase request, HttpResponseBase response)
{
Mock<HttpContextBase> mock = new Mock<HttpContextBase>();
mock.SetupGet(m => m.Request).Returns(request);
mock.SetupGet(m => m.Response).Returns(response);
IDictionary items = new Dictionary<object, object>();
mock.SetupGet(m => m.Items).Returns(items);
return mock.Object;
}
private static IExceptionHandler CreateStubExceptionHandler()
{
return CreateStubExceptionHandlerMock().Object;
}
private static Mock<IExceptionHandler> CreateStubExceptionHandlerMock()
{
Mock<IExceptionHandler> mock = new Mock<IExceptionHandler>(MockBehavior.Strict);
mock
.Setup(h => h.HandleAsync(It.IsAny<ExceptionHandlerContext>(), It.IsAny<CancellationToken>()))
.Returns(Task.FromResult(0));
return mock;
}
private static IExceptionLogger CreateStubExceptionLogger()
{
return CreateStubExceptionLoggerMock().Object;
}
private static Mock<IExceptionLogger> CreateStubExceptionLoggerMock()
{
Mock<IExceptionLogger> mock = new Mock<IExceptionLogger>(MockBehavior.Strict);
mock
.Setup(l => l.LogAsync(It.IsAny<ExceptionLoggerContext>(), It.IsAny<CancellationToken>()))
.Returns(Task.FromResult(0));
return mock;
}
private static HttpResponseBase CreateStubResponseBase()
{
return new Mock<HttpResponseBase>().Object;
}
private static HttpResponseBase CreateStubResponseBase(Stream outputStream)
{
Mock<HttpResponseBase> mock = new Mock<HttpResponseBase>();
mock.Setup(r => r.OutputStream).Returns(outputStream);
return mock.Object;
}
private class FaultingHttpContent : HttpContent
{
private readonly Exception _exception;
public FaultingHttpContent(Exception exception)
{
Contract.Assert(exception != null);
_exception = exception;
}
protected override Task SerializeToStreamAsync(Stream stream, TransportContext context)
{
return CreateFaultedTask(_exception);
}
protected override bool TryComputeLength(out long length)
{
length = 0;
return false;
}
private static Task CreateFaultedTask(Exception exception)
{
TaskCompletionSource<object> source = new TaskCompletionSource<object>();
source.SetException(exception);
return source.Task;
}
}
private sealed class SpyDisposable : IDisposable
{
public bool Disposed { get; private set; }
public void Dispose()
{
Disposed = true;
}
}
}
}