// RequestTests.swift // // Copyright (c) 2014-2015 Alamofire Software Foundation (http://alamofire.org) // // 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 Alamofire import Foundation import XCTest class RequestInitializationTestCase: BaseTestCase { func testRequestClassMethodWithMethodAndURL() { // Given let URLString = "https://httpbin.org/" // When let request = Alamofire.request(.GET, URLString) // Then XCTAssertNotNil(request.request, "request URL request should not be nil") XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should match expected value") XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") XCTAssertNil(request.response, "request response should be nil") } func testRequestClassMethodWithMethodAndURLAndParameters() { // Given let URLString = "https://httpbin.org/get" // When let request = Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) // Then XCTAssertNotNil(request.request, "request URL request should not be nil") XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should match expected value") XCTAssertNotEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") XCTAssertEqual(request.request?.URL?.query ?? "", "foo=bar", "query is incorrect") XCTAssertNil(request.response, "request response should be nil") } func testRequestClassMethodWithMethodURLParametersAndHeaders() { // Given let URLString = "https://httpbin.org/get" let headers = ["Authorization": "123456"] // When let request = Alamofire.request(.GET, URLString, parameters: ["foo": "bar"], headers: headers) // Then XCTAssertNotNil(request.request, "request should not be nil") XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should match expected value") XCTAssertNotEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") XCTAssertEqual(request.request?.URL?.query ?? "", "foo=bar", "query is incorrect") let authorizationHeader = request.request?.valueForHTTPHeaderField("Authorization") ?? "" XCTAssertEqual(authorizationHeader, "123456", "Authorization header is incorrect") XCTAssertNil(request.response, "response should be nil") } } // MARK: - class RequestResponseTestCase: BaseTestCase { func testRequestResponse() { // Given let URLString = "https://httpbin.org/get" let expectation = expectationWithDescription("GET request should succeed: \(URLString)") var request: NSURLRequest? var response: NSHTTPURLResponse? var data: NSData? var error: NSError? // When Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) .response { responseRequest, responseResponse, responseData, responseError in request = responseRequest response = responseResponse data = responseData error = responseError expectation.fulfill() } waitForExpectationsWithTimeout(timeout, handler: nil) // Then XCTAssertNotNil(request, "request should not be nil") XCTAssertNotNil(response, "response should not be nil") XCTAssertNotNil(data, "data should not be nil") XCTAssertNil(error, "error should be nil") } func testRequestResponseWithProgress() { // Given let randomBytes = 4 * 1024 * 1024 let URLString = "https://httpbin.org/bytes/\(randomBytes)" let expectation = expectationWithDescription("Bytes download progress should be reported: \(URLString)") var byteValues: [(bytes: Int64, totalBytes: Int64, totalBytesExpected: Int64)] = [] var progressValues: [(completedUnitCount: Int64, totalUnitCount: Int64)] = [] var responseRequest: NSURLRequest? var responseResponse: NSHTTPURLResponse? var responseData: NSData? var responseError: ErrorType? // When let request = Alamofire.request(.GET, URLString) request.progress { bytesRead, totalBytesRead, totalBytesExpectedToRead in let bytes = (bytes: bytesRead, totalBytes: totalBytesRead, totalBytesExpected: totalBytesExpectedToRead) byteValues.append(bytes) let progress = ( completedUnitCount: request.progress.completedUnitCount, totalUnitCount: request.progress.totalUnitCount ) progressValues.append(progress) } request.response { request, response, data, error in responseRequest = request responseResponse = response responseData = data responseError = error expectation.fulfill() } waitForExpectationsWithTimeout(timeout, handler: nil) // Then XCTAssertNotNil(responseRequest, "response request should not be nil") XCTAssertNotNil(responseResponse, "response response should not be nil") XCTAssertNotNil(responseData, "response data should not be nil") XCTAssertNil(responseError, "response error should be nil") XCTAssertEqual(byteValues.count, progressValues.count, "byteValues count should equal progressValues count") if byteValues.count == progressValues.count { for index in 0..? // When Alamofire.request(.POST, URLString, parameters: parameters) .responseJSON { closureResponse in response = closureResponse expectation.fulfill() } waitForExpectationsWithTimeout(timeout, handler: nil) // Then if let response = response { XCTAssertNotNil(response.request, "request should not be nil") XCTAssertNotNil(response.response, "response should not be nil") XCTAssertNotNil(response.data, "data should not be nil") if let JSON = response.result.value as? [String: AnyObject], form = JSON["form"] as? [String: String] { XCTAssertEqual(form["french"], parameters["french"], "french parameter value should match form value") XCTAssertEqual(form["japanese"], parameters["japanese"], "japanese parameter value should match form value") XCTAssertEqual(form["arabic"], parameters["arabic"], "arabic parameter value should match form value") XCTAssertEqual(form["emoji"], parameters["emoji"], "emoji parameter value should match form value") } else { XCTFail("form parameter in JSON should not be nil") } } else { XCTFail("response should not be nil") } } func testPOSTRequestWithBase64EncodedImages() { // Given let URLString = "https://httpbin.org/post" let pngBase64EncodedString: String = { let URL = URLForResource("unicorn", withExtension: "png") let data = NSData(contentsOfURL: URL)! return data.base64EncodedStringWithOptions(.Encoding64CharacterLineLength) }() let jpegBase64EncodedString: String = { let URL = URLForResource("rainbow", withExtension: "jpg") let data = NSData(contentsOfURL: URL)! return data.base64EncodedStringWithOptions(.Encoding64CharacterLineLength) }() let parameters = [ "email": "user@alamofire.org", "png_image": pngBase64EncodedString, "jpeg_image": jpegBase64EncodedString ] let expectation = expectationWithDescription("request should succeed") var response: Response? // When Alamofire.request(.POST, URLString, parameters: parameters) .responseJSON { closureResponse in response = closureResponse expectation.fulfill() } waitForExpectationsWithTimeout(timeout, handler: nil) // Then if let response = response { XCTAssertNotNil(response.request, "request should not be nil") XCTAssertNotNil(response.response, "response should not be nil") XCTAssertNotNil(response.data, "data should not be nil") XCTAssertTrue(response.result.isSuccess, "result should be success") if let JSON = response.result.value as? [String: AnyObject], form = JSON["form"] as? [String: String] { XCTAssertEqual(form["email"], parameters["email"], "email parameter value should match form value") XCTAssertEqual(form["png_image"], parameters["png_image"], "png_image parameter value should match form value") XCTAssertEqual(form["jpeg_image"], parameters["jpeg_image"], "jpeg_image parameter value should match form value") } else { XCTFail("form parameter in JSON should not be nil") } } else { XCTFail("response should not be nil") } } } // MARK: - extension Request { private func preValidate(operation: Void -> Void) -> Self { delegate.queue.addOperationWithBlock { operation() } return self } private func postValidate(operation: Void -> Void) -> Self { delegate.queue.addOperationWithBlock { operation() } return self } } // MARK: - class RequestExtensionTestCase: BaseTestCase { func testThatRequestExtensionHasAccessToTaskDelegateQueue() { // Given let URLString = "https://httpbin.org/get" let expectation = expectationWithDescription("GET request should succeed: \(URLString)") var responses: [String] = [] // When Alamofire.request(.GET, URLString) .preValidate { responses.append("preValidate") } .validate() .postValidate { responses.append("postValidate") } .response { _, _, _, _ in responses.append("response") expectation.fulfill() } waitForExpectationsWithTimeout(timeout, handler: nil) // Then if responses.count == 3 { XCTAssertEqual(responses[0], "preValidate", "response at index 0 should be preValidate") XCTAssertEqual(responses[1], "postValidate", "response at index 1 should be postValidate") XCTAssertEqual(responses[2], "response", "response at index 2 should be response") } else { XCTFail("responses count should be equal to 3") } } } // MARK: - class RequestDescriptionTestCase: BaseTestCase { func testRequestDescription() { // Given let URLString = "https://httpbin.org/get" let request = Alamofire.request(.GET, URLString) let initialRequestDescription = request.description let expectation = expectationWithDescription("Request description should update: \(URLString)") var finalRequestDescription: String? var response: NSHTTPURLResponse? // When request.response { _, responseResponse, _, _ in finalRequestDescription = request.description response = responseResponse expectation.fulfill() } waitForExpectationsWithTimeout(timeout, handler: nil) // Then XCTAssertEqual(initialRequestDescription, "GET https://httpbin.org/get", "incorrect request description") XCTAssertEqual( finalRequestDescription ?? "", "GET https://httpbin.org/get (\(response?.statusCode ?? -1))", "incorrect request description" ) } } // MARK: - class RequestDebugDescriptionTestCase: BaseTestCase { // MARK: Properties let manager: Manager = { let manager = Manager(configuration: NSURLSessionConfiguration.defaultSessionConfiguration()) manager.startRequestsImmediately = false return manager }() let managerDisallowingCookies: Manager = { let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() configuration.HTTPShouldSetCookies = false let manager = Manager(configuration: configuration) manager.startRequestsImmediately = false return manager }() // MARK: Tests func testGETRequestDebugDescription() { // Given let URLString = "https://httpbin.org/get" // When let request = manager.request(.GET, URLString) let components = cURLCommandComponents(request) // Then XCTAssertEqual(components[0..<3], ["$", "curl", "-i"], "components should be equal") XCTAssertFalse(components.contains("-X"), "command should not contain explicit -X flag") XCTAssertEqual(components.last ?? "", "\"\(URLString)\"", "URL component should be equal") } func testPOSTRequestDebugDescription() { // Given let URLString = "https://httpbin.org/post" // When let request = manager.request(.POST, URLString) let components = cURLCommandComponents(request) // Then XCTAssertEqual(components[0..<3], ["$", "curl", "-i"], "components should be equal") XCTAssertEqual(components[3..<5], ["-X", "POST"], "command should contain explicit -X flag") XCTAssertEqual(components.last ?? "", "\"\(URLString)\"", "URL component should be equal") } func testPOSTRequestWithJSONParametersDebugDescription() { // Given let URLString = "https://httpbin.org/post" // When let request = manager.request(.POST, URLString, parameters: ["foo": "bar"], encoding: .JSON) let components = cURLCommandComponents(request) // Then XCTAssertEqual(components[0..<3], ["$", "curl", "-i"], "components should be equal") XCTAssertEqual(components[3..<5], ["-X", "POST"], "command should contain explicit -X flag") XCTAssertTrue( request.debugDescription.rangeOfString("-H \"Content-Type: application/json\"") != nil, "command should contain 'application/json' Content-Type" ) XCTAssertTrue( request.debugDescription.rangeOfString("-d \"{\\\"foo\\\":\\\"bar\\\"}\"") != nil, "command data should contain JSON encoded parameters" ) XCTAssertEqual(components.last ?? "", "\"\(URLString)\"", "URL component should be equal") } func testPOSTRequestWithCookieDebugDescription() { // Given let URLString = "https://httpbin.org/post" let properties = [ NSHTTPCookieDomain: "httpbin.org", NSHTTPCookiePath: "/post", NSHTTPCookieName: "foo", NSHTTPCookieValue: "bar", ] let cookie = NSHTTPCookie(properties: properties)! manager.session.configuration.HTTPCookieStorage?.setCookie(cookie) // When let request = manager.request(.POST, URLString) let components = cURLCommandComponents(request) // Then XCTAssertEqual(components[0..<3], ["$", "curl", "-i"], "components should be equal") XCTAssertEqual(components[3..<5], ["-X", "POST"], "command should contain explicit -X flag") XCTAssertEqual(components.last ?? "", "\"\(URLString)\"", "URL component should be equal") XCTAssertEqual(components[5..<6], ["-b"], "command should contain -b flag") } func testPOSTRequestWithCookiesDisabledDebugDescription() { // Given let URLString = "https://httpbin.org/post" let properties = [ NSHTTPCookieDomain: "httpbin.org", NSHTTPCookiePath: "/post", NSHTTPCookieName: "foo", NSHTTPCookieValue: "bar", ] let cookie = NSHTTPCookie(properties: properties)! managerDisallowingCookies.session.configuration.HTTPCookieStorage?.setCookie(cookie) // When let request = managerDisallowingCookies.request(.POST, URLString) let components = cURLCommandComponents(request) // Then let cookieComponents = components.filter { $0 == "-b" } XCTAssertTrue(cookieComponents.isEmpty, "command should not contain -b flag") } func testThatRequestWithInvalidURLDebugDescription() { // Given let URLString = "invalid_url" // When let request = manager.request(.GET, URLString) let debugDescription = request.debugDescription // Then XCTAssertNotNil(debugDescription, "debugDescription should not crash") } // MARK: Test Helper Methods private func cURLCommandComponents(request: Request) -> [String] { let whitespaceCharacterSet = NSCharacterSet.whitespaceAndNewlineCharacterSet() return request.debugDescription.componentsSeparatedByCharactersInSet(whitespaceCharacterSet) .filter { $0 != "" && $0 != "\\" } } }