gpt4 book ai didi

objective-c - Xcode 4 : Asynchronous testing? 中的 SenTestingKit

转载 作者:太空狗 更新时间:2023-10-30 03:22:35 26 4
gpt4 key购买 nike

我一直在寻找一种方法来使用 SenTestingKit 在我的客户端代码和我们的服务器之间进行一些集成测试。我没有任何运气。似乎一旦代码在方法中运行,对象就会被销毁。这意味着任何异步响应都不会调用选择器。

问题:

  1. 有没有办法让对象保持实例化,直到我认为适合销毁它的时候 - 即。测试完成后?
  2. 如果没有,我如何创建一个阻塞(即同步操作)直到测试完成的类?

仅供引用,我正在运行一个我知道预期结果的测试服务器。

我已经进行了相当多的谷歌搜索,但还没有看到任何关于这一点的证据。我相信其他人也会感兴趣。

最佳答案

您可以使用信号量等待异步方法完成。

- (void)testBlockMethod {
dispatch_semaphore_t semaphore = dispatch_semaphore_create(0);

// Your block method eg. AFNetworking
NSURL *url = [NSURL URLWithString:@"http://httpbin.org/ip"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
NSLog(@"IP Address: %@", [JSON valueForKeyPath:@"origin"]);
STAssertNotNil(JSON, @"JSON not loaded");
// Signal that block has completed
dispatch_semaphore_signal(semaphore);
} failure:nil];
[operation start];

// Run loop
while (dispatch_semaphore_wait(semaphore, DISPATCH_TIME_NOW))
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode
beforeDate:[NSDate dateWithTimeIntervalSinceNow:10]];
dispatch_release(semaphore);

http://samwize.com/2012/10/03/sentestingkit-does-not-support-wait-for-blocks/

关于objective-c - Xcode 4 : Asynchronous testing? 中的 SenTestingKit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6190486/

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