| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- //
- // HTTPHeadersTests.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.
- //
- import Alamofire
- import XCTest
- class HTTPHeadersTests: BaseTestCase {
- func testHeadersAreStoreUniquelyByCaseInsensitiveName() {
- // Given
- let headersFromDictionaryLiteral: HTTPHeaders = ["key": "", "Key": "", "KEY": ""]
- let headersFromDictionary = HTTPHeaders(["key": "", "Key": "", "KEY": ""])
- let headersFromArrayLiteral: HTTPHeaders = [HTTPHeader(name: "key", value: ""),
- HTTPHeader(name: "Key", value: ""),
- HTTPHeader(name: "KEY", value: "")]
- let headersFromArray = HTTPHeaders([HTTPHeader(name: "key", value: ""),
- HTTPHeader(name: "Key", value: ""),
- HTTPHeader(name: "KEY", value: "")])
- var headersCreatedManually = HTTPHeaders()
- headersCreatedManually.update(HTTPHeader(name: "key", value: ""))
- headersCreatedManually.update(name: "Key", value: "")
- headersCreatedManually.update(name: "KEY", value: "")
- // When, Then
- XCTAssertEqual(headersFromDictionaryLiteral.count, 1)
- XCTAssertEqual(headersFromDictionary.count, 1)
- XCTAssertEqual(headersFromArrayLiteral.count, 1)
- XCTAssertEqual(headersFromArray.count, 1)
- XCTAssertEqual(headersCreatedManually.count, 1)
- }
- func testHeadersPreserveOrderOfInsertion() {
- // Given
- let headersFromDictionaryLiteral: HTTPHeaders = ["c": "", "a": "", "b": ""]
- // Dictionary initializer can't preserve order.
- let headersFromArrayLiteral: HTTPHeaders = [HTTPHeader(name: "b", value: ""),
- HTTPHeader(name: "a", value: ""),
- HTTPHeader(name: "c", value: "")]
- let headersFromArray = HTTPHeaders([HTTPHeader(name: "b", value: ""),
- HTTPHeader(name: "a", value: ""),
- HTTPHeader(name: "c", value: "")])
- var headersCreatedManually = HTTPHeaders()
- headersCreatedManually.update(HTTPHeader(name: "c", value: ""))
- headersCreatedManually.update(name: "b", value: "")
- headersCreatedManually.update(name: "a", value: "")
- // When
- let dictionaryLiteralNames = headersFromDictionaryLiteral.map { $0.name }
- let arrayLiteralNames = headersFromArrayLiteral.map { $0.name }
- let arrayNames = headersFromArray.map { $0.name }
- let manualNames = headersCreatedManually.map { $0.name }
- // Then
- XCTAssertEqual(dictionaryLiteralNames, ["c", "a", "b"])
- XCTAssertEqual(arrayLiteralNames, ["b", "a", "c"])
- XCTAssertEqual(arrayNames, ["b", "a", "c"])
- XCTAssertEqual(manualNames, ["c", "b", "a"])
- }
- func testHeadersCanBeProperlySortedByName() {
- // Given
- let headers: HTTPHeaders = ["c": "", "a": "", "b": ""]
- // When
- let sortedHeaders = headers.sorted()
- // Then
- XCTAssertEqual(headers.map { $0.name }, ["c", "a", "b"])
- XCTAssertEqual(sortedHeaders.map { $0.name }, ["a", "b", "c"])
- }
- func testHeadersCanInsensitivelyGetAndSetThroughSubscript() {
- // Given
- var headers: HTTPHeaders = ["c": "", "a": "", "b": ""]
- // When
- headers["C"] = "c"
- headers["a"] = "a"
- headers["b"] = "b"
- // Then
- XCTAssertEqual(headers["c"], "c")
- XCTAssertEqual(headers.map { $0.value }, ["c", "a", "b"])
- XCTAssertEqual(headers.count, 3)
- }
- func testHeadersPreserveLastFormAndValueOfAName() {
- // Given
- var headers: HTTPHeaders = ["c": "a"]
- // When
- headers["C"] = "c"
- // Then
- XCTAssertEqual(headers.description, "C: c")
- }
- func testHeadersHaveUnsortedDescription() {
- // Given
- let headers: HTTPHeaders = ["c": "c", "a": "a", "b": "b"]
- // When
- let description = headers.description
- let expectedDescription = """
- c: c
- a: a
- b: b
- """
- // Then
- XCTAssertEqual(description, expectedDescription)
- }
- }
|