admin管理员组文章数量:1344229
After a bunch of research from SO and other places, I have a unit test that looks like this:
Content = new StringContent("{" +
"\"data\": null" +
"}")
Mock<HttpClient> httpClientMock = new();
var httpMessageHandlerMock = new Mock<HttpMessageHandler>();
httpMessageHandlerMock
.Protected()
.Setup<Task<HttpResponseMessage>>(
"SendAsync",
ItExpr.IsAny<HttpRequestMessage>(),
ItExpr.IsAny<CancellationToken>()
)
.ReturnsAsync(expectedResponse);
_httpClientFactoryMock.Setup(fact => fact.CreateClient(It.IsAny<string>())).Returns(new HttpClient(httpMessageHandlerMock.Object));
DealerLocationService s = new(_httpClientFactoryMock.Object, _fakeOptions, _loggerMock.Object);
_ = await s.GetClosest("us", "12345");
httpMessageHandlerMock.Protected().Verify(
"SendAsync",
Times.Between(0, 1, Moq.Range.Inclusive),
ItExpr.Is<HttpRequestMessage>(req => req.RequestUri.AbsolutePath == "/us/123456"),
ItExpr.IsAny<CancellationToken>());
The problem is that this code passes in all cases. As written, it should fail -- the path it would receive is /US/12345
. The test passes when I check for that at the end... but it also passes when I check for /us/123456
as I do above.
I could put anything in that ItExpr.Is()
call in the Verify()
step, and the test passes. What I want to do is make sure that the request the HttpClient
got was what I built -- complete with case-sensitivity.
Can someone please point me to what I'm missing?
本文标签: cMoqVerify of HttpClient passes even when it should failStack Overflow
版权声明:本文标题:c# - Moq.Verify of HttpClient passes even when it should fail - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743737746a2530321.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论