Cevapların çoğuna ikna olmadım.
Öncelikle, kullanan bir yöntemi birim test etmek istediğinizi hayal edin HttpClient
. HttpClient
Doğrudan uygulamanızda somutlaştırmamalısınız . Size bir örnek sağlama sorumluluğu olan bir fabrika enjekte HttpClient
etmelisiniz. Bu şekilde, daha sonra o fabrikada alay edebilir ve hangisini HttpClient
isterseniz geri dönebilirsiniz (örneğin: HttpClient
gerçek değil, bir sahte ).
Yani, aşağıdaki gibi bir fabrikanız olur:
public interface IHttpClientFactory
{
HttpClient Create();
}
Ve bir uygulama:
public class HttpClientFactory
: IHttpClientFactory
{
public HttpClient Create()
{
var httpClient = new HttpClient();
return httpClient;
}
}
Elbette bu uygulamaya IoC Container'a kaydolmanız gerekir. Autofac kullanırsanız, aşağıdaki gibi olur:
builder
.RegisterType<IHttpClientFactory>()
.As<HttpClientFactory>()
.SingleInstance();
Artık düzgün ve test edilebilir bir uygulamaya sahip olacaksınız. Yönteminizin şöyle bir şey olduğunu hayal edin:
public class MyHttpClient
: IMyHttpClient
{
private readonly IHttpClientFactory _httpClientFactory;
public SalesOrderHttpClient(IHttpClientFactory httpClientFactory)
{
_httpClientFactory = httpClientFactory;
}
public async Task<string> PostAsync(Uri uri, string content)
{
using (var client = _httpClientFactory.Create())
{
var clientAddress = uri.GetLeftPart(UriPartial.Authority);
client.BaseAddress = new Uri(clientAddress);
var content = new StringContent(content, Encoding.UTF8, "application/json");
var uriAbsolutePath = uri.AbsolutePath;
var response = await client.PostAsync(uriAbsolutePath, content);
var responseJson = response.Content.ReadAsStringAsync().Result;
return responseJson;
}
}
}
Şimdi test kısmı. soyut olan HttpClient
genişler HttpMessageHandler
. HttpMessageHandler
Temsilciyi kabul eden bir "taklit" oluşturalım , böylece taklidi kullandığımızda her bir test için her davranışı ayarlayabiliriz.
public class MockHttpMessageHandler
: HttpMessageHandler
{
private readonly Func<HttpRequestMessage, CancellationToken, Task<HttpResponseMessage>> _sendAsyncFunc;
public MockHttpMessageHandler(Func<HttpRequestMessage, CancellationToken, Task<HttpResponseMessage>> sendAsyncFunc)
{
_sendAsyncFunc = sendAsyncFunc;
}
protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
return await _sendAsyncFunc.Invoke(request, cancellationToken);
}
}
Ve şimdi, Moq'un (ve birim testlerini daha okunaklı hale getiren bir kitaplık olan FluentAssertions'ın) yardımıyla, PostAsync yöntemimizi kullanarak birim testi yapmak için gereken her şeye sahibiz. HttpClient
public static class PostAsyncTests
{
public class Given_A_Uri_And_A_JsonMessage_When_Posting_Async
: Given_WhenAsync_Then_Test
{
private SalesOrderHttpClient _sut;
private Uri _uri;
private string _content;
private string _expectedResult;
private string _result;
protected override void Given()
{
_uri = new Uri("http://test.com/api/resources");
_content = "{\"foo\": \"bar\"}";
_expectedResult = "{\"result\": \"ok\"}";
var httpClientFactoryMock = new Mock<IHttpClientFactory>();
var messageHandlerMock =
new MockHttpMessageHandler((request, cancellation) =>
{
var responseMessage =
new HttpResponseMessage(HttpStatusCode.Created)
{
Content = new StringContent("{\"result\": \"ok\"}")
};
var result = Task.FromResult(responseMessage);
return result;
});
var httpClient = new HttpClient(messageHandlerMock);
httpClientFactoryMock
.Setup(x => x.Create())
.Returns(httpClient);
var httpClientFactory = httpClientFactoryMock.Object;
_sut = new SalesOrderHttpClient(httpClientFactory);
}
protected override async Task WhenAsync()
{
_result = await _sut.PostAsync(_uri, _content);
}
[Fact]
public void Then_It_Should_Return_A_Valid_JsonMessage()
{
_result.Should().BeEquivalentTo(_expectedResult);
}
}
}
Açıkçası bu test aptalca ve biz gerçekten taklitimizi test ediyoruz. Ama fikri anladın. Uygulamanıza bağlı olarak anlamlı mantığı test etmelisiniz.
- cevabın kod durumu 201 değilse, bir istisna oluşturmalı mı?
- yanıt metni ayrıştırılamazsa ne olur?
- vb.
Bu cevabın amacı, HttpClient kullanan bir şeyi test etmekti ve bu, bunu yapmanın güzel ve temiz bir yoludur.
HttpClient
Arayüzünüzde bir ortaya çıkarmak sorunun olduğu yerdir. MüşteriniziHttpClient
somut sınıfı kullanmaya zorluyorsunuz . Bunun yerine, bir göstermelidir soyutlama arasındaHttpClient
.