summaryrefslogtreecommitdiff
path: root/platform/ios/test/OHHTTPStubs/OHHTTPStubs/UnitTests/Test Suites/MocktailTests.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/test/OHHTTPStubs/OHHTTPStubs/UnitTests/Test Suites/MocktailTests.m')
-rw-r--r--platform/ios/test/OHHTTPStubs/OHHTTPStubs/UnitTests/Test Suites/MocktailTests.m147
1 files changed, 147 insertions, 0 deletions
diff --git a/platform/ios/test/OHHTTPStubs/OHHTTPStubs/UnitTests/Test Suites/MocktailTests.m b/platform/ios/test/OHHTTPStubs/OHHTTPStubs/UnitTests/Test Suites/MocktailTests.m
new file mode 100644
index 0000000000..db7725703c
--- /dev/null
+++ b/platform/ios/test/OHHTTPStubs/OHHTTPStubs/UnitTests/Test Suites/MocktailTests.m
@@ -0,0 +1,147 @@
+/***********************************************************************************
+ *
+ * Copyright (c) 2015 Jinlian (Sunny) Wang
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ *
+ ***********************************************************************************/
+
+
+////////////////////////////////////////////////////////////////////////////////
+
+#import <XCTest/XCTest.h>
+#import <OHHTTPStubs/OHHTTPStubs.h>
+
+@interface MocktailTests : XCTestCase
+@property(nonatomic, strong) NSURLSession *session;
+@end
+
+@implementation MocktailTests
+
+- (void)setUp
+{
+ [super setUp];
+ [OHHTTPStubs removeAllStubs];
+
+ NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
+ self.session = [NSURLSession sessionWithConfiguration:configuration delegate:nil delegateQueue:nil];
+}
+
+- (void)tearDown
+{
+ [super tearDown];
+ self.session = nil;
+}
+
+- (void)testMoctTailLoginSuccess
+{
+ NSError *error = nil;
+ NSBundle *bundle = [NSBundle bundleForClass:self.class];
+ [OHHTTPStubs stubRequestsUsingMocktailNamed:@"login" inBundle:bundle error: &error];
+ XCTAssertNil(error, @"Error while stubbing 'login.tail':%@", [error localizedDescription]);
+ [self runLogin];
+}
+
+- (void)testMocktailsAtFolder
+{
+ NSError *error = nil;
+ NSBundle *bundle = [NSBundle bundleForClass:self.class];
+ [OHHTTPStubs stubRequestsUsingMocktailsAtPath:@"MocktailFolder" inBundle:bundle error:&error];
+ XCTAssertNil(error, @"Error while stubbing Mocktails at folder 'MocktailFolder': %@", [error localizedDescription]);
+ [self runLogin];
+ [self runGetCards];
+}
+
+- (void)runLogin
+{
+ NSURL *url = [NSURL URLWithString:@"http://happywebservice.com/users"];
+ NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url
+ cachePolicy:NSURLRequestUseProtocolCachePolicy
+ timeoutInterval:60.0];
+
+ [request addValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
+ [request addValue:@"application/json" forHTTPHeaderField:@"Accept"];
+
+ request.HTTPMethod = @"POST";
+ NSDictionary *mapData = @{@"iloveit": @"happyuser1",
+ @"password": @"username"};
+ NSData *postData = [NSJSONSerialization dataWithJSONObject:mapData options:0 error:NULL];
+ request.HTTPBody = postData;
+
+ XCTestExpectation* expectation = [self expectationWithDescription:@"NSURLSessionDataTask completed"];
+
+ NSURLSessionDataTask *postDataTask = [self.session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
+
+ XCTAssertNil(error, @"Error while logging in.");
+
+ NSDictionary *json = nil;
+ if(!error && [@"application/json" isEqual:response.MIMEType])
+ {
+ json = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
+ }
+
+ XCTAssertNotNil(json, @"The response is not a json object");
+ XCTAssertEqualObjects(json[@"status"], @"SUCCESS", @"The response does to return a successful status");
+ XCTAssertNotNil(json[@"user_token"], @"The response does not contain a user token");
+
+ [expectation fulfill];
+ }];
+
+ [postDataTask resume];
+
+ [self waitForExpectationsWithTimeout:10 handler:nil];
+}
+
+- (void)runGetCards
+{
+ NSURL *url = [NSURL URLWithString:@"http://happywebservice.com/cards"];
+ NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url
+ cachePolicy:NSURLRequestUseProtocolCachePolicy
+ timeoutInterval:60.0];
+
+ [request addValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
+ [request addValue:@"application/json" forHTTPHeaderField:@"Accept"];
+
+ request.HTTPMethod = @"GET";
+
+ XCTestExpectation* expectation = [self expectationWithDescription:@"NSURLSessionDataTask completed"];
+
+ NSURLSessionDataTask *getDataTask = [self.session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
+
+ XCTAssertNil(error, @"Error while getting cards.");
+
+ NSArray *json = nil;
+ if(!error && [@"application/json" isEqual:response.MIMEType])
+ {
+ json = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
+ }
+
+ XCTAssertNotNil(json, @"The response is not a json object");
+ XCTAssertEqual(json.count, 2, @"The response does not contain 2 cards");
+ XCTAssertEqualObjects([json firstObject][@"amount"], @"$25.28", @"The first card amount does not match");
+
+ [expectation fulfill];
+ }];
+
+ [getDataTask resume];
+
+ [self waitForExpectationsWithTimeout:10 handler:nil];
+}
+
+@end