forked from swiftlang/swift-corelibs-foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestNSError.swift
91 lines (74 loc) · 2.96 KB
/
TestNSError.swift
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
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
#if DEPLOYMENT_RUNTIME_OBJC || os(Linux)
import Foundation
import XCTest
#else
import SwiftFoundation
import SwiftXCTest
#endif
struct SwiftCustomNSError: Error, CustomNSError {
}
class TestNSError : XCTestCase {
static var allTests: [(String, (TestNSError) -> () throws -> Void)] {
return [
("test_LocalizedError_errorDescription", test_LocalizedError_errorDescription),
("test_NSErrorAsError_localizedDescription", test_NSErrorAsError_localizedDescription),
("test_CustomNSError_domain", test_CustomNSError_domain),
("test_CustomNSError_userInfo", test_CustomNSError_userInfo),
("test_CustomNSError_errorCode", test_CustomNSError_errorCode),
("test_CustomNSError_errorCodeRawInt", test_CustomNSError_errorCodeRawInt),
("test_CustomNSError_errorCodeRawUInt", test_CustomNSError_errorCodeRawUInt),
]
}
func test_LocalizedError_errorDescription() {
struct Error : LocalizedError {
var errorDescription: String? { return "error description" }
}
let error = Error()
XCTAssertEqual(error.localizedDescription, "error description")
}
func test_NSErrorAsError_localizedDescription() {
let nsError = NSError(domain: "", code: 0, userInfo: [NSLocalizedDescriptionKey: "Localized!"])
let error = nsError as Error
XCTAssertEqual(error.localizedDescription, "Localized!")
}
func test_CustomNSError_domain() {
XCTAssertEqual(SwiftCustomNSError.errorDomain, "TestFoundation.SwiftCustomNSError")
}
func test_CustomNSError_userInfo() {
let userInfo = SwiftCustomNSError().errorUserInfo
XCTAssertTrue(userInfo.isEmpty)
}
func test_CustomNSError_errorCode() {
enum SwiftError : Error, CustomNSError {
case zero
case one
case two
}
XCTAssertEqual(SwiftCustomNSError().errorCode, 1)
XCTAssertEqual(SwiftError.zero.errorCode, 0)
XCTAssertEqual(SwiftError.one.errorCode, 1)
XCTAssertEqual(SwiftError.two.errorCode, 2)
}
func test_CustomNSError_errorCodeRawInt() {
enum SwiftError : Int, Error, CustomNSError {
case minusOne = -1
case fortyTwo = 42
}
XCTAssertEqual(SwiftError.minusOne.errorCode, -1)
XCTAssertEqual(SwiftError.fortyTwo.errorCode, 42)
}
func test_CustomNSError_errorCodeRawUInt() {
enum SwiftError : UInt, Error, CustomNSError {
case fortyTwo = 42
}
XCTAssertEqual(SwiftError.fortyTwo.errorCode, 42)
}
}