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