VCRURLConnection is an iOS and OSX API to record and replay HTTP interactions, inspired by VCR
VCRURLConnection is still in the very early stages of development, all bug reports, feature requests, and general feedback are greatly appreciated!
[VCR start];
NSString *path = @"http://example.com/example";
NSURL *url = [NSURL URLWithString:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[NSURLConnection connectionWithRequest:request delegate:self];
// NSURLConnection makes a real network request and VCRURLConnection
// will record the request/response pair.
[VCR save:@"/path/to/cassette.json"]; // copy the output file into your projectNSURL *cassetteURL = [NSURL fileURLWithPath:@"/path/to/cassette.json"];
[VCR loadCassetteWithContentsOfURL:cassetteURL];
[VCR start];
// request an HTTP interaction that was recorded to cassette.json
NSString *path = @"http://example.com/example";
NSURL *url = [NSURL URLWithString:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[NSURLConnection connectionWithRequest:request delegate:self];
// The cassette has a recording for this request, so no network request
// is made. Instead NSURLConnectionDelegate methods are called with the
// previously recorded response.-
Download VCRURLConnection and try out the included example app
-
Include the files in the VCRURLConnection folder in your test target
-
Run your tests once to record all HTTP interactions
-
Copy the recorded json file (the file whose path is returned by
[VCR save]) into your project -
Subsequent test runs will use the recorded HTTP interactions instead of the network
-
All recordings are stored in a single JSON file, which you can edit by hand
VCRURLConnection is released under the MIT license
Dustin Barker
- NSData+Base64.h by Matt Gallagher
- SenTestCase+SRTAdditions.h from SocketRocket by Square
