-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSportsTests.swift
76 lines (62 loc) · 1.82 KB
/
SportsTests.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
//
// SportsTests.swift
// CodableTests
//
// Created by Nate Walczak on 9/27/18.
// Copyright © 2018 Detroit Labs. All rights reserved.
//
import XCTest
@testable import Codable
class SportsTests: XCTestCase {
func testAllCases() {
// Given
let allCases = Sports.allCases
// Then
XCTAssertEqual(allCases, [.running, .cycling, .fencing, .swimming])
}
func testRawValues() {
XCTAssertEqual(Sports.running.rawValue, 1)
XCTAssertEqual(Sports.cycling.rawValue, 2)
XCTAssertEqual(Sports.fencing.rawValue, 4)
XCTAssertEqual(Sports.swimming.rawValue, 8)
}
func testDecodable() {
// Given
let json = Data("""
[
"swimming",
"running"
]
""".utf8)
// When
let sports: Sports
do {
sports = try JSONDecoder().decode(Sports.self, from: json)
} catch {
XCTFail(error.localizedDescription)
return
}
// Then
XCTAssertTrue(sports.contains(.running))
XCTAssertTrue(sports.contains(.swimming))
XCTAssertEqual(sports, [.running, .swimming])
}
func testEncodable() {
// Given
let sports: Sports = [.running, .fencing, .cycling]
// When
let data: Data
let json: [Any]?
do {
data = try JSONEncoder().encode(sports)
json = try JSONSerialization.jsonObject(with: data, options: []) as? [Any]
} catch {
XCTFail(error.localizedDescription)
return
}
// Then
XCTAssertNotNil(json)
XCTAssertEqual(json?.count, 3)
XCTAssertEqual(json as? [String], ["running", "cycling", "fencing"])
}
}