| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- //
- // AFResultTests.swift
- //
- // Copyright (c) 2014-2018 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.
- //
- @testable import Alamofire
- import Foundation
- import XCTest
- class AFResultTestCase: BaseTestCase {
- let error = AFError.responseValidationFailed(reason: .unacceptableStatusCode(code: 404))
- // MARK: - Value Tests
- func testThatValuePropertyReturnsValueForSuccessCase() {
- // Given, When
- let result = AFResult<String>.success("success")
- // Then
- XCTAssertEqual(result.value ?? "", "success", "result value should match expected value")
- }
- func testThatValuePropertyReturnsNilForFailureCase() {
- // Given, When
- let result = AFResult<String>.failure(error)
- // Then
- XCTAssertNil(result.value, "result value should be nil for failure case")
- }
- // MARK: - Error Tests
- func testThatErrorPropertyReturnsNilForSuccessCase() {
- // Given, When
- let result = AFResult<String>.success("success")
- // Then
- XCTAssertNil(result.error, "result error should be nil for success case")
- }
- func testThatErrorPropertyReturnsErrorForFailureCase() {
- // Given, When
- let result = AFResult<String>.failure(error)
- // Then
- XCTAssertNotNil(result.error, "result error should not be nil for failure case")
- }
- // MARK: - Initializer Tests
- func testThatInitializerFromThrowingClosureStoresResultAsASuccess() {
- // Given
- let value = "success value"
- // When
- let result1 = AFResult(catching: { value })
- let result2 = AFResult { value }
- // Then
- for result in [result1, result2] {
- XCTAssertTrue(result.isSuccess)
- XCTAssertEqual(result.value, value)
- }
- }
- func testThatInitializerFromThrowingClosureCatchesErrorAsAFailure() {
- // Given
- struct ResultError: Error {}
- // When
- let result1 = AFResult(catching: { throw ResultError() })
- let result2 = AFResult { throw ResultError() }
- // Then
- for result in [result1, result2] {
- XCTAssertTrue(result.isFailure)
- XCTAssertTrue(result.error! is ResultError)
- }
- }
- // MARK: - FlatMap Tests
- func testThatFlatMapTransformsSuccessValue() {
- // Given
- let result = AFResult<String>.success("success value")
- // When
- let mappedResult = result.map { $0.count }
- // Then
- XCTAssertEqual(mappedResult.value, 13)
- }
- func testThatFlatMapCatchesTransformationError() {
- // Given
- struct TransformError: Error {}
- let result = AFResult<String>.success("success value")
- // When
- let mappedResult = result.flatMap { _ in throw TransformError() }
- // Then
- if let error = mappedResult.error {
- XCTAssertTrue(error is TransformError)
- } else {
- XCTFail("flatMap should catch the transformation error")
- }
- }
- func testThatFlatMapPreservesFailureError() {
- // Given
- struct ResultError: Error {}
- struct TransformError: Error {}
- let result = AFResult<String>.failure(ResultError())
- // When
- let mappedResult = result.flatMap { _ in throw TransformError() }
- // Then
- if let error = mappedResult.error {
- XCTAssertTrue(error is ResultError)
- } else {
- XCTFail("flatMap should preserve the failure error")
- }
- }
- // MARK: - FlatMapError Tests
- func testFlatMapErrorTransformsErrorValue() {
- // Given
- struct ResultError: Error {}
- struct OtherError: Error { let error: Error }
- let result: AFResult<String> = .failure(ResultError())
- // When
- let mappedResult = result.flatMapError { OtherError(error: $0) }
- // Then
- if let error = mappedResult.error {
- XCTAssertTrue(error is OtherError)
- } else {
- XCTFail("flatMapError should transform error value")
- }
- }
- func testFlatMapErrorCapturesThrownError() {
- // Given
- struct ResultError: Error {}
- struct OtherError: Error {
- let error: Error
- init(error: Error) throws { throw ThrownError() }
- }
- struct ThrownError: Error {}
- let result: AFResult<String> = .failure(ResultError())
- // When
- let mappedResult = result.flatMapError { try OtherError(error: $0) }
- // Then
- if let error = mappedResult.error {
- XCTAssertTrue(error is ThrownError)
- } else {
- XCTFail("flatMapError should capture thrown error value")
- }
- }
- }
|