Last active
October 6, 2021 13:47
-
-
Save GeorgDangl/c0a85589616cf3ddffff054ee7cb585d to your computer and use it in GitHub Desktop.
Mock an Asp.Net Core HttpClient with a custom HttpMessageHandler using Moq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net.Http; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using Moq; | |
using Moq.Protected; | |
namespace Tests | |
{ | |
public class MockHttpClient | |
{ | |
public HttpClient GetMockClient() | |
{ | |
var mockHttpMessageHandler = new Mock<HttpMessageHandler>(); | |
mockHttpMessageHandler.Protected() | |
.Setup<Task<HttpResponseMessage>>("SendAsync", ItExpr.IsAny<HttpRequestMessage>(), ItExpr.IsAny<CancellationToken>()) | |
.Returns((HttpRequestMessage request, CancellationToken cancellationToken) => GetMockResponse(request, cancellationToken)); | |
return new HttpClient(mockHttpMessageHandler.Object); | |
} | |
private Task<HttpResponseMessage> GetMockResponse(HttpRequestMessage request, CancellationToken cancellationToken) | |
{ | |
if (request.RequestUri.LocalPath == "/expectedPath") | |
{ | |
var response = new HttpResponseMessage(System.Net.HttpStatusCode.OK); | |
response.Content = new StringContent(GetAuthJson(), Encoding.UTF8, "application/json"); | |
return Task.FromResult(response); | |
} | |
throw new NotImplementedException(); | |
} | |
private string GetAuthJson() | |
{ | |
return "{ \"isAuthenticated\": true }"; | |
} | |
} | |
} |
Hi @spencerdavis2000, I'v just added GetAuthJson()
. This gist only shows a minimal example of what's required to get it working, so there's not much of an actual implementation there.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
is there a dependency needed for GetAuthJson() ?