forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpBatchHandlerTest.cs
More file actions
456 lines (383 loc) · 18.7 KB
/
Copy pathHttpBatchHandlerTest.cs
File metadata and controls
456 lines (383 loc) · 18.7 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
// 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.Threading;
using System.Threading.Tasks;
using System.Web.Http.Batch;
using System.Web.Http.ExceptionHandling;
using System.Web.Http.Results;
using Microsoft.TestCommon;
using Moq;
namespace System.Web.Http
{
public class HttpBatchHandlerTest
{
[Fact]
public void Constructor_Throws_WhenServerIsNull()
{
// Arrange
HttpServer httpServer = null;
// Act & Assert
Assert.ThrowsArgumentNull(() => CreateProductUnderTest(httpServer), "httpServer");
}
[Fact]
public void ExceptionLoggerGet_ReturnsSpecifiedInstance()
{
// Arrange
IExceptionLogger expectedExceptionLogger = CreateDummyExceptionLogger();
IExceptionHandler exceptionHandler = CreateDummyExceptionHandler();
using (HttpServer server = CreateServer())
using (HttpBatchHandler handler = CreateProductUnderTest(server, expectedExceptionLogger,
exceptionHandler))
{
// Act
IExceptionLogger exceptionLogger = handler.ExceptionLogger;
// Assert
Assert.Same(expectedExceptionLogger, exceptionLogger);
}
}
[Fact]
public void ExceptionHandlerGet_ReturnsSpecifiedInstance()
{
// Arrange
IExceptionLogger exceptionLogger = CreateDummyExceptionLogger();
IExceptionHandler expectedExceptionHandler = CreateDummyExceptionHandler();
using (HttpServer server = CreateServer())
using (HttpBatchHandler handler = CreateProductUnderTest(server, exceptionLogger,
expectedExceptionHandler))
{
// Act
IExceptionHandler exceptionHandler = handler.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 (HttpServer server = new HttpServer(configuration))
using (HttpBatchHandler product = CreateProductUnderTest(server))
{
// 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_ReturnsExceptionHandlerFromConfiguration()
{
// Arrange
using (HttpConfiguration configuration = CreateConfiguration())
{
IExceptionHandler expectedExceptionHandler = CreateDummyExceptionHandler();
configuration.Services.Replace(typeof(IExceptionHandler), expectedExceptionHandler);
using (HttpServer server = new HttpServer(configuration))
using (HttpBatchHandler product = CreateProductUnderTest(server))
{
// Act
IExceptionHandler exceptionHandler = product.ExceptionHandler;
// Assert
LastChanceExceptionHandler lastChanceHandler = Assert.IsType<LastChanceExceptionHandler>(exceptionHandler);
Assert.Same(expectedExceptionHandler, lastChanceHandler.InnerHandler);
}
}
}
[Fact]
public Task SendAsync_Throws_WhenRequestIsNull()
{
// Arrange
MockHttpBatchHandler mockHandler = new MockHttpBatchHandler(new HttpServer());
// Act & Assert
return Assert.ThrowsArgumentNullAsync(() => mockHandler.SendAsync(null), "request");
}
[Fact]
public async Task SendAsync_CallsProcessBatchAsync()
{
Mock<HttpBatchHandler> handler = new Mock<HttpBatchHandler>(new HttpServer());
handler.Setup(h => h.ProcessBatchAsync(It.IsAny<HttpRequestMessage>(), CancellationToken.None))
.Returns(Task.FromResult(new HttpResponseMessage(HttpStatusCode.Redirect)
{
Content = new StringContent("ProcessBatchAsync called.")
}));
HttpMessageInvoker invoker = new HttpMessageInvoker(handler.Object);
var response = await invoker.SendAsync(new HttpRequestMessage(), CancellationToken.None);
Assert.Equal(HttpStatusCode.Redirect, response.StatusCode);
Assert.Equal("ProcessBatchAsync called.", await response.Content.ReadAsStringAsync());
}
[Fact]
public async Task SendAsync_ReturnsHttpResponseException()
{
Mock<HttpBatchHandler> handler = new Mock<HttpBatchHandler>(new HttpServer());
handler.Setup(h => h.ProcessBatchAsync(It.IsAny<HttpRequestMessage>(), CancellationToken.None))
.Returns(() =>
{
throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.BadRequest)
{
Content = new StringContent("HttpResponseException Error.")
});
});
HttpMessageInvoker invoker = new HttpMessageInvoker(handler.Object);
var response = await invoker.SendAsync(new HttpRequestMessage(), CancellationToken.None);
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
Assert.Equal("HttpResponseException Error.", await response.Content.ReadAsStringAsync());
}
[Fact]
public async Task SendAsync_IfProcessBatchAsyncTaskIsFaulted_CallsExceptionServices()
{
// Arrange
Exception expectedException = CreateException();
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 server = CreateServer(configuration))
using (HttpBatchHandler product = new LambdaHttpBatchHandler(server, exceptionLogger, exceptionHandler,
(i1, i2) => CreateFaultedTask<HttpResponseMessage>(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.HttpBatchHandler
&& 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_IfProcessBatchAsyncTaskIsCanceled_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 = CreateRequest())
using (HttpConfiguration configuration = CreateConfiguration())
using (HttpServer server = CreateServer(configuration))
using (HttpBatchHandler product = new LambdaHttpBatchHandler(server, exceptionLogger, exceptionHandler,
(i1, i2) => CreateFaultedTask<HttpResponseMessage>(expectedException)))
{
CancellationToken cancellationToken = CreateCancellationToken();
// Act & Assert
await Assert.ThrowsAsync<OperationCanceledException>(() => product.SendAsync(expectedRequest, cancellationToken));
}
}
[Fact]
public async Task SendAsync_IfExceptionHandlerSetsNullResult_PropogatesFaultedTaskException()
{
// Arrange
Exception expectedException = CreateExceptionWithCallStack();
string expectedStackTrace = expectedException.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 = CreateRequest())
using (HttpConfiguration configuration = CreateConfiguration())
using (HttpServer server = CreateServer(configuration))
using (HttpBatchHandler product = new LambdaHttpBatchHandler(server, exceptionLogger, exceptionHandler,
(i1, i2) => CreateFaultedTask<HttpResponseMessage>(expectedException)))
{
CancellationToken cancellationToken = CreateCancellationToken();
// Act
var exception = await Assert.ThrowsAsync<Exception>(() => product.SendAsync(request, cancellationToken));
// Assert
Assert.Same(expectedException, 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 = CreateRequest())
using (HttpConfiguration configuration = new HttpConfiguration())
using (HttpServer server = CreateServer(configuration))
using (HttpBatchHandler product = new LambdaHttpBatchHandler(server, exceptionLogger, exceptionHandler,
(i1, i2) => CreateFaultedTask<HttpResponseMessage>(CreateException())))
{
CancellationToken cancellationToken = CreateCancellationToken();
// Act
HttpResponseMessage response = await product.SendAsync(request, cancellationToken);
// Assert
Assert.Same(expectedResponse, response);
}
}
}
[Fact]
public async Task SendAsync_WithDefaultExceptionHandler_IfProcessBatchAsyncTaskIsFaulted_ReturnsInternalServerError()
{
Mock<HttpBatchHandler> handler = new Mock<HttpBatchHandler>(new HttpServer());
handler.Setup(h => h.ProcessBatchAsync(It.IsAny<HttpRequestMessage>(), CancellationToken.None))
.Returns(() =>
{
throw new InvalidOperationException();
});
HttpMessageInvoker invoker = new HttpMessageInvoker(handler.Object);
var response = await invoker.SendAsync(new HttpRequestMessage(), CancellationToken.None);
Assert.Equal(HttpStatusCode.InternalServerError, response.StatusCode);
}
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 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 HttpBatchHandler CreateProductUnderTest(HttpServer httpServer)
{
return new MockHttpBatchHandler(httpServer);
}
private static HttpBatchHandler CreateProductUnderTest(HttpServer httpServer, IExceptionLogger exceptionLogger,
IExceptionHandler exceptionHanlder)
{
return new MockHttpBatchHandler(httpServer, exceptionLogger, exceptionHanlder);
}
private static HttpRequestMessage CreateRequest()
{
return new HttpRequestMessage();
}
private static HttpResponseMessage CreateResponse()
{
return new HttpResponseMessage();
}
private static HttpServer CreateServer()
{
return new HttpServer();
}
private static HttpServer CreateServer(HttpConfiguration configuration)
{
return new HttpServer(configuration);
}
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 LambdaHttpBatchHandler : HttpBatchHandler
{
Func<HttpRequestMessage, CancellationToken, Task<HttpResponseMessage>> _processBatchAsync;
public LambdaHttpBatchHandler(HttpServer httpServer, IExceptionLogger exceptionLogger,
IExceptionHandler exceptionHandler,
Func<HttpRequestMessage, CancellationToken, Task<HttpResponseMessage>> processBatchAsync)
: base(httpServer)
{
Contract.Assert(processBatchAsync != null);
_processBatchAsync = processBatchAsync;
ExceptionLogger = exceptionLogger;
ExceptionHandler = exceptionHandler;
}
public override Task<HttpResponseMessage> ProcessBatchAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
return _processBatchAsync.Invoke(request, cancellationToken);
}
}
private class MockHttpBatchHandler : HttpBatchHandler
{
public MockHttpBatchHandler(HttpServer server)
: base(server)
{
}
public MockHttpBatchHandler(HttpServer httpServer, IExceptionLogger exceptionLogger,
IExceptionHandler exceptionHanlder)
: base(httpServer)
{
ExceptionLogger = exceptionLogger;
ExceptionHandler = exceptionHanlder;
}
public Task<HttpResponseMessage> SendAsync(HttpRequestMessage request)
{
return SendAsync(request, CancellationToken.None);
}
public override Task<HttpResponseMessage> ProcessBatchAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
return Task.FromResult(new HttpResponseMessage());
}
}
}
}