forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpControllerDispatcherTest.cs
More file actions
701 lines (592 loc) · 31.8 KB
/
Copy pathHttpControllerDispatcherTest.cs
File metadata and controls
701 lines (592 loc) · 31.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Net;
using System.Net.Http;
using System.Runtime.ExceptionServices;
using System.Threading;
using System.Threading.Tasks;
using System.Web.Http.Controllers;
using System.Web.Http.ExceptionHandling;
using System.Web.Http.Results;
using System.Web.Http.Routing;
using Microsoft.TestCommon;
using Moq;
namespace System.Web.Http.Dispatcher
{
public class HttpControllerDispatcherTest
{
[Fact]
public void Constructor_GuardClauses()
{
Assert.ThrowsArgumentNull(
() => new HttpControllerDispatcher(configuration: null),
"configuration");
}
[Fact]
public void ExceptionLoggerGet_ReturnsSpecifiedInstance()
{
// Arrange
IExceptionLogger expectedExceptionLogger = CreateDummyExceptionLogger();
IExceptionHandler exceptionHandler = CreateDummyExceptionHandler();
using (HttpConfiguration configuration = CreateConfiguration())
using (HttpControllerDispatcher product = CreateProductUnderTest(configuration, 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 (HttpControllerDispatcher product = CreateProductUnderTest(configuration, 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 (HttpControllerDispatcher product = CreateProductUnderTest(configuration))
{
// 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 (HttpControllerDispatcher product = CreateProductUnderTest(configuration))
{
// Act
IExceptionHandler exceptionHandler = product.ExceptionHandler;
// Assert
LastChanceExceptionHandler lastChanceHandler = Assert.IsType<LastChanceExceptionHandler>(exceptionHandler);
Assert.Same(expectedExceptionHandler, lastChanceHandler.InnerHandler);
}
}
}
[Fact]
public async Task SendAsync_CallsControllerSelectorToGetControllerDescriptor()
{
var mockSelector = new Mock<IHttpControllerSelector>();
var config = new HttpConfiguration();
config.Services.Replace(typeof(IHttpControllerSelector), mockSelector.Object);
var request = CreateRequest(config, "http://localhost/api/foo");
var dispatcher = new HttpControllerDispatcher(config);
var invoker = new HttpMessageInvoker(dispatcher);
await invoker.SendAsync(request, CancellationToken.None);
mockSelector.Verify(s => s.SelectController(request), Times.Once());
}
[Fact]
public async Task SendAsync_CallsControllerDescriptorToCreateController()
{
var mockSelector = new Mock<IHttpControllerSelector>();
var mockDescriptor = new Mock<HttpControllerDescriptor>();
var config = new HttpConfiguration();
config.Services.Replace(typeof(IHttpControllerSelector), mockSelector.Object);
var request = CreateRequest(config, "http://localhost/api/foo");
mockSelector.Setup(s => s.SelectController(request))
.Returns(mockDescriptor.Object);
mockDescriptor.Setup(d => d.CreateController(request))
.Returns(new PrivateController())
.Verifiable();
var dispatcher = new HttpControllerDispatcher(config);
var invoker = new HttpMessageInvoker(dispatcher);
await invoker.SendAsync(request, CancellationToken.None);
mockDescriptor.Verify();
}
[Fact]
public async Task SendAsync_CallsControllerExecuteAsyncWithPopulatedControllerContext()
{
HttpControllerContext calledContext = null;
var mockSelector = new Mock<IHttpControllerSelector>();
var mockDescriptor = new Mock<HttpControllerDescriptor>();
var mockController = new Mock<IHttpController>();
var config = new HttpConfiguration();
config.Services.Replace(typeof(IHttpControllerSelector), mockSelector.Object);
var request = CreateRequest(config, "http://localhost/api/foo");
mockSelector.Setup(s => s.SelectController(request))
.Returns(mockDescriptor.Object);
mockDescriptor.Setup(d => d.CreateController(request))
.Returns(mockController.Object);
mockDescriptor.Object.Initialize(config);
mockController.Setup(c => c.ExecuteAsync(It.IsAny<HttpControllerContext>(), CancellationToken.None))
.Callback((HttpControllerContext ctxt, CancellationToken token) => { calledContext = ctxt; });
var dispatcher = new HttpControllerDispatcher(config);
var invoker = new HttpMessageInvoker(dispatcher);
await invoker.SendAsync(request, CancellationToken.None);
Assert.NotNull(calledContext);
Assert.Same(mockController.Object, calledContext.Controller);
Assert.Same(mockDescriptor.Object, calledContext.ControllerDescriptor);
Assert.Same(config, calledContext.Configuration);
Assert.Same(request, calledContext.Request);
Assert.Same(request.GetRouteData(), calledContext.RouteData);
}
[Fact]
public async Task SendAsync_Returns404WhenControllerSelectorReturnsNullControllerDescriptor()
{
var config = new HttpConfiguration();
var request = CreateRequest(config, "http://localhost/api/foo");
var dispatcher = new HttpControllerDispatcher(config);
var invoker = new HttpMessageInvoker(dispatcher);
HttpResponseMessage response = await invoker.SendAsync(request, CancellationToken.None);
Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
}
// In this case the controller selector throws, so we don't get a controller context in the
// exception handlers.
[Fact]
public async Task SendAsync_IfSendAsyncThrows_InControllerSelector_CallsExceptionServices()
{
// Arrange
Exception expectedException = CreateException();
Mock<IExceptionLogger> exceptionLoggerMock = CreateStubExceptionLoggerMock();
IExceptionLogger exceptionLogger = exceptionLoggerMock.Object;
Mock<IExceptionHandler> exceptionHandlerMock = CreateStubExceptionHandlerMock();
IExceptionHandler exceptionHandler = exceptionHandlerMock.Object;
using (HttpRequestMessage expectedRequest = CreateRequestWithRouteData())
using (HttpConfiguration configuration = CreateConfiguration())
using (HttpMessageHandler product = CreateProductUnderTest(configuration, exceptionLogger,
exceptionHandler))
{
configuration.Services.Replace(typeof(IHttpControllerSelector),
CreateThrowingControllerSelector(expectedException));
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.HttpControllerDispatcher
&& c.Request == expectedRequest
&& c.ControllerContext == null;
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());
}
}
// In this case the controller itself throws, so we get a controller context in the
// exception handlers.
[Fact]
public async Task SendAsync_IfSendAsyncThrows_Controller_CallsExceptionServices()
{
// Arrange
Exception expectedException = CreateException();
Mock<IExceptionLogger> exceptionLoggerMock = CreateStubExceptionLoggerMock();
IExceptionLogger exceptionLogger = exceptionLoggerMock.Object;
Mock<IExceptionHandler> exceptionHandlerMock = CreateStubExceptionHandlerMock();
IExceptionHandler exceptionHandler = exceptionHandlerMock.Object;
var controller = new ThrowingController(expectedException);
var controllerActivator = new Mock<IHttpControllerActivator>();
controllerActivator
.Setup(
activator => activator.Create(
It.IsAny<HttpRequestMessage>(),
It.IsAny<HttpControllerDescriptor>(),
It.IsAny<Type>()))
.Returns(controller);
using (HttpRequestMessage expectedRequest = CreateRequestWithRouteData())
using (HttpConfiguration configuration = CreateConfiguration())
using (HttpMessageHandler product = CreateProductUnderTest(configuration, exceptionLogger,
exceptionHandler))
{
var controllerSelector = new Mock<IHttpControllerSelector>(MockBehavior.Strict);
controllerSelector
.Setup(selector => selector.SelectController(It.IsAny<HttpRequestMessage>()))
.Returns(new HttpControllerDescriptor(configuration, "Throwing", controller.GetType()));
configuration.Services.Replace(typeof(IHttpControllerSelector), controllerSelector.Object);
configuration.Services.Replace(typeof(IHttpControllerActivator), controllerActivator.Object);
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.HttpControllerDispatcher
&& c.Request == expectedRequest
&& c.ControllerContext != null
&& c.ControllerContext == controller.ControllerContext
&& c.ControllerContext.Controller == controller;
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_IfSendAsyncCancels_InControllerSelector_DoesNotCallExceptionServices()
{
// Arrange
Exception expectedException = new OperationCanceledException();
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 = CreateRequestWithRouteData())
using (HttpConfiguration configuration = CreateConfiguration())
using (HttpMessageHandler product = CreateProductUnderTest(configuration, exceptionLogger,
exceptionHandler))
{
configuration.Services.Replace(typeof(IHttpControllerSelector),
CreateThrowingControllerSelector(expectedException));
CancellationToken cancellationToken = CreateCancellationToken();
// Act & Assert
await Assert.ThrowsAsync<OperationCanceledException>(() => product.SendAsync(expectedRequest, cancellationToken));
}
}
[Fact]
public async Task SendAsync_IfExceptionHandlerSetsNullResult_PropogatesFaultedTaskException()
{
// Arrange
ExceptionDispatchInfo exceptionInfo = CreateExceptionInfo();
string expectedStackTrace = exceptionInfo.SourceException.StackTrace;
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 = CreateRequestWithRouteData())
using (HttpConfiguration configuration = CreateConfiguration())
using (HttpMessageHandler product = CreateProductUnderTest(configuration, exceptionLogger,
exceptionHandler))
{
configuration.Services.Replace(typeof(IHttpControllerSelector),
CreateThrowingControllerSelector(exceptionInfo));
CancellationToken cancellationToken = CreateCancellationToken();
// Act & Assert
var exception = await Assert.ThrowsAsync<Exception>(() => product.SendAsync(request, cancellationToken));
Assert.Same(exceptionInfo.SourceException, exception);
Assert.NotNull(exception.StackTrace);
Assert.StartsWith(expectedStackTrace, exception.StackTrace);
}
}
[Fact]
public async Task SendAsync_IfExceptionHandlerHandlesException_ReturnsResponse()
{
// Arrange
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 = CreateRequestWithRouteData())
using (HttpConfiguration configuration = new HttpConfiguration())
using (HttpMessageHandler product = CreateProductUnderTest(configuration, exceptionLogger,
exceptionHandler))
{
configuration.Services.Replace(typeof(IHttpControllerSelector),
CreateThrowingControllerSelector(CreateException()));
CancellationToken cancellationToken = CreateCancellationToken();
// Act
HttpResponseMessage response = await product.SendAsync(request, cancellationToken);
// Assert
Assert.Same(expectedResponse, response);
}
}
}
[Fact]
public async Task SendAsync_IfExceptionHandlerIsDefault_Returns500WithHttpErrorWhenControllerThrows()
{
var config = new HttpConfiguration() { IncludeErrorDetailPolicy = IncludeErrorDetailPolicy.Always };
var request = CreateRequest(config, "http://localhost/api/HttpControllerDispatcherThrowing");
var dispatcher = new HttpControllerDispatcher(config);
var invoker = new HttpMessageInvoker(dispatcher);
HttpResponseMessage response = await invoker.SendAsync(request, CancellationToken.None);
Assert.Equal(HttpStatusCode.InternalServerError, response.StatusCode);
var objectContent = Assert.IsType<ObjectContent<HttpError>>(response.Content);
var error = Assert.IsType<HttpError>(objectContent.Value);
Assert.Equal("Hello from the throwing controller", error["ExceptionMessage"]);
}
[Fact]
public async Task SendAsync_CreatesControllerContext_WithRequestContextFromRequest()
{
// Arrange
using (HttpConfiguration configuration = new HttpConfiguration())
using (HttpControllerDispatcher dispatcher = new HttpControllerDispatcher(configuration))
using (HttpMessageInvoker invoker = new HttpMessageInvoker(dispatcher))
using (HttpRequestMessage request = new HttpRequestMessage())
{
Mock<IHttpController> controllerMock = new Mock<IHttpController>();
HttpRequestContext requestContext = null;
controllerMock
.Setup(c => c.ExecuteAsync(It.IsAny<HttpControllerContext>(), CancellationToken.None))
.Callback<HttpControllerContext, CancellationToken>((c, t) =>
{
requestContext = c.RequestContext;
});
Mock<HttpControllerDescriptor> controllerDescriptorMock = new Mock<HttpControllerDescriptor>();
controllerDescriptorMock.Setup(d => d.CreateController(request)).Returns(controllerMock.Object);
HttpControllerDescriptor controllerDescriptor = controllerDescriptorMock.Object;
controllerDescriptor.Configuration = configuration;
Mock<IHttpControllerSelector> controllerSelectorMock = new Mock<IHttpControllerSelector>();
controllerSelectorMock.Setup(s => s.SelectController(request)).Returns(controllerDescriptor);
configuration.Services.Replace(typeof(IHttpControllerSelector), controllerSelectorMock.Object);
HttpRequestContext expectedRequestContext = new HttpRequestContext
{
Configuration = configuration
};
request.SetRequestContext(expectedRequestContext);
request.SetRouteData(new Mock<IHttpRouteData>(MockBehavior.Strict).Object);
// Act
HttpResponseMessage ignore = await invoker.SendAsync(request, CancellationToken.None);
// Assert
Assert.Same(expectedRequestContext, requestContext);
}
}
[Fact]
public async Task SendAsync_CreatesControllerContextWithRequestBackedRequestContext_WhenRequestRequestContextIsNull()
{
// Arrange
using (HttpConfiguration configuration = new HttpConfiguration())
using (HttpControllerDispatcher dispatcher = new HttpControllerDispatcher(configuration))
using (HttpMessageInvoker invoker = new HttpMessageInvoker(dispatcher))
using (HttpRequestMessage request = new HttpRequestMessage())
{
Mock<IHttpController> controllerMock = new Mock<IHttpController>();
HttpRequestContext requestContext = null;
controllerMock
.Setup(c => c.ExecuteAsync(It.IsAny<HttpControllerContext>(), CancellationToken.None))
.Callback<HttpControllerContext, CancellationToken>((c, t) =>
{
requestContext = c.RequestContext;
});
Mock<HttpControllerDescriptor> controllerDescriptorMock = new Mock<HttpControllerDescriptor>();
controllerDescriptorMock.Setup(d => d.CreateController(request)).Returns(controllerMock.Object);
HttpControllerDescriptor controllerDescriptor = controllerDescriptorMock.Object;
controllerDescriptor.Configuration = configuration;
Mock<IHttpControllerSelector> controllerSelectorMock = new Mock<IHttpControllerSelector>();
controllerSelectorMock.Setup(s => s.SelectController(request)).Returns(controllerDescriptor);
configuration.Services.Replace(typeof(IHttpControllerSelector), controllerSelectorMock.Object);
request.SetRouteData(new Mock<IHttpRouteData>(MockBehavior.Strict).Object);
// Act
HttpResponseMessage ignore = await invoker.SendAsync(request, CancellationToken.None);
// Assert
RequestBackedHttpRequestContext typedRequestContext = Assert.IsType<RequestBackedHttpRequestContext>(requestContext);
Assert.Same(request, typedRequestContext.Request);
Assert.Same(configuration, typedRequestContext.Configuration);
}
}
[Fact]
public async Task SendAsync_SetsRequestBackedRequestContextOnRequest_WhenRequestRequestContextIsNull()
{
// Arrange
using (HttpConfiguration configuration = new HttpConfiguration())
using (HttpControllerDispatcher dispatcher = new HttpControllerDispatcher(configuration))
using (HttpMessageInvoker invoker = new HttpMessageInvoker(dispatcher))
using (HttpRequestMessage request = new HttpRequestMessage())
{
Mock<IHttpController> controllerMock = new Mock<IHttpController>();
HttpRequestContext requestContext = null;
controllerMock
.Setup(c => c.ExecuteAsync(It.IsAny<HttpControllerContext>(), CancellationToken.None))
.Callback<HttpControllerContext, CancellationToken>((c, t) =>
{
requestContext = request.GetRequestContext();
});
Mock<HttpControllerDescriptor> controllerDescriptorMock = new Mock<HttpControllerDescriptor>();
controllerDescriptorMock.Setup(d => d.CreateController(request)).Returns(controllerMock.Object);
HttpControllerDescriptor controllerDescriptor = controllerDescriptorMock.Object;
controllerDescriptor.Configuration = configuration;
Mock<IHttpControllerSelector> controllerSelectorMock = new Mock<IHttpControllerSelector>();
controllerSelectorMock.Setup(s => s.SelectController(request)).Returns(controllerDescriptor);
configuration.Services.Replace(typeof(IHttpControllerSelector), controllerSelectorMock.Object);
request.SetRouteData(new Mock<IHttpRouteData>(MockBehavior.Strict).Object);
// Act
HttpResponseMessage ignore = await invoker.SendAsync(request, CancellationToken.None);
// Assert
RequestBackedHttpRequestContext typedRequestContext = Assert.IsType<RequestBackedHttpRequestContext>(requestContext);
Assert.Same(request, typedRequestContext.Request);
Assert.Same(configuration, typedRequestContext.Configuration);
}
}
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 Exception CreateException()
{
return new Exception();
}
private static ExceptionDispatchInfo CreateExceptionInfo()
{
try
{
throw CreateException();
}
catch (Exception exception)
{
return ExceptionDispatchInfo.Capture(exception);
}
}
private static HttpControllerDispatcher CreateProductUnderTest(HttpConfiguration configuration)
{
return new HttpControllerDispatcher(configuration);
}
private static HttpControllerDispatcher CreateProductUnderTest(HttpConfiguration configuration,
IExceptionLogger exceptionLogger, IExceptionHandler exceptionHandler)
{
return new HttpControllerDispatcher(configuration)
{
ExceptionLogger = exceptionLogger,
ExceptionHandler = exceptionHandler
};
}
private static HttpRequestMessage CreateRequestWithRouteData()
{
HttpRequestMessage request = new HttpRequestMessage();
request.SetRouteData(new Mock<IHttpRouteData>(MockBehavior.Strict).Object);
return request;
}
private static HttpRequestMessage CreateRequest(HttpConfiguration config, string requestUri)
{
IHttpRoute route = config.Routes.MapHttpRoute("default", "api/{controller}/{id}", new { id = RouteParameter.Optional });
var request = new HttpRequestMessage(HttpMethod.Get, requestUri);
request.SetRouteData(route.GetRouteData("/", request));
request.SetConfiguration(config);
return request;
}
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 static IHttpControllerSelector CreateThrowingControllerSelector(Exception exception)
{
Mock<IHttpControllerSelector> mock = new Mock<IHttpControllerSelector>(MockBehavior.Strict);
mock
.Setup(s => s.SelectController(It.IsAny<HttpRequestMessage>()))
.Throws(exception);
return mock.Object;
}
private static IHttpControllerSelector CreateThrowingControllerSelector(ExceptionDispatchInfo exceptionInfo)
{
return new ThrowingControllerSelector(exceptionInfo);
}
private class PrivateController : ApiController
{
public void Get() { }
public override Task<HttpResponseMessage> ExecuteAsync(HttpControllerContext controllerContext, CancellationToken cancellationToken)
{
// Empty. Skip all the logic of execcuting a controller.
HttpResponseMessage response = new HttpResponseMessage();
return Task.FromResult(response);
}
}
private class ThrowingControllerSelector : IHttpControllerSelector
{
private readonly ExceptionDispatchInfo _exceptionInfo;
public ThrowingControllerSelector(ExceptionDispatchInfo exceptionInfo)
{
Contract.Assert(exceptionInfo != null);
_exceptionInfo = exceptionInfo;
}
public HttpControllerDescriptor SelectController(HttpRequestMessage request)
{
_exceptionInfo.Throw();
return null; // We'll never get here, but the compiler doesn't know that.
}
public IDictionary<string, HttpControllerDescriptor> GetControllerMapping()
{
_exceptionInfo.Throw();
return null; // We'll never get here, but the compiler doesn't know that.
}
}
}
public class ThrowingController : ApiController
{
private readonly Exception _exception;
public ThrowingController(Exception exception)
{
_exception = exception;
}
public override Task<HttpResponseMessage> ExecuteAsync(HttpControllerContext controllerContext, CancellationToken cancellationToken)
{
ControllerContext = controllerContext;
throw _exception;
}
}
// This is used in SendAsync_IfExceptionHandlerIsDefault_Returns500WithHttpErrorWhenControllerThrows
// Don't touch!
public class HttpControllerDispatcherThrowingController : ApiController
{
public void Get()
{
throw new Exception("Hello from the throwing controller");
}
}
}