How can I test a custom DelegatingHandler in the ASP.NET MVC 4 Web API?

前端 未结 4 1035
隐瞒了意图╮
隐瞒了意图╮ 2020-12-24 06:00

I\'ve seen this question come up in a few places, and not seen any great answers. As I\'ve had to do this myself a few times, I thought I\'d post my solution. If you have an

相关标签:
4条回答
  • 2020-12-24 06:25

    I created the following for testing DelegatingHandlers. It is useful for handlers that use the HttpRequestMessage.DependencyScope to resolve dependencies using your favorite IoC framework e.g. a WindsorDependencyResolver with a WindsorContainer:

        public class UnitTestHttpMessageInvoker : HttpMessageInvoker
        {
            private readonly HttpConfiguration configuration;
    
            public UnitTestHttpMessageInvoker(HttpMessageHandler handler, IDependencyResolver resolver)
            : base(handler, true)
            {
                this.configuration = new HttpConfiguration();
                configuration.DependencyResolver = resolver;
            }
    
            [DebuggerNonUserCode]
            public override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
            {
                if (request == null)
                {
                    throw new ArgumentNullException("request");
                }
    
                request.Properties["MS_HttpConfiguration"] = this.configuration;
                return base.SendAsync(request, cancellationToken);
            }
        }
    
    0 讨论(0)
  • 2020-12-24 06:27

    In this approach, I create a TestHandler and set it as the InnerHandler property of the handler under test.

    The handler under test can then be passed to an HttpClient - this may seem unintuitive if you are writing a server-side handler, but this is actually a great light-weight way to test a handler - it will be called in the same way it would in a server.

    The TestHandler will just return an HTTP 200 by default, but it's constructor accepts a function you can use to make asserts about the request message passed in from the handler under test. Finally you can make asserts on the result of the SendAsync call from the client.

    Once everything is set up, call SendAsync on the client instance to invoke your handler. The request will be passed into your handler, it will pass this on to the TestHandler (assuming it passes the call on) which will then return a response back to your handler.

    The test handler looks like this:

    public class TestHandler : DelegatingHandler
    {
        private readonly Func<HttpRequestMessage,
            CancellationToken, Task<HttpResponseMessage>> _handlerFunc;
    
        public TestHandler()
        {
            _handlerFunc = (r, c) => Return200();
        }
    
        public TestHandler(Func<HttpRequestMessage,
            CancellationToken, Task<HttpResponseMessage>> handlerFunc)
        {
            _handlerFunc = handlerFunc;
        }
    
        protected override Task<HttpResponseMessage> SendAsync(
            HttpRequestMessage request, CancellationToken cancellationToken)
        {
            return _handlerFunc(request, cancellationToken);              
        }
    
        public static Task<HttpResponseMessage> Return200()
        {
            return Task.Factory.StartNew(
                () => new HttpResponseMessage(HttpStatusCode.OK));
        }
    }
    

    Example usage with an imagined MyHandler under test. Uses NUnit for the asserts.:

    var httpRequestMessage = new HttpRequestMessage(HttpMethod.Get, "http://test.com");
    httpRequestMessage.Headers.Add("username", "test");
    
    var handler = new MyHandler()
    {
        InnerHandler = new TestHandler((r,c) =>
        {
            Assert.That(r.Headers.Contains("username"));
            return TestHandler.Return200();
        })
    };
    
    var client = new HttpClient(handler);
    var result = client.SendAsync(httpRequestMessage).Result;
    
    Assert.That(result.StatusCode, Is.EqualTo(HttpStatusCode.OK));
    

    The default behaviour of TestHandler is probably fine for many tests and makes the code simpler. The setup of the handler under test then looks like this:

    var handler = new MyHandler();
    handler.InnerHandler = new TestHandler();
    

    I like this approach because it keeps all the assertions in the test method, and the TestHandler is very reusable.

    0 讨论(0)
  • 2020-12-24 06:29

    I also found this answer because i have my custom handler and i want to test it We are using NUnit and Moq, so i think my solution can be helpful for someone

        using Moq;
        using Moq.Protected;
        using NUnit.Framework;
    namespace Unit.Tests
    {
        [TestFixture]
        public sealed class Tests1
        {
            private HttpClient _client;
            private HttpRequestMessage _httpRequest;
            private Mock<DelegatingHandler> _testHandler;
    
            private MyCustomHandler _subject;//MyCustomHandler inherits DelegatingHandler
    
            [SetUp]
            public void Setup()
            {
                _httpRequest = new HttpRequestMessage(HttpMethod.Get, "/someurl");
                _testHandler = new Mock<DelegatingHandler>();
    
                _subject = new MyCustomHandler // create subject
                {
                    InnerHandler = _testHandler.Object //initialize InnerHandler with our mock
                };
    
                _client = new HttpClient(_subject)
                {
                    BaseAddress = new Uri("http://localhost")
                };
            }
    
            [Test]
            public async Task Given_1()
            {
                var mockedResult = new HttpResponseMessage(HttpStatusCode.Accepted);
    
                void AssertThatRequestCorrect(HttpRequestMessage request, CancellationToken token)
                {
                    Assert.That(request, Is.SameAs(_httpRequest));
                    //... Other asserts
                }
    
                // setup protected SendAsync 
                // our MyCustomHandler will call SendAsync internally, and we want to check this call
                _testHandler
                    .Protected()
                    .Setup<Task<HttpResponseMessage>>("SendAsync", _httpRequest, ItExpr.IsAny<CancellationToken>())
                    .Callback(
                        (Action<HttpRequestMessage, CancellationToken>)AssertThatRequestCorrect)
                    .ReturnsAsync(mockedResult);
    
                //Act
                var actualResponse = await _client.SendAsync(_httpRequest);
    
                //check that internal call to SendAsync was only Once and with proper request object
                _testHandler
                    .Protected()
                    .Verify("SendAsync", Times.Once(), _httpRequest, ItExpr.IsAny<CancellationToken>());
    
                // if our custom handler modifies somehow our response we can check it here
                Assert.That(actualResponse.IsSuccessStatusCode, Is.True);
                Assert.That(actualResponse, Is.EqualTo(mockedResult));
                //...Other asserts
            }
        }
    } 
    
    0 讨论(0)
  • 2020-12-24 06:37

    I was just looking for the same thing but came up with a more concise approach that didn't use http client. I wanted a test to assert the message handler consumed a mocked logging component. I didn't really need the inner handler to function, just to "stub" it out to satisfy the unit test. Works for my purpose :)

    //ARRANGE
            var logger = new Mock<ILogger>();
            var handler= new ServiceLoggingHandler(logger.Object);
            var request = ControllerContext.CreateHttpRequest(Guid.NewGuid(), "http://test",HttpMethod.Get);
    
            handler.InnerHandler = new Mock<HttpMessageHandler>(MockBehavior.Loose).Object;
    
            request.Content = new ObjectContent<CompanyRequest>(Company.CreateCompanyDTO(), new JsonMediaTypeFormatter());
            var invoker = new HttpMessageInvoker(handler);
    
            //ACT
            var result = invoker.SendAsync(request, new System.Threading.CancellationToken()).Result;
    
    //ASSERT
    <Your assertion>
    
    0 讨论(0)
提交回复
热议问题