forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpServerTest.cs
More file actions
743 lines (609 loc) · 29.3 KB
/
Copy pathHttpServerTest.cs
File metadata and controls
743 lines (609 loc) · 29.3 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
// 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.Net;
using System.Net.Http;
using System.Security.Principal;
using System.Threading;
using System.Threading.Tasks;
using System.Web.Http.Controllers;
using System.Web.Http.Dispatcher;
using System.Web.Http.ExceptionHandling;
using System.Web.Http.Results;
using System.Web.Http.Routing;
using Microsoft.TestCommon;
using Moq;
using Moq.Protected;
namespace System.Web.Http
{
public class HttpServerTest
{
[Fact]
public void IsCorrectType()
{
Assert.Type.HasProperties<HttpServer, DelegatingHandler>(TypeAssert.TypeProperties.IsPublicVisibleClass | TypeAssert.TypeProperties.IsDisposable);
}
[Fact]
public void DefaultConstructor()
{
Assert.DoesNotThrow(() => new HttpServer());
}
[Fact]
public void ConstructorConfigThrowsOnNull()
{
Assert.ThrowsArgumentNull(() => new HttpServer((HttpConfiguration)null), "configuration");
}
[Fact]
public void ConstructorConfigSetsUpProperties()
{
// Arrange
HttpConfiguration config = new HttpConfiguration();
// Act
HttpServer server = new HttpServer(config);
// Assert
Assert.Same(config, server.Configuration);
}
[Fact]
public void ConstructorDispatcherThrowsOnNull()
{
Assert.ThrowsArgumentNull(() => new HttpServer((HttpMessageHandler)null), "dispatcher");
}
[Fact]
public void ConstructorDispatcherSetsUpProperties()
{
// Arrange
Mock<HttpMessageHandler> mockHandler = new Mock<HttpMessageHandler>();
// Act
HttpServer server = new HttpServer(mockHandler.Object);
// Assert
Assert.Same(mockHandler.Object, server.Dispatcher);
}
[Fact]
public void ConstructorThrowsOnNull()
{
Mock<HttpMessageHandler> mockHandler = new Mock<HttpMessageHandler>();
Assert.ThrowsArgumentNull(() => new HttpServer((HttpConfiguration)null, mockHandler.Object), "configuration");
Assert.ThrowsArgumentNull(() => new HttpServer(new HttpConfiguration(), null), "dispatcher");
}
[Fact]
public void ConstructorSetsUpProperties()
{
// Arrange
HttpConfiguration config = new HttpConfiguration();
Mock<HttpControllerDispatcher> controllerDispatcherMock = new Mock<HttpControllerDispatcher>(config);
// Act
HttpServer server = new HttpServer(config, controllerDispatcherMock.Object);
// Assert
Assert.Same(config, server.Configuration);
Assert.Same(controllerDispatcherMock.Object, server.Dispatcher);
}
[Fact]
public void ExceptionLoggerGet_ReturnsSpecifiedInstance()
{
// Arrange
IExceptionLogger expectedExceptionLogger = CreateDummyExceptionLogger();
IExceptionHandler exceptionHandler = CreateDummyExceptionHandler();
using (HttpConfiguration configuration = CreateConfiguration())
using (HttpMessageHandler dispatcher = CreateDummyMessageHandler())
using (HttpServer product = CreateProductUnderTest(configuration, dispatcher, expectedExceptionLogger,
exceptionHandler))
{
// Act
IExceptionLogger exceptionLogger = product.ExceptionLogger;
// Assert
Assert.Same(expectedExceptionLogger, exceptionLogger);
}
}
[Fact]
public void ExceptionHandlerGet_ReturnsSpecifiedInstance()
{
// Arrange
IExceptionLogger exceptionLogger = CreateDummyExceptionLogger();
IExceptionHandler expectedExceptionHandler = CreateDummyExceptionHandler();
using (HttpConfiguration configuration = CreateConfiguration())
using (HttpMessageHandler dispatcher = CreateDummyMessageHandler())
using (HttpServer product = CreateProductUnderTest(configuration, dispatcher, exceptionLogger,
expectedExceptionHandler))
{
// Act
IExceptionHandler exceptionHandler = product.ExceptionHandler;
// Assert
Assert.Same(expectedExceptionHandler, exceptionHandler);
}
}
[Fact]
public void ExceptionLoggerGet_IfUnset_ReturnsExceptionLoggerFromConfiguration()
{
// Arrange
using (HttpConfiguration configuration = CreateConfiguration())
{
IExceptionLogger expectedExceptionLogger = CreateDummyExceptionLogger();
configuration.Services.Add(typeof(IExceptionLogger), expectedExceptionLogger);
using (HttpMessageHandler dispatcher = CreateDummyMessageHandler())
using (HttpServer product = new HttpServer(configuration, dispatcher))
{
// Act
IExceptionLogger exceptionLogger = product.ExceptionLogger;
// Assert
CompositeExceptionLogger compositeLogger = Assert.IsType<CompositeExceptionLogger>(exceptionLogger);
IEnumerable<IExceptionLogger> loggers = compositeLogger.Loggers;
Assert.NotNull(loggers);
IExceptionLogger logger = Assert.Single(loggers);
Assert.Same(expectedExceptionLogger, logger);
}
}
}
[Fact]
public void ExceptionHandlerGet_IfUnset_UsesExceptionHandlerFromConfiguration()
{
// Arrange
using (HttpConfiguration configuration = CreateConfiguration())
{
IExceptionHandler expectedExceptionHandler = CreateDummyExceptionHandler();
configuration.Services.Replace(typeof(IExceptionHandler), expectedExceptionHandler);
using (HttpMessageHandler dispatcher = CreateDummyMessageHandler())
using (HttpServer product = new HttpServer(configuration, dispatcher))
{
// Act
IExceptionHandler exceptionHandler = product.ExceptionHandler;
// Assert
LastChanceExceptionHandler lastChanceHandler = Assert.IsType<LastChanceExceptionHandler>(exceptionHandler);
Assert.Same(expectedExceptionHandler, lastChanceHandler.InnerHandler);
}
}
}
[Fact]
public async Task DisposedReturnsServiceUnavailable()
{
// Arrange
Mock<HttpMessageHandler> mockHandler = new Mock<HttpMessageHandler>();
HttpServer server = new HttpServer(mockHandler.Object);
HttpMessageInvoker invoker = new HttpMessageInvoker(server);
server.Dispose();
HttpRequestMessage request = new HttpRequestMessage();
// Act
var response = await invoker.SendAsync(request, CancellationToken.None);
// Assert
mockHandler.Protected().Verify<Task<HttpResponseMessage>>("SendAsync", Times.Never(), request, CancellationToken.None);
Assert.Equal(HttpStatusCode.ServiceUnavailable, response.StatusCode);
}
[Fact]
public async Task RequestGetsConfigurationAsParameter()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage();
HttpConfiguration config = new HttpConfiguration();
Mock<HttpControllerDispatcher> dispatcherMock = new Mock<HttpControllerDispatcher>(config);
dispatcherMock.Protected().Setup<Task<HttpResponseMessage>>("SendAsync", request, CancellationToken.None)
.Returns(Task.FromResult<HttpResponseMessage>(request.CreateResponse()));
HttpServer server = new HttpServer(config, dispatcherMock.Object);
HttpMessageInvoker invoker = new HttpMessageInvoker(server);
// Act
await invoker.SendAsync(request, CancellationToken.None);
// Assert
dispatcherMock.Protected().Verify<Task<HttpResponseMessage>>("SendAsync", Times.Once(), request, CancellationToken.None);
Assert.Same(config, request.GetConfiguration());
}
[Fact]
public async Task RequestGetsSyncContextAsParameter()
{
// Arrange
HttpRequestMessage request = new HttpRequestMessage();
HttpConfiguration config = new HttpConfiguration();
Mock<HttpControllerDispatcher> dispatcherMock = new Mock<HttpControllerDispatcher>(config);
dispatcherMock.Protected().Setup<Task<HttpResponseMessage>>("SendAsync", request, CancellationToken.None)
.Returns(Task.FromResult<HttpResponseMessage>(request.CreateResponse()));
HttpServer server = new HttpServer(config, dispatcherMock.Object);
HttpMessageInvoker invoker = new HttpMessageInvoker(server);
SynchronizationContext syncContext = new SynchronizationContext();
SynchronizationContext.SetSynchronizationContext(syncContext);
// Act
await invoker.SendAsync(request, CancellationToken.None);
// Assert
dispatcherMock.Protected().Verify<Task<HttpResponseMessage>>("SendAsync", Times.Once(), request, CancellationToken.None);
Assert.Same(syncContext, request.GetSynchronizationContext());
}
[Fact, RestoreThreadPrincipal]
public async Task SendAsync_SetsGenericPrincipalWhenThreadPrincipalIsNullAndCleansUpAfterward()
{
// Arrange
var config = new HttpConfiguration();
var request = new HttpRequestMessage();
var dispatcherMock = new Mock<HttpControllerDispatcher>(config);
var server = new HttpServer(config, dispatcherMock.Object);
var invoker = new HttpMessageInvoker(server);
IPrincipal callbackPrincipal = null;
Thread.CurrentPrincipal = null;
dispatcherMock.Protected()
.Setup<Task<HttpResponseMessage>>("SendAsync", request, CancellationToken.None)
.Callback(() => callbackPrincipal = Thread.CurrentPrincipal)
.Returns(Task.FromResult<HttpResponseMessage>(request.CreateResponse()));
// Act
await invoker.SendAsync(request, CancellationToken.None);
// Assert
Assert.NotNull(callbackPrincipal);
Assert.False(callbackPrincipal.Identity.IsAuthenticated);
Assert.Empty(callbackPrincipal.Identity.Name);
Assert.Null(Thread.CurrentPrincipal);
}
[Fact, RestoreThreadPrincipal]
public async Task SendAsync_DoesNotChangeExistingThreadPrincipal()
{
// Arrange
var config = new HttpConfiguration();
var request = new HttpRequestMessage();
var dispatcherMock = new Mock<HttpControllerDispatcher>(config);
var server = new HttpServer(config, dispatcherMock.Object);
var invoker = new HttpMessageInvoker(server);
var principal = new GenericPrincipal(new GenericIdentity("joe"), new string[0]);
Thread.CurrentPrincipal = principal;
IPrincipal callbackPrincipal = null;
dispatcherMock.Protected()
.Setup<Task<HttpResponseMessage>>("SendAsync", request, CancellationToken.None)
.Callback(() => callbackPrincipal = Thread.CurrentPrincipal)
.Returns(Task.FromResult<HttpResponseMessage>(request.CreateResponse()));
// Act
await invoker.SendAsync(request, CancellationToken.None);
// Assert
Assert.Same(principal, callbackPrincipal);
Assert.Same(principal, Thread.CurrentPrincipal);
}
[Fact]
public async Task SendAsync_Handles_ExceptionsThrownInMessageHandlers()
{
// Arrange
var config = new HttpConfiguration();
config.MessageHandlers.Add(new ThrowingMessageHandler(new InvalidOperationException()));
HttpServer server = new HttpServer(config);
var invoker = new HttpMessageInvoker(server);
// Act
var response = await invoker.SendAsync(new HttpRequestMessage(), CancellationToken.None);
// Assert
Assert.Equal(HttpStatusCode.InternalServerError, response.StatusCode);
}
[Fact]
public async Task SendAsync_Handles_HttpResponseExceptionsThrownInMessageHandlers()
{
// Arrange
HttpResponseException exception = new HttpResponseException(new HttpResponseMessage(HttpStatusCode.HttpVersionNotSupported));
exception.Response.ReasonPhrase = "whatever";
var config = new HttpConfiguration();
config.MessageHandlers.Add(new ThrowingMessageHandler(exception));
HttpServer server = new HttpServer(config);
var invoker = new HttpMessageInvoker(server);
// Act
var response = await invoker.SendAsync(new HttpRequestMessage(), CancellationToken.None);
// Assert
Assert.Equal(exception.Response.StatusCode, response.StatusCode);
Assert.Equal(exception.Response.ReasonPhrase, response.ReasonPhrase);
}
[Fact]
public async Task SendAsync_Handles_ExceptionsThrownInCustomRoutes()
{
// Arrange
var config = new HttpConfiguration();
config.Routes.Add("throwing route", new ThrowingRoute(new InvalidOperationException()));
HttpServer server = new HttpServer(config);
var invoker = new HttpMessageInvoker(server);
// Act
var response = await invoker.SendAsync(new HttpRequestMessage(), CancellationToken.None);
// Assert
Assert.Equal(HttpStatusCode.InternalServerError, response.StatusCode);
}
[Fact]
public async Task SendAsync_Handles_HttpResponseExceptionsThrownInCustomRoutes()
{
// Arrange
HttpResponseException exception = new HttpResponseException(new HttpResponseMessage(HttpStatusCode.HttpVersionNotSupported));
exception.Response.ReasonPhrase = "whatever";
var config = new HttpConfiguration();
config.Routes.Add("throwing route", new ThrowingRoute(exception));
HttpServer server = new HttpServer(config);
var invoker = new HttpMessageInvoker(server);
// Act
var response = await invoker.SendAsync(new HttpRequestMessage(), CancellationToken.None);
// Assert
Assert.Equal(exception.Response.StatusCode, response.StatusCode);
Assert.Equal(exception.Response.ReasonPhrase, response.ReasonPhrase);
}
[Fact]
public async Task SendAsync_IfDispatcherTaskIsFaulted_CallsExceptionServices()
{
// Arrange
Exception expectedException = CreateException();
HttpMessageHandler dispatcher = CreateFaultingMessageHandler(expectedException);
Mock<IExceptionLogger> exceptionLoggerMock = CreateStubExceptionLoggerMock();
IExceptionLogger exceptionLogger = exceptionLoggerMock.Object;
Mock<IExceptionHandler> exceptionHandlerMock = CreateStubExceptionHandlerMock();
IExceptionHandler exceptionHandler = exceptionHandlerMock.Object;
using (HttpRequestMessage expectedRequest = CreateRequest())
using (HttpConfiguration configuration = CreateConfiguration())
using (HttpServer product = CreateProductUnderTest(configuration, dispatcher, exceptionLogger,
exceptionHandler))
{
CancellationToken cancellationToken = CreateCancellationToken();
// Act
await Assert.ThrowsAsync<Exception>(() => product.SendAsync(expectedRequest, cancellationToken));
// Assert
Func<ExceptionContext, bool> exceptionContextMatches = (c) =>
c != null
&& c.Exception == expectedException
&& c.CatchBlock == ExceptionCatchBlocks.HttpServer
&& c.Request == expectedRequest;
exceptionLoggerMock.Verify(l => l.LogAsync(
It.Is<ExceptionLoggerContext>(c => exceptionContextMatches(c.ExceptionContext)),
cancellationToken), Times.Once());
exceptionHandlerMock.Verify(h => h.HandleAsync(
It.Is<ExceptionHandlerContext>((c) => exceptionContextMatches(c.ExceptionContext)),
cancellationToken), Times.Once());
}
}
[Fact]
public async Task SendAsync_IfRequestCancelled_DoesNotCallExceptionServices()
{
// Arrange
Exception expectedException = new OperationCanceledException();
HttpMessageHandler dispatcher = CreateFaultingMessageHandler(expectedException);
Mock<IExceptionLogger> exceptionLoggerMock = new Mock<IExceptionLogger>(MockBehavior.Strict);
IExceptionLogger exceptionLogger = exceptionLoggerMock.Object;
Mock<IExceptionHandler> exceptionHandlerMock = new Mock<IExceptionHandler>(MockBehavior.Strict);
IExceptionHandler exceptionHandler = exceptionHandlerMock.Object;
using (HttpRequestMessage expectedRequest = CreateRequest())
using (HttpConfiguration configuration = CreateConfiguration())
using (HttpServer product = CreateProductUnderTest(configuration, dispatcher, exceptionLogger,
exceptionHandler))
{
CancellationToken cancellationToken = CreateCancellationToken();
// Act
await Assert.ThrowsAsync<OperationCanceledException>(() => product.SendAsync(expectedRequest, cancellationToken));
// The mock handler and logger will throw if they are called, so this test verifies that
// they aren't called by construction.
}
}
[Fact]
public async Task SendAsync_IfExceptionHandlerSetsNullResult_PropogatesFaultedTaskException()
{
// Arrange
Exception expectedException = CreateExceptionWithCallStack();
string expectedStackTrace = expectedException.StackTrace;
HttpMessageHandler dispatcher = CreateFaultingMessageHandler(expectedException);
IExceptionLogger exceptionLogger = CreateStubExceptionLogger();
Mock<IExceptionHandler> exceptionHandlerMock = new Mock<IExceptionHandler>(MockBehavior.Strict);
exceptionHandlerMock
.Setup(h => h.HandleAsync(It.IsAny<ExceptionHandlerContext>(), It.IsAny<CancellationToken>()))
.Callback<ExceptionHandlerContext, CancellationToken>((c, i) => c.Result = null)
.Returns(Task.FromResult(0));
IExceptionHandler exceptionHandler = exceptionHandlerMock.Object;
using (HttpRequestMessage request = CreateRequest())
using (HttpConfiguration configuration = CreateConfiguration())
using (HttpServer product = CreateProductUnderTest(configuration, dispatcher, exceptionLogger,
exceptionHandler))
{
CancellationToken cancellationToken = CreateCancellationToken();
// Act & Assert
var exception = await Assert.ThrowsAsync<Exception>(() => product.SendAsync(request, cancellationToken));
Assert.Same(expectedException, exception);
Assert.NotNull(exception.StackTrace);
Assert.StartsWith(expectedStackTrace, exception.StackTrace);
}
}
[Fact]
public async Task SendAsync_IfExceptionHandlerHandlesException_ReturnsResponse()
{
// Arrange
HttpMessageHandler dispatcher = CreateFaultingMessageHandler(CreateException());
IExceptionLogger exceptionLogger = CreateStubExceptionLogger();
using (HttpResponseMessage expectedResponse = CreateResponse())
{
Mock<IExceptionHandler> exceptionHandlerMock = new Mock<IExceptionHandler>(MockBehavior.Strict);
exceptionHandlerMock
.Setup(h => h.HandleAsync(It.IsAny<ExceptionHandlerContext>(), It.IsAny<CancellationToken>()))
.Callback<ExceptionHandlerContext, CancellationToken>((c, i) =>
c.Result = new ResponseMessageResult(expectedResponse))
.Returns(Task.FromResult(0));
IExceptionHandler exceptionHandler = exceptionHandlerMock.Object;
using (HttpRequestMessage request = CreateRequest())
using (HttpConfiguration configuration = new HttpConfiguration())
using (HttpServer product = CreateProductUnderTest(configuration, dispatcher, exceptionLogger,
exceptionHandler))
{
CancellationToken cancellationToken = CreateCancellationToken();
// Act
HttpResponseMessage response = await product.SendAsync(request, cancellationToken);
// Assert
Assert.Same(expectedResponse, response);
}
}
}
[Fact]
public async Task HttpServerAddsDefaultRequestContext()
{
// Arrange
HttpServer server = new HttpServer();
var handler = new ThrowIfNoContext();
server.Configuration.MessageHandlers.Add(handler);
server.Configuration.MapHttpAttributeRoutes();
server.Configuration.EnsureInitialized();
var invoker = new HttpMessageInvoker(server);
var request = new HttpRequestMessage(HttpMethod.Get, "http://localhost/Customers");
// Act
var response = await invoker.SendAsync(request, CancellationToken.None);
// Assert
response.EnsureSuccessStatusCode();
Assert.True(handler.ContextFound);
}
[Fact]
public async Task HttpServerDoesNotReplaceOriginalRequestContext()
{
// Arrange
HttpServer server = new HttpServer();
var handler = new ThrowIfNoContext();
server.Configuration.MessageHandlers.Add(handler);
server.Configuration.MapHttpAttributeRoutes();
server.Configuration.EnsureInitialized();
HttpMessageInvoker invoker = new HttpMessageInvoker(server);
HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Get, "http://localhost/Customers");
HttpRequestContext context = new HttpRequestContext();
request.SetRequestContext(context);
// Act
var response = await invoker.SendAsync(request, CancellationToken.None);
// Assert
response.EnsureSuccessStatusCode();
Assert.True(handler.ContextFound);
Assert.Equal(context, response.RequestMessage.GetRequestContext());
}
private static CancellationToken CreateCancellationToken()
{
CancellationTokenSource source = new CancellationTokenSource();
return source.Token;
}
private static HttpConfiguration CreateConfiguration()
{
return new HttpConfiguration();
}
private static IExceptionHandler CreateDummyExceptionHandler()
{
return new Mock<IExceptionHandler>(MockBehavior.Strict).Object;
}
private static IExceptionLogger CreateDummyExceptionLogger()
{
return new Mock<IExceptionLogger>(MockBehavior.Strict).Object;
}
private static HttpMessageHandler CreateDummyMessageHandler()
{
Mock<HttpMessageHandler> mock = new Mock<HttpMessageHandler>(MockBehavior.Strict);
mock.As<IDisposable>().Setup(c => c.Dispose());
return mock.Object;
}
private static Exception CreateException()
{
return new Exception();
}
private static Exception CreateExceptionWithCallStack()
{
try
{
throw CreateException();
}
catch (Exception exception)
{
return exception;
}
}
private static Task<TResult> CreateFaultedTask<TResult>(Exception exception)
{
TaskCompletionSource<TResult> source = new TaskCompletionSource<TResult>();
source.SetException(exception);
return source.Task;
}
private static HttpMessageHandler CreateFaultingMessageHandler(Exception exception)
{
Mock<HttpMessageHandler> mock = new Mock<HttpMessageHandler>();
mock
.Protected()
.Setup<Task<HttpResponseMessage>>("SendAsync", ItExpr.IsAny<HttpRequestMessage>(),
ItExpr.IsAny<CancellationToken>())
.Returns(CreateFaultedTask<HttpResponseMessage>(exception));
return mock.Object;
}
private static HttpServer CreateProductUnderTest(HttpConfiguration configuration,
HttpMessageHandler dispatcher, IExceptionLogger exceptionLogger, IExceptionHandler exceptionHandler)
{
return new HttpServer(configuration, dispatcher)
{
ExceptionLogger = exceptionLogger,
ExceptionHandler = exceptionHandler
};
}
private static HttpRequestMessage CreateRequest()
{
return new HttpRequestMessage();
}
private static HttpResponseMessage CreateResponse()
{
return new HttpResponseMessage();
}
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 class ThrowIfNoContext : DelegatingHandler
{
public bool ContextFound { get; set; }
protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
HttpRequestContext incomingContext = request.GetRequestContext();
if (incomingContext == null)
{
throw new InvalidOperationException("context missing");
}
ContextFound = true;
HttpResponseMessage result = await base.SendAsync(request, cancellationToken);
HttpRequestContext outgoingContext = result.RequestMessage.GetRequestContext();
if (outgoingContext != incomingContext)
{
throw new InvalidOperationException("context mismatch");
}
return result;
}
}
public class RequestHasContextController : ApiController
{
[Route("Customers")]
public IHttpActionResult Get()
{
if (RequestContext == null)
{
return InternalServerError();
}
if (Request.GetRequestContext() == null)
{
return BadRequest();
}
return Ok();
}
}
private class ThrowingMessageHandler : DelegatingHandler
{
private Exception _exception;
public ThrowingMessageHandler(Exception exception)
{
_exception = exception;
}
protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
// dummy await so that the task doesn't get completed synchronously.
await Task.FromResult(42);
throw _exception;
}
}
private class ThrowingRoute : HttpRoute
{
private Exception _exception;
public ThrowingRoute(Exception exception)
{
_exception = exception;
}
public override IHttpRouteData GetRouteData(string virtualPathRoot, HttpRequestMessage request)
{
throw _exception;
}
}
}
}