使用Moq来模拟一个unit testing的asynchronous方法

我正在testing一个Web API调用的服务的方法。 如果我也在本地运行Web服务(位于解决scheme中的另一个项目中),使用正常的HttpClient可以正常工作。

但是,当我检查我的更改时,构build服务器将无法访问Web服务,因此testing将失败。

我已经为unit testingdevise了一个解决方法,创build一个IHttpClient接口并实现我在应用程序中使用的版本。 对于unit testing,我使用模拟的asynchronouspost方法完成一个模拟版本。 这是我遇到问题的地方。 我想为这个特定的testing返回一个OK的HttpStatusResult 。 对于另一个类似的testing,我将返回一个不好的结果。

testing将运行,但永远不会完成。 它挂在等待。 我是新来的asynchronous编程,委托,Moq本身,我一直在search和谷歌一段时间学习新的东西,但我似乎无法摆脱这个问题。

这是我想要testing的方法:

 public async Task<bool> QueueNotificationAsync(IHttpClient client, Email email) { // do stuff try { // The test hangs here, never returning HttpResponseMessage response = await client.PostAsync(uri, content); // more logic here } // more stuff } 

这是我的unit testing方法:

 [TestMethod] public async Task QueueNotificationAsync_Completes_With_ValidEmail() { Email email = new Email() { FromAddress = "bob@example.com", ToAddress = "bill@example.com", CCAddress = "brian@example.com", BCCAddress = "ben@example.com", Subject = "Hello", Body = "Hello World." }; var mockClient = new Mock<IHttpClient>(); mockClient.Setup(c => c.PostAsync( It.IsAny<Uri>(), It.IsAny<HttpContent>() )).Returns(() => new Task<HttpResponseMessage>(() => new HttpResponseMessage(System.Net.HttpStatusCode.OK))); bool result = await _notificationRequestService.QueueNotificationAsync(mockClient.Object, email); Assert.IsTrue(result, "Queue failed."); } 

我究竟做错了什么?

感谢您的帮助。

你正在创build一个任务,但从来没有开始,所以它永远不会完成。 但是,不要只是开始任务 – 而是改为使用Task.FromResult<TResult> ,它会给你一个已经完成的任务:

 ... .Returns(Task.FromResult(new HttpResponseMessage(System.Net.HttpStatusCode.OK))); 

请注意,你不会以这种方式testing实际的asynchronous – 如果你想这样做,你需要做更多的工作来创build一个可以更细粒度地控制的Task<T> …但这是另一天的事情。

你也可以考虑使用假的IHttpClient而不是嘲笑一切 – 这取决于你多久需要它。