forked from dduan/TOMLDecoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTOMLDecoderTests.swift
More file actions
501 lines (397 loc) · 13 KB
/
TOMLDecoderTests.swift
File metadata and controls
501 lines (397 loc) · 13 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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
import Foundation
import Resources
import Testing
@testable import TOMLDecoder
@Suite
struct TOMLDecoderTests {
@Test func basicGeneratedCodables() throws {
struct Player: Codable, Equatable {
let id: String
let health: Int64
}
struct Team: Codable, Equatable {
let players: [Player]
}
let expectation = Team(players: [
Player(id: "abc", health: 123),
Player(id: "cde", health: 456),
])
let toml = """
[[players]]
id = "abc"
health = 123
[[players]]
id = "cde"
health = 456
"""
let result = try TOMLDecoder().decode(Team.self, from: toml)
#expect(result == expectation)
}
@Test func decodingContainerKeyed() throws {
struct Player: Decodable, Equatable {
let id: String
let health: Int64
let pi: Double
enum PlayerKeys: String, CodingKey {
case id
case health
case pi
}
init(id: String, health: Int64, pi: Double) {
self.id = id
self.health = health
self.pi = pi
}
init(from decoder: Decoder) throws {
let values = try decoder.container(keyedBy: PlayerKeys.self)
id = try values.decode(String.self, forKey: .id)
health = try values.decode(Int64.self, forKey: .health)
pi = try values.decode(Double.self, forKey: .pi)
}
}
let expectation = Player(id: "abc", health: 123, pi: 3.14)
let toml = """
id = "abc"
health = 123
pi = 3.14
"""
let result = try TOMLDecoder().decode(Player.self, from: toml)
#expect(result == expectation)
}
@Test func nestedUnkeyedDecodingContainer() throws {
struct Player: Decodable, Equatable {
let id: String
let health: Int64
}
struct Team: Decodable, Equatable {
let players: [Player]
enum Keys: String, CodingKey {
case players
}
init(from decoder: Decoder) throws {
var values = try decoder.container(keyedBy: Keys.self)
.nestedUnkeyedContainer(forKey: .players)
var players = [Player]()
while !values.isAtEnd {
try players.append(values.decode(Player.self))
}
self.players = players
}
init(players: [Player]) {
self.players = players
}
}
let expectation = Team(players: [
Player(id: "abc", health: 123),
Player(id: "cde", health: 456),
])
let toml = """
[[players]]
id = "abc"
health = 123
[[players]]
id = "cde"
health = 456
"""
let result = try TOMLDecoder().decode(Team.self, from: toml)
#expect(result == expectation)
}
@Test func lenientIntegerDecodingStrategy() throws {
struct Player: Codable, Equatable {
let id: String
let health: Int
}
let toml = """
id = "abc"
health = 123
"""
var decoder = TOMLDecoder()
decoder.isLenient = false
#expect(throws: (any Error).self) {
try decoder.decode(Player.self, from: toml)
}
}
@Test
func foundationDateDecoding() throws {
struct Player: Codable, Equatable {
let id: String
let signUpDate: Date
}
let expectation = Player(id: "abc", signUpDate: Date(timeIntervalSinceReferenceDate: 0))
let toml = """
id = "abc"
signUpDate = 2001-01-01 00:00:00Z
"""
let decoder = TOMLDecoder()
let result = try decoder.decode(Player.self, from: toml)
#expect(result == expectation)
}
@Test
func foundationDateComponentsFromLocalDateDecoding() throws {
struct Player: Codable, Equatable {
let id: String
let signUpDate: DateComponents
}
let expectation = Player(id: "abc", signUpDate: DateComponents(year: 2001, month: 1, day: 1))
let toml = """
id = "abc"
signUpDate = 2001-01-01
"""
let decoder = TOMLDecoder()
let result = try decoder.decode(Player.self, from: toml)
#expect(result == expectation)
}
@Test
func foundationDateComponentsFromLocalTimeDecoding() throws {
struct Player: Codable, Equatable {
let id: String
let signUpTime: DateComponents
}
let expectation = Player(id: "abc", signUpTime: DateComponents(hour: 1, minute: 2, second: 3))
let toml = """
id = "abc"
signUpTime = 01:02:03
"""
let decoder = TOMLDecoder()
let result = try decoder.decode(Player.self, from: toml)
#expect(result == expectation)
}
@Test
func foundationDateComponentsFromLocalDateTimeDecoding() throws {
struct Player: Codable, Equatable {
let id: String
let signUpTime: DateComponents
}
let expectation = Player(id: "abc", signUpTime: DateComponents(year: 2001, month: 1, day: 1, hour: 1,
minute: 2, second: 3))
let toml = """
id = "abc"
signUpTime = 2001-01-01 01:02:03
"""
let decoder = TOMLDecoder()
let result = try decoder.decode(Player.self, from: toml)
#expect(result == expectation)
}
@Test func decodingSnakeCaseKeyStrategy() throws {
struct Player: Codable, Equatable {
let id: String
let firstProfession: String
}
let expectation = Player(id: "abc", firstProfession: "Cook")
let toml = """
id = "abc"
first_profession = "Cook"
"""
var decoder = TOMLDecoder()
decoder.strategy.key = .convertFromSnakeCase
let result = try decoder.decode(Player.self, from: toml)
#expect(result == expectation)
}
@Test func decodingCustomKeyStrategy() throws {
struct Player: Codable, Equatable {
let id: String
let profession: String
}
let expectation = Player(id: "abc", profession: "Cook")
let toml = """
id = "abc"
PROFESSION = "Cook"
"""
var decoder = TOMLDecoder()
decoder.strategy.key = .custom { $0.lowercased() }
let result = try decoder.decode(Player.self, from: toml)
#expect(result == expectation)
}
@Test func arrayOfStringsParsing() throws {
struct AppConfig: Codable, Equatable {
let name: String
let version: String
let features: [String]
let database: DatabaseConfig
struct DatabaseConfig: Codable, Equatable {
let host: String
let port: Int
let username: String
}
}
let expectation = AppConfig(
name: "Sample App",
version: "1.0.0",
features: ["logging", "monitoring", "caching"],
database: AppConfig.DatabaseConfig(
host: "localhost",
port: 5432,
username: "admin"
)
)
let toml = """
name = "Sample App"
version = "1.0.0"
features = ["logging", "monitoring", "caching"]
[database]
host = "localhost"
port = 5432
username = "admin"
"""
let result = try TOMLDecoder().decode(AppConfig.self, from: toml)
#expect(result == expectation)
}
@Test func superDecoder() throws {
class Player: Codable {
let id: String
let health: Int
}
final class LocalPlayer: Player {
let ip: String
private enum CodingKeys: String, CodingKey {
case ip
}
required init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
ip = try container.decode(String.self, forKey: .ip)
let superDecoder = try container.superDecoder()
try super.init(from: superDecoder)
}
}
let toml = """
id = "abc"
health = 123
ip = "127.0.0.1"
"""
let decoder = TOMLDecoder()
_ = try decoder.decode(LocalPlayer.self, from: toml)
}
@Test func tomlIoExample() throws {
let toml = """
# This is a TOML document
title = "TOML Example"
[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00
[database]
enabled = true
ports = [ 8000, 8001, 8002 ]
temp_targets = { cpu = 79.5, case = 72.0 }
[servers]
[servers.alpha]
ip = "10.0.0.1"
role = "frontend"
[servers.beta]
ip = "10.0.0.2"
role = "backend"
"""
struct Config: Codable, Equatable {
let title: String
let owner: Owner
let database: Database
let servers: Servers
struct Owner: Codable, Equatable {
let name: String
let dob: OffsetDateTime
}
struct Database: Codable, Equatable {
let enabled: Bool
let ports: [Int]
let tempTargets: [String: Double]
}
struct Servers: Codable, Equatable {
let alpha: Server
let beta: Server
struct Server: Codable, Equatable {
let ip: String
let role: String
}
}
}
let expectation = Config(
title: "TOML Example",
owner: .init(
name: "Tom Preston-Werner",
dob: OffsetDateTime(
date: LocalDate(year: 1979, month: 5, day: 27),
time: LocalTime(hour: 7, minute: 32, second: 0, nanosecond: 0),
offset: -480,
features: [.uppercaseT]
)
),
database: .init(
enabled: true,
ports: [8000, 8001, 8002],
tempTargets: ["cpu": 79.5, "case": 72.0]
),
servers: .init(
alpha: .init(ip: "10.0.0.1", role: "frontend"),
beta: .init(ip: "10.0.0.2", role: "backend")
)
)
var decoder = TOMLDecoder()
decoder.strategy.key = .convertFromSnakeCase
let result = try decoder.decode(Config.self, from: toml)
#expect(result == expectation)
}
@Test func mixingContainers() throws {
struct Test: Decodable, Equatable {
let numbers: [[Int64]]
let strings: TOMLArray
let doubles: [TOMLArray]
let tableInArray: [TOMLTable]
let tableInTable: [String: TOMLTable]
}
let toml = """
numbers = [[1, 2], [3, 4]]
strings = [["a", "b"], ["c", "d"]]
doubles = [[1.2]]
tableInArray = [{a = 1}]
tableInTable = { b = { c = "yo" } }
"""
let result = try TOMLDecoder().decode(Test.self, from: toml)
#expect(result.numbers == [[1, 2], [3, 4]])
}
@Test func optionalFields() throws {
struct Test: Codable, Equatable {
let a: Int64?
let b: Double?
let c: String?
}
let result1 = try TOMLDecoder()
.decode(
Test.self,
from: """
a = 1
"""
)
#expect(result1 == Test(a: 1, b: nil, c: nil))
let result2 = try TOMLDecoder()
.decode(
Test.self,
from: """
b = 1.0
c = "claude"
"""
)
#expect(result2 == Test(a: nil, b: 1.0, c: "claude"))
}
@Test func singleValueContainer() throws {
enum Language: String, Codable {
case swift
case mojo
case zig
}
struct Team: Codable, Equatable {
let languages: [Language]
let favorite: Language
}
let toml = """
languages = ["swift", "mojo", "zig"]
favorite = "swift"
"""
let result = try TOMLDecoder().decode(Team.self, from: toml)
#expect(result == Team(languages: [.swift, .mojo, .zig], favorite: .swift))
}
@Test func twitter() throws {
_ = try TOMLDecoder().decode(TwitterArchive.self, from: Resources.twitterTOMLString)
}
@Test func canada() throws {
_ = try TOMLDecoder().decode(CanadaFeatureCollection.self, from: Resources.canadaTOMLString)
}
}