-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRegionsSpec.scala
245 lines (217 loc) · 6.77 KB
/
RegionsSpec.scala
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
package io.flow.reference
import org.scalatest.funspec.AnyFunSpec
import org.scalatest.matchers.should.Matchers
class RegionsSpec extends AnyFunSpec with Matchers {
it("be unique") {
data.Regions.all.groupBy(_.name).filter { _._2.size > 1 }.keys should be(Set())
data.Regions.all.groupBy(_.id).filter { _._2.size > 1 }.keys should be(Set())
}
it("have ids in lower case") {
data.Regions.all.map(_.id) should be(data.Regions.all.map(_.id.toLowerCase))
}
it("have no blanks") {
data.Regions.all.find(_.name.trim.isEmpty) should be(None)
data.Regions.all.find(_.id.trim.isEmpty) should be(None)
}
it("codes in use are defined") {
val all = Seq(
"africa",
"alb",
"and",
"are",
"arg",
"atg",
"aus",
"aut",
"bel",
"bgr",
"bhs",
"can",
"che",
"chl",
"chn",
"civ",
"cri",
"deu",
"dnk",
"dom",
"esp",
"est",
"europe",
"eurozone",
"fin",
"fji",
"fra",
"gbr",
"hkg",
"hti",
"ind",
"irl",
"isr",
"ita",
"jpn",
"kor",
"kwt",
"mex",
"mlt",
"nld",
"nor",
"nzl",
"phl",
"pol",
"rus",
"sau",
"sgp",
"swe",
"tha",
"twn",
"usa",
"world",
"zaf",
)
all.filter { id =>
Regions.findById(id).isEmpty
} should be(Nil)
}
it("have common regions are defined") {
val eurozone = data.Regions.all.find(_.id == "eurozone").getOrElse {
("Europe", "European Economic Area", "European Union", "Eurozone", "France", "World")
sys.error("eurozone missing")
}
eurozone.id should be("eurozone")
eurozone.name should be("Eurozone")
eurozone.currencies should be(Seq("EUR"))
eurozone.countries.size > 10 should be(true)
eurozone.languages.size > 10 should be(true)
eurozone.measurementSystems should be(Seq("metric"))
}
it("find") {
Seq("usa", " USA ").foreach { id =>
Regions.find(id).get.id should be("usa")
Regions.findById(id).get.id should be("usa")
}
Regions.find("other") should be(None)
Regions.findById("other") should be(None)
}
it("mustFind") {
Seq("usa", "fra").foreach { id =>
Regions.mustFind(id).id should be(id)
Regions.mustFindById(id).id should be(id)
}
intercept[Throwable] {
Regions.mustFind("other")
}.getMessage should be(
"The following region is invalid: [other]. See https://api.flow.io/reference/regions for a list of all valid regions.",
)
intercept[Throwable] {
Regions.mustFindById("other")
}.getMessage should be(
"The following region is invalid: [other]. See https://api.flow.io/reference/regions for a list of all valid regions.",
)
}
it("filter") {
Seq("europe", " EUROPE ", "eurozone", "EUROZONE", "africa", "asia").foreach { id =>
Regions.filter(id).toList match {
case one :: Nil => one.id should be(id.trim.toLowerCase)
case other => sys.error(s"$id should have found one result but found $other")
}
}
Seq("us", "usa", " FR ", " FRA ", "france", " FRANCE ").foreach { name =>
Regions.filter(name).toList match {
case Nil => sys.error(s"$name should have found at least one result but found none")
case _ => // no-op
}
}
val regions = Regions.filter("fra")
regions.map(_.name).sorted should be(
Seq("Europe", "European Economic Area", "European Union", "Eurozone", "France", "World"),
)
regions.foreach { r =>
r.countries.contains("FRA") should be(true)
}
Regions.filter("other") should be(Nil)
}
it("validate all all regions") {
Regions.validate(data.Regions.all.map(_.id)) should be(Right(data.Regions.all))
}
it("validate an empty list of region ids") {
Regions.validate(Nil) should be(Right(Nil))
}
it("return an error for invalid regions") {
Regions.validate(Seq("Fra", "Mars")) should be(
Left(
Seq(
"The following region is invalid: [Mars]. See https://api.flow.io/reference/regions for a list of all valid regions.",
),
),
)
Regions.validate(Seq("Fra", "Mars", "Venus", "Jupiter")) should be(
Left(
Seq(
"The following regions are invalid: [Mars], [Venus], [Jupiter]. See https://api.flow.io/reference/regions for a list of all valid regions.",
),
),
)
}
it("ignore duplicates") {
val Left(res) = Regions.validate(
Seq(
"Flowville",
"Flowville",
),
)
res should be(
Seq(
"The following region is invalid: [Flowville]. See https://api.flow.io/reference/regions for a list of all valid regions.",
),
)
}
it("trims strings and removes duplicates") {
val Left(res) = Regions.validate(
Seq(
"Flowville ",
" Flowville",
),
)
res should be(
Seq(
"The following region is invalid: [Flowville]. See https://api.flow.io/reference/regions for a list of all valid regions.",
),
)
}
it("validate a single region") {
Regions.validateSingle("dom") should be(Right(data.Regions.DominicanRepublic))
Regions.validateSingle("DOM") should be(Right(data.Regions.DominicanRepublic))
Regions.validateSingle("DOm") should be(Right(data.Regions.DominicanRepublic))
Regions.validateSingle("dOm") should be(Right(data.Regions.DominicanRepublic))
Regions.validateSingle("DoM") should be(Right(data.Regions.DominicanRepublic))
}
it("validate a single region and trims provided id") {
Regions.validateSingle("dom ") should be(Right(data.Regions.DominicanRepublic))
Regions.validateSingle(" DOM") should be(Right(data.Regions.DominicanRepublic))
Regions.validateSingle(" DOm ") should be(Right(data.Regions.DominicanRepublic))
Regions.validateSingle(" dOm ") should be(Right(data.Regions.DominicanRepublic))
Regions.validateSingle(" DoM ") should be(Right(data.Regions.DominicanRepublic))
}
it("return an error for a single invalid region and trims provided id") {
Regions.validateSingle("Mars") should be(
Left(
"The following region is invalid: [Mars]. See https://api.flow.io/reference/regions for a list of all valid regions.",
),
)
Regions.validateSingle(" Mars") should be(
Left(
"The following region is invalid: [Mars]. See https://api.flow.io/reference/regions for a list of all valid regions.",
),
)
}
it("validation merges duplicate regions") {
Regions.validate(Seq("Mars", "Mars")) should be(
Left(
Seq(
"The following region is invalid: [Mars]. See https://api.flow.io/reference/regions for a list of all valid regions.",
),
),
)
}
}