gpt4 book ai didi

c# - 使用 Nsubstitute 模拟 RestClient ExecuteAsync

转载 作者:太空宇宙 更新时间:2023-11-03 20:59:03 25 4
gpt4 key购买 nike

尝试使用 Nsubstitute 为 RestClient(来自 RestSharp)模拟 ExecuteAsync 方法时遇到了困难。我看过一个使用 Moq 的示例(此处:Mocking Restsharp executeasync method using moq),但我无法理解为什么以下代码使用 nsubstitute 失败:

RestClientMock.When(x => x.ExecuteAsync(Arg.Any<IRestRequest>(), Arg.Any<Action<IRestResponse>>()))
.Do(x => new RestResponse { StatusCode = HttpStatusCode.NotFound });

我就是这样设置的,然后它会像这样命中要测试的代码:

 var tcs = new TaskCompletionSource<SendEmailResponse>();
_restClient.ExecuteAsync(_restRequest, (restResponse) => {

if (restResponse.StatusCode != HttpStatusCode.OK)
tcs.SetResult(new SendEmailResponse(ResponseType.Error, restResponse));

else if (!_enableEmails)
tcs.SetResult(new SendEmailResponse(ResponseType.EmailsTurnedOff, restResponse));

else
tcs.SetResult(new SendEmailResponse(ResponseType.Sent, restResponse));

});

return tcs.Task;

它似乎从未在模拟中执行我的回调代码,只是挂起,因为 tcs 从未设置。这里有人知道如何使这项工作成功吗?

编辑:已解决。谢谢恩科西。所以我只是按照下面的解释更新它而不是返回。如果我更仔细地阅读文档,我就会看到 David Tchepak 在评论中提到的部分。

最佳答案

从最初的检查来看,您似乎没有对传递给模拟方法的回调操作做任何事情

RestClientMock
.ExecuteAsync(
Arg.Any<IRestRequest>(),
Arg.Do<Action<IRestResponse, RestRequestAsyncHandle>>(callback =>
callback(new RestResponse { StatusCode = HttpStatusCode.NotFound}, null))
)

关于c# - 使用 Nsubstitute 模拟 RestClient ExecuteAsync,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47624222/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com