-
Notifications
You must be signed in to change notification settings - Fork 1
/
decoder_test.go
287 lines (228 loc) · 6.8 KB
/
decoder_test.go
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
// Copyright (c) 2020 Lukas Aron. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package discogs
import "testing"
func TestToQualityLevel_InValid(t *testing.T) {
ql := ToQualityLevel("")
if ql != All {
t.Error("when the value is invalid, should be All")
}
}
func TestToQualityLevel_All(t *testing.T) {
value := "All"
ql := ToQualityLevel(value)
if ql != All {
t.Errorf("should be All for value %s", value)
}
}
func TestToQualityLevel_NeedsVote(t *testing.T) {
value := "Needs Vote"
ql := ToQualityLevel(value)
if ql != NeedsVote {
t.Errorf("should be NeedsVote for value %s", value)
}
}
func TestToQualityLevel_EntirelyIncorrect(t *testing.T) {
value := "Entirely Incorrect"
ql := ToQualityLevel(value)
if ql != EntirelyIncorrect {
t.Errorf("should be Entirely Incorrect for value %s", value)
}
}
func TestToQualityLevel_NeedsMajorChanges(t *testing.T) {
value := "Needs Major Changes"
ql := ToQualityLevel(value)
if ql != NeedsMajorChanges {
t.Errorf("should be NeedsMajorChanges for value %s", value)
}
}
func TestToQualityLevel_NeedsMinorChanges(t *testing.T) {
value := "Needs Minor Changes"
ql := ToQualityLevel(value)
if ql != NeedsMinorChanges {
t.Errorf("should be NeedsMinorChanges for value %s", value)
}
}
func TestToQualityLevel_Correct(t *testing.T) {
value := "Correct"
ql := ToQualityLevel(value)
if ql != Correct {
t.Errorf("should be Correct for value %s", value)
}
}
func TestToQualityLevel_CompleteAndCorrect(t *testing.T) {
value := "Complete and Correct"
ql := ToQualityLevel(value)
if ql != CompleteAndCorrect {
t.Errorf("should be CompleteAndCorrect for value %s", value)
}
}
func TestQualityLevel_Includes_All(t *testing.T) {
ql := All
if !ql.Includes(CompleteAndCorrect) {
t.Error("all should contain Complete and Correct")
}
if !ql.Includes(Correct) {
t.Error("all should contain Correct")
}
if !ql.Includes(NeedsMinorChanges) {
t.Error("all should contain Needs Minor Changes")
}
if !ql.Includes(NeedsMajorChanges) {
t.Error("all should contain Needs Major Changes")
}
if !ql.Includes(NeedsVote) {
t.Error("all should contain Needs Vode")
}
if !ql.Includes(EntirelyIncorrect) {
t.Error("all should contain Entirely Incorrect")
}
if !ql.Includes(All) {
t.Error("all should contain itself")
}
}
func TestQualityLevel_Includes_EntirelyIncorrect(t *testing.T) {
ql := EntirelyIncorrect
if !ql.Includes(CompleteAndCorrect) {
t.Error("entirely incorrect should contain Complete and Correct")
}
if !ql.Includes(Correct) {
t.Error("entirely incorrect should contain Correct")
}
if !ql.Includes(NeedsMinorChanges) {
t.Error("entirely incorrect should contain Needs Minor Changes")
}
if !ql.Includes(NeedsMajorChanges) {
t.Error("entirely incorrect should contain Needs Major Changes")
}
if !ql.Includes(NeedsVote) {
t.Error("entirely incorrect should contain Needs Vote")
}
if !ql.Includes(EntirelyIncorrect) {
t.Error("entirely incorrect should contain itself")
}
if ql.Includes(All) {
t.Error("entirely incorrect shouldn't contain All")
}
}
func TestQualityLevel_Includes_NeedsVote(t *testing.T) {
ql := NeedsVote
if !ql.Includes(CompleteAndCorrect) {
t.Error("needs vote should contain Complete and Correct")
}
if !ql.Includes(Correct) {
t.Error("needs vote should contain Correct")
}
if !ql.Includes(NeedsMinorChanges) {
t.Error("needs vote should contain Needs Minor Changes")
}
if !ql.Includes(NeedsMajorChanges) {
t.Error("needs vote should contain Needs Major Changes")
}
if !ql.Includes(NeedsVote) {
t.Error("needs vote should contain itself")
}
if ql.Includes(EntirelyIncorrect) {
t.Error("needs vote shouldn't contain Entirely Incorrect")
}
if ql.Includes(All) {
t.Error("needs vote shouldn't contain All")
}
}
func TestQualityLevel_Includes_NeedsMajorChanges(t *testing.T) {
ql := NeedsMajorChanges
if !ql.Includes(CompleteAndCorrect) {
t.Error("needs major changes should contain Complete and Correct")
}
if !ql.Includes(Correct) {
t.Error("needs major changes should contain Correct")
}
if !ql.Includes(NeedsMinorChanges) {
t.Error("needs major changes should contain Needs Minor Changes")
}
if !ql.Includes(NeedsMajorChanges) {
t.Error("needs major changes should contain itself")
}
if ql.Includes(NeedsVote) {
t.Error("needs major changes shouldn't contain Needs Vote")
}
if ql.Includes(EntirelyIncorrect) {
t.Error("needs major changes shouldn't contain Entirely Incorrect")
}
if ql.Includes(All) {
t.Error("needs major changes shouldn't contain All")
}
}
func TestToQualityLevel_Includes_NeedsMinorChanges(t *testing.T) {
ql := NeedsMinorChanges
if !ql.Includes(CompleteAndCorrect) {
t.Error("needs minor changes should contain Complete and Correct")
}
if !ql.Includes(Correct) {
t.Error("needs minor changes should contain Correct")
}
if !ql.Includes(NeedsMinorChanges) {
t.Error("needs minor changes should contain itself")
}
if ql.Includes(NeedsMajorChanges) {
t.Error("needs minor changes shouldn't contain Needs Major Changes")
}
if ql.Includes(NeedsVote) {
t.Error("needs minor changes shouldn't contain Needs Vote")
}
if ql.Includes(EntirelyIncorrect) {
t.Error("needs minor changes shouldn't contain Entirely Incorrect")
}
if ql.Includes(All) {
t.Error("needs minor changes shouldn't contain All")
}
}
func TestQualityLevel_Includes_Correct(t *testing.T) {
ql := Correct
if !ql.Includes(CompleteAndCorrect) {
t.Error("correct should contain Complete and Correct")
}
if !ql.Includes(Correct) {
t.Error("correct should contain itself")
}
if ql.Includes(NeedsMinorChanges) {
t.Error("correct shouldn't contain Needs Minor Changes")
}
if ql.Includes(NeedsMajorChanges) {
t.Error("correct shouldn't contain Needs Major Changes")
}
if ql.Includes(NeedsVote) {
t.Error("correct shouldn't contain Needs Vote")
}
if ql.Includes(EntirelyIncorrect) {
t.Error("correct shouldn't contain Entirely Incorrect")
}
if ql.Includes(All) {
t.Error("correct shouldn't contain All")
}
}
func TestQualityLevel_Includes_CompleteAndCorrect(t *testing.T) {
ql := CompleteAndCorrect
if !ql.Includes(CompleteAndCorrect) {
t.Error("complete and correct should contain itself")
}
if ql.Includes(Correct) {
t.Error("complete and correct shouldn't contain Correct")
}
if ql.Includes(NeedsMinorChanges) {
t.Error("complete and correct shouldn't contain Needs Minor Changes")
}
if ql.Includes(NeedsMajorChanges) {
t.Error("complete and correct shouldn't contain Needs Major Changes")
}
if ql.Includes(NeedsVote) {
t.Error("complete and correct shouldn't contain Needs Vote")
}
if ql.Includes(EntirelyIncorrect) {
t.Error("complete and correct shouldn't contain Entirely Incorrect")
}
if ql.Includes(All) {
t.Error("complete and correct shouldn't contain All")
}
}