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
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.IO;
using System.Web.Hosting;
using Moq;
using Xunit;
using Assert = Microsoft.TestCommon.AssertEx;
namespace System.Web.Mvc.Test
{
public class HttpHandlerUtilTest
{
[Fact]
public void WrapForServerExecute_BeginProcessRequest_DelegatesCorrectly()
{
// Arrange
IAsyncResult expectedResult = new Mock<IAsyncResult>().Object;
AsyncCallback cb = delegate { };
HttpContext httpContext = GetHttpContext();
Mock<IHttpAsyncHandler> mockHttpHandler = new Mock<IHttpAsyncHandler>();
mockHttpHandler.Setup(o => o.BeginProcessRequest(httpContext, cb, "extraData")).Returns(expectedResult);
IHttpAsyncHandler wrapper = (IHttpAsyncHandler)HttpHandlerUtil.WrapForServerExecute(mockHttpHandler.Object);
// Act
IAsyncResult actualResult = wrapper.BeginProcessRequest(httpContext, cb, "extraData");
// Assert
Assert.Equal(expectedResult, actualResult);
}
[Fact]
public void WrapForServerExecute_EndProcessRequest_DelegatesCorrectly()
{
// Arrange
IAsyncResult asyncResult = new Mock<IAsyncResult>().Object;
HttpContext httpContext = GetHttpContext();
Mock<IHttpAsyncHandler> mockHttpHandler = new Mock<IHttpAsyncHandler>();
mockHttpHandler.Setup(o => o.EndProcessRequest(asyncResult)).Verifiable();
IHttpAsyncHandler wrapper = (IHttpAsyncHandler)HttpHandlerUtil.WrapForServerExecute(mockHttpHandler.Object);
// Act
wrapper.EndProcessRequest(asyncResult);
// Assert
mockHttpHandler.Verify();
}
[Fact]
public void WrapForServerExecute_ProcessRequest_DelegatesCorrectly()
{
// Arrange
HttpContext httpContext = GetHttpContext();
Mock<IHttpHandler> mockHttpHandler = new Mock<IHttpHandler>();
mockHttpHandler.Setup(o => o.ProcessRequest(httpContext)).Verifiable();
IHttpHandler wrapper = HttpHandlerUtil.WrapForServerExecute(mockHttpHandler.Object);
// Act
wrapper.ProcessRequest(httpContext);
// Assert
mockHttpHandler.Verify();
}
[Fact]
public void WrapForServerExecute_ProcessRequest_PropagatesExceptionsIfNotHttpException()
{
// Arrange
HttpContext httpContext = GetHttpContext();
Mock<IHttpHandler> mockHttpHandler = new Mock<IHttpHandler>();
mockHttpHandler.Setup(o => o.ProcessRequest(httpContext)).Throws(new InvalidOperationException("Some exception."));
IHttpHandler wrapper = HttpHandlerUtil.WrapForServerExecute(mockHttpHandler.Object);
// Act & assert
Assert.Throws<InvalidOperationException>(
delegate { wrapper.ProcessRequest(httpContext); },
@"Some exception.");
}
[Fact]
public void WrapForServerExecute_ProcessRequest_PropagatesHttpExceptionIfStatusCode500()
{
// Arrange
HttpContext httpContext = GetHttpContext();
Mock<IHttpHandler> mockHttpHandler = new Mock<IHttpHandler>();
mockHttpHandler.Setup(o => o.ProcessRequest(httpContext)).Throws(new HttpException(500, "Some exception."));
IHttpHandler wrapper = HttpHandlerUtil.WrapForServerExecute(mockHttpHandler.Object);
// Act & assert
Assert.ThrowsHttpException(
delegate { wrapper.ProcessRequest(httpContext); },
@"Some exception.",
500);
}
[Fact]
public void WrapForServerExecute_ProcessRequest_WrapsHttpExceptionIfStatusCodeNot500()
{
// Arrange
HttpContext httpContext = GetHttpContext();
Mock<IHttpHandler> mockHttpHandler = new Mock<IHttpHandler>();
mockHttpHandler.Setup(o => o.ProcessRequest(httpContext)).Throws(new HttpException(404, "Some exception."));
IHttpHandler wrapper = HttpHandlerUtil.WrapForServerExecute(mockHttpHandler.Object);
// Act & assert
HttpException outerException = Assert.ThrowsHttpException(
delegate { wrapper.ProcessRequest(httpContext); },
@"Execution of the child request failed. Please examine the InnerException for more information.",
500);
HttpException innerException = outerException.InnerException as HttpException;
Assert.NotNull(innerException);
Assert.Equal(404, innerException.GetHttpCode());
Assert.Equal("Some exception.", innerException.Message);
}
[Fact]
public void WrapForServerExecute_ReturnsIHttpAsyncHandler()
{
// Arrange
IHttpAsyncHandler httpHandler = new Mock<IHttpAsyncHandler>().Object;
// Act
IHttpHandler wrapper = HttpHandlerUtil.WrapForServerExecute(httpHandler);
// Assert
Assert.True(wrapper is IHttpAsyncHandler);
}
[Fact]
public void WrapForServerExecute_ReturnsIHttpHandler()
{
// Arrange
IHttpHandler httpHandler = new Mock<IHttpHandler>().Object;
// Act
IHttpHandler wrapper = HttpHandlerUtil.WrapForServerExecute(httpHandler);
// Assert
Assert.False(wrapper is IHttpAsyncHandler);
}
private static HttpContext GetHttpContext()
{
return new HttpContext(new SimpleWorkerRequest("/", "/", "Page", "Query", TextWriter.Null));
}
}
}
|