I have been searching for a way to use SenTestingKit to do some integration testing between my client-side code and our server. I haven't had any luck. It seems that once the code is run in a method, the object gets destroyed. This means that any asynchronous responses never call the selectors.
Questions:
FYI, I'm running a test server where I know the expected results.
I've done a fair bit of Googling but haven't seen proof one way or another about this. I'm sure others would be interested as well.
You can use a semaphore to wait until the asynchronous method finishes.
- (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/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With