forked from FlineDev/ErrorKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathErrorKitTests.swift
More file actions
217 lines (198 loc) · 8.62 KB
/
ErrorKitTests.swift
File metadata and controls
217 lines (198 loc) · 8.62 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import Foundation
import Testing
@testable import ErrorKit
enum ErrorKitTests {
struct SomeLocalizedError: LocalizedError {
let errorDescription: String? = "Something failed."
let failureReason: String? = "It failed because it wanted to."
let recoverySuggestion: String? = "Try again later."
let helpAnchor: String? = "https://github.com/apple/swift-error-kit#readme"
}
struct SomeThrowable: Throwable {
let userFriendlyMessage: String = "Something failed hard."
}
enum UserFriendlyMessage {
@Test
static func localizedError() {
#expect(ErrorKit.userFriendlyMessage(for: SomeLocalizedError()) == "Something failed. It failed because it wanted to. Try again later.")
}
#if canImport(CryptoKit)
@Test
static func nsError() {
let nsError = NSError(domain: "SOME", code: 1245, userInfo: [NSLocalizedDescriptionKey: "Something failed."])
#expect(ErrorKit.userFriendlyMessage(for: nsError) == "[SOME: 1245] Something failed.")
}
#endif
@Test
static func throwable() async throws {
#expect(ErrorKit.userFriendlyMessage(for: SomeThrowable()) == "Something failed hard.")
}
@Test
static func nested() async throws {
let nestedError = DatabaseError.caught(FileError.caught(PermissionError.denied(permission: "~/Downloads/Profile.png")))
#expect(ErrorKit.userFriendlyMessage(for: nestedError) == "Access to ~/Downloads/Profile.png was declined. To use this feature, please enable the permission in your device Settings.")
}
@Test
static func errorStringInterpolation() async throws {
#expect("\(error: SomeThrowable())" == "Something failed hard.")
}
@Test
static func nestedErrorStringInterpolation() async throws {
let nestedError = DatabaseError.caught(FileError.caught(PermissionError.denied(permission: "~/Downloads/Profile.png")))
#expect("\(error: nestedError)" == "Access to ~/Downloads/Profile.png was declined. To use this feature, please enable the permission in your device Settings.")
}
@Test
static func chainedErrorStringInterpolation() async throws {
#expect(
"\(errorChain: SomeLocalizedError())" == """
SomeLocalizedError [Struct]
└─ userFriendlyMessage: "Something failed. It failed because it wanted to. Try again later."
"""
)
}
}
enum ErrorChainDescription {
@Test
static func localizedError() {
#expect(
ErrorKit.errorChainDescription(for: SomeLocalizedError())
==
"""
SomeLocalizedError [Struct]
└─ userFriendlyMessage: "Something failed. It failed because it wanted to. Try again later."
"""
)
}
#if canImport(CryptoKit)
@Test
static func nsError() {
let nsError = NSError(domain: "SOME", code: 1245, userInfo: [NSLocalizedDescriptionKey: "Something failed."])
let generatedErrorChainDescription = ErrorKit.errorChainDescription(for: nsError)
let expectedErrorChainDescription = """
NSError [Class]
└─ userFriendlyMessage: "[SOME: 1245] Something failed."
"""
#expect(generatedErrorChainDescription == expectedErrorChainDescription)
}
#endif
@Test
static func throwableStruct() {
let generatedErrorChainDescription = ErrorKit.errorChainDescription(for: SomeThrowable())
let expectedErrorChainDescription = """
SomeThrowable [Struct]
└─ userFriendlyMessage: "Something failed hard."
"""
#expect(generatedErrorChainDescription == expectedErrorChainDescription)
}
@Test
static func throwableEnum() {
let generatedErrorChainDescription = ErrorKit.errorChainDescription(for: PermissionError.restricted(permission: "~/Downloads/Profile.png"))
let expectedErrorChainDescription = """
PermissionError.restricted(permission: "~/Downloads/Profile.png")
└─ userFriendlyMessage: "Access to ~/Downloads/Profile.png is currently restricted. This may be due to system settings or parental controls."
"""
#expect(generatedErrorChainDescription == expectedErrorChainDescription)
}
@Test
static func shallowNested() {
let nestedError = DatabaseError.caught(FileError.fileNotFound(fileName: "App.sqlite"))
let generatedErrorChainDescription = ErrorKit.errorChainDescription(for: nestedError)
let expectedErrorChainDescription = """
DatabaseError
└─ FileError.fileNotFound(fileName: "App.sqlite")
└─ userFriendlyMessage: "The file App.sqlite could not be located. Please verify the file path and try again."
"""
#expect(generatedErrorChainDescription == expectedErrorChainDescription)
}
@Test
static func deeplyNestedThrowablesWithEnumLeaf() {
let nestedError = StateError.caught(
OperationError.caught(
DatabaseError.caught(
FileError.caught(
PermissionError.denied(permission: "~/Downloads/Profile.png")
)
)
)
)
let generatedErrorChainDescription = ErrorKit.errorChainDescription(for: nestedError)
let expectedErrorChainDescription = """
StateError
└─ OperationError
└─ DatabaseError
└─ FileError
└─ PermissionError.denied(permission: "~/Downloads/Profile.png")
└─ userFriendlyMessage: "Access to ~/Downloads/Profile.png was declined. To use this feature, please enable the permission in your device Settings."
"""
#expect(generatedErrorChainDescription == expectedErrorChainDescription)
}
@Test
static func deeplyNestedThrowablesWithStructLeaf() {
let nestedError = StateError.caught(
OperationError.caught(
DatabaseError.caught(
FileError.caught(
SomeThrowable()
)
)
)
)
let generatedErrorChainDescription = ErrorKit.errorChainDescription(for: nestedError)
let expectedErrorChainDescription = """
StateError
└─ OperationError
└─ DatabaseError
└─ FileError
└─ SomeThrowable [Struct]
└─ userFriendlyMessage: "Something failed hard."
"""
#expect(generatedErrorChainDescription == expectedErrorChainDescription)
}
@Test
static func deeplyNestedThrowablesWithLocalizedErrorLeaf() {
let nestedError = StateError.caught(
OperationError.caught(
DatabaseError.caught(
FileError.caught(
SomeLocalizedError()
)
)
)
)
let generatedErrorChainDescription = ErrorKit.errorChainDescription(for: nestedError)
let expectedErrorChainDescription = """
StateError
└─ OperationError
└─ DatabaseError
└─ FileError
└─ SomeLocalizedError [Struct]
└─ userFriendlyMessage: "Something failed. It failed because it wanted to. Try again later."
"""
#expect(generatedErrorChainDescription == expectedErrorChainDescription)
}
#if canImport(CryptoKit)
@Test
static func deeplyNestedThrowablesWithNSErrorLeaf() {
let nsError = NSError(domain: "SOME", code: 1245, userInfo: [NSLocalizedDescriptionKey: "Something failed."])
let nestedError = StateError.caught(
OperationError.caught(
DatabaseError.caught(
FileError.caught(nsError)
)
)
)
let generatedErrorChainDescription = ErrorKit.errorChainDescription(for: nestedError)
let expectedErrorChainDescription = """
StateError
└─ OperationError
└─ DatabaseError
└─ FileError
└─ NSError [Class]
└─ userFriendlyMessage: "[SOME: 1245] Something failed."
"""
#expect(generatedErrorChainDescription == expectedErrorChainDescription)
}
#endif
}
// TODO: add more tests for more specific errors such as CoreData, MapKit – and also nested errors!
}