-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathCaseIterableRawRepresentableTests.swift
139 lines (119 loc) · 3.15 KB
/
CaseIterableRawRepresentableTests.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
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
import Parsing
import XCTest
final class CaseIterableRawRepresentableTests: XCTestCase {
func testParserStringRawValue() throws {
enum Person: String, CaseIterable {
case blob = "Blob"
case blobJr = "Blob Jr"
}
let peopleParser = Parse(input: Substring.UTF8View.self) {
Many {
Person.parser()
} separator: {
",".utf8
} terminator: {
End()
}
}
var input = "Blob,Blob Jr"[...].utf8
XCTAssertEqual(try peopleParser.parse(&input), [.blob, .blobJr])
input = "Blob Jr,Blob"[...].utf8
XCTAssertEqual(try peopleParser.parse(&input), [.blobJr, .blob])
input = "Blob,Mr Blob"[...].utf8
XCTAssertThrowsError(try peopleParser.parse(&input)) { error in
XCTAssertEqual(
"""
error: multiple failures occurred
error: unexpected input
--> input:1:6
1 | Blob,Mr Blob
| ^ expected "Blob Jr"
| ^ expected "Blob"
error: unexpected input
--> input:1:5
1 | Blob,Mr Blob
| ^ expected end of input
""",
"\(error)"
)
}
}
func testParserIntRawValue() throws {
enum Person: Int, CaseIterable {
case blob = 4
case blobJr = 42
}
struct People: Parser {
var body: some Parser<Substring.UTF8View, [Person]> {
Many {
Person.parser()
} separator: {
",".utf8
} terminator: {
End()
}
}
}
var input = "4,42"[...].utf8
XCTAssertEqual(try People().parse(&input), [.blob, .blobJr])
input = "42,4"[...].utf8
XCTAssertEqual(try People().parse(&input), [.blobJr, .blob])
input = "42,100"[...].utf8
XCTAssertThrowsError(try People().parse(&input)) { error in
XCTAssertEqual(
"""
error: multiple failures occurred
error: unexpected input
--> input:1:4
1 | 42,100
| ^ expected "42"
| ^ expected "4"
error: unexpected input
--> input:1:3
1 | 42,100
| ^ expected end of input
""",
"\(error)"
)
}
}
func testParserNegativeIntRawValue() throws {
enum Person: Int, CaseIterable {
case blob = -4
case blobJr = -42
}
struct People: Parser {
var body: some Parser<Substring.UTF8View, [Person]> {
Many {
Person.parser()
} separator: {
",".utf8
} terminator: {
End()
}
}
}
var input = "-4,-42"[...].utf8
XCTAssertEqual(try People().parse(&input), [.blob, .blobJr])
input = "-42,-4"[...].utf8
XCTAssertEqual(try People().parse(&input), [.blobJr, .blob])
input = "-42,-100"[...].utf8
XCTAssertThrowsError(try People().parse(&input)) { error in
XCTAssertEqual(
"""
error: multiple failures occurred
error: unexpected input
--> input:1:5
1 | -42,-100
| ^ expected "-42"
| ^ expected "-4"
error: unexpected input
--> input:1:4
1 | -42,-100
| ^ expected end of input
""",
"\(error)"
)
}
}
}