gpt4 book ai didi

web-services - 使用 Kiwi/Nocilla 测试 HTTP

转载 作者:行者123 更新时间:2023-11-28 21:31:56 24 4
gpt4 key购买 nike

我刚开始开发一个连接到 this URL 的应用程序并检索给定货币对的汇率。

我需要测试 HTTP 请求,最后学习了 Kiwi 和 Nocilla。但是,我对任何类型的测试都是全新的,并且没有很多关于 Nocilla 的信息可以帮助我开始。

我将所有 NSURLConnectionDataDelegateNSURLConnectionDelegate 方法添加到我的单 View 应用程序的 ViewController 中,并存储从 URL 检索的数据在 @property (strong, nonatomic) NSMutableData *receivedData; 中。当我运行程序时,一切都按预期工作,但我无法通过我写的测试:

SPEC_BEGIN(URLConnectionSpec)

__block URLConnectionAppDelegate *app_delegate;
__block URLConnectionViewController *view_controller;

describe(@"URLConnection", ^{
beforeAll(^{
[[LSNocilla sharedInstance] start];

app_delegate = [[UIApplication sharedApplication] delegate];
[[app_delegate shouldNot] beNil];
view_controller = app_delegate.viewController;
});

afterAll(^{
[[LSNocilla sharedInstance] stop];
});

afterEach(^{
[[LSNocilla sharedInstance] clearStubs];
});

context(@"When testing", ^{
it(@"should do something", ^{
stubRequest(@"GET", @"http://rate-exchange.appspot.com/currency?from=USD&to=EUR&q=1");

[view_controller beginCommunication];

[[expectFutureValue([NSString stringWithUTF8String:[view_controller.receivedData bytes]]) shouldEventuallyBeforeTimingOutAfter(2)] equal:@"{\"to\": \"EUR\", \"rate\": 0.76610740799999999, \"from\": \"USD\", \"v\": 0.76610740799999999}"];
});
});
});

SPEC_END

对于这么长的代码片段,我深表歉意。

测试总是失败并显示此消息

URLConnection_WhenTesting_ShouldDoSomething] : 'URLConnection, When testing, should do something' [FAILED], expected subject to equal "{"to": "EUR", "rate": 0.76610740799999999, "from": "USD", "v": 0.76610740799999999}", got ""

我尝试将时间更改为甚至 10 秒,希望测试完成得太早,但我得到了相同的结果。我不知道为什么 'receivedData' 是空的。

如果有任何帮助,我将不胜感激

最佳答案

请参阅评论中的讨论:Kiwi 测试的整体结构看起来不错,Nocilla stubRequest 函数调用似乎没有产生测试预期的响应。

也许您可以使用 andReturnRawResponse 来设置预期的响应数据。像这样(假设我的 Nocilla 语法正确):

NSData *rawData = ...
stubRequest(...).andReturnRawResponse(rawData);
[view_controller beginCommunication];
[expectFutureValue([view_controller.receivedData bytes])
shouldEventuallyBeforeTimingOutAfter(2)] equal:rawData.bytes];

关于web-services - 使用 Kiwi/Nocilla 测试 HTTP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17423089/

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