1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
private func assertEqual(_ lhs:PersonNameComponents,
_ rhs: PersonNameComponents,
file: StaticString = #file,
line: UInt = #line) {
assert(equal: true, lhs, rhs, file: file, line: line)
}
private func assertNotEqual(_ lhs:PersonNameComponents,
_ rhs: PersonNameComponents,
file: StaticString = #file,
line: UInt = #line) {
assert(equal: false, lhs, rhs, file: file, line: line)
}
private func assert(equal: Bool,
_ lhs:PersonNameComponents,
_ rhs: PersonNameComponents,
file: StaticString = #file,
line: UInt = #line) {
if equal {
XCTAssertEqual(lhs, rhs, file: file, line: line)
XCTAssertEqual(lhs._bridgeToObjectiveC(), rhs._bridgeToObjectiveC(), file: file, line: line)
XCTAssertTrue(lhs._bridgeToObjectiveC().isEqual(rhs), file: file, line: line)
} else {
XCTAssertNotEqual(lhs, rhs, file: file, line: line)
XCTAssertNotEqual(lhs._bridgeToObjectiveC(), rhs._bridgeToObjectiveC(), file: file, line: line)
XCTAssertFalse(lhs._bridgeToObjectiveC().isEqual(rhs), file: file, line: line)
}
}
class TestPersonNameComponents : XCTestCase {
func testCopy() {
let original = NSPersonNameComponents()
original.givenName = "Maria"
original.phoneticRepresentation = PersonNameComponents()
original.phoneticRepresentation!.givenName = "Jeff"
let copy = original.copy(with:nil) as! NSPersonNameComponents
copy.givenName = "Rebecca"
XCTAssertNotEqual(original.givenName, copy.givenName)
XCTAssertEqual(original.phoneticRepresentation!.givenName,copy.phoneticRepresentation!.givenName)
XCTAssertNil(copy.phoneticRepresentation!.phoneticRepresentation)
}
func testEquality() {
do {
let lhs = PersonNameComponents()
let rhs = PersonNameComponents()
assertEqual(lhs, rhs)
}
let lhs = self.makePersonNameComponentsWithTestValues()
do {
let rhs = self.makePersonNameComponentsWithTestValues()
assertEqual(lhs, rhs)
}
do {
var rhs = self.makePersonNameComponentsWithTestValues()
rhs.namePrefix = "differentValue"
assertNotEqual(lhs, rhs)
}
do {
var rhs = self.makePersonNameComponentsWithTestValues()
rhs.givenName = "differentValue"
assertNotEqual(lhs, rhs)
}
do {
var rhs = self.makePersonNameComponentsWithTestValues()
rhs.middleName = "differentValue"
assertNotEqual(lhs, rhs)
}
do {
var rhs = self.makePersonNameComponentsWithTestValues()
rhs.familyName = "differentValue"
assertNotEqual(lhs, rhs)
}
do {
var rhs = self.makePersonNameComponentsWithTestValues()
rhs.nameSuffix = "differentValue"
assertNotEqual(lhs, rhs)
}
do {
var rhs = self.makePersonNameComponentsWithTestValues()
rhs.nickname = "differentValue"
assertNotEqual(lhs, rhs)
}
do {
var rhs = self.makePersonNameComponentsWithTestValues()
rhs.phoneticRepresentation?.namePrefix = "differentValue"
assertNotEqual(lhs, rhs)
}
}
// MARK: - Helpers
private func makePersonNameComponentsWithTestValues() -> PersonNameComponents {
var components = PersonNameComponents()
components.namePrefix = "namePrefix"
components.givenName = "givenName"
components.middleName = "middleName"
components.familyName = "familyName"
components.nameSuffix = "nameSuffix"
components.nickname = "nickname"
components.phoneticRepresentation = {
var components = PersonNameComponents()
components.namePrefix = "phonetic_namePrefix"
components.givenName = "phonetic_givenName"
components.middleName = "phonetic_middleName"
components.familyName = "phonetic_familyName"
components.nameSuffix = "phonetic_nameSuffix"
components.nickname = "phonetic_nickname"
return components
}()
return components
}
}
|