forked from nleeper/goment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompare_test.go
572 lines (403 loc) · 16 KB
/
compare_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
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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
package goment
import (
"encoding/json"
"io/ioutil"
"path/filepath"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
type compareTest struct {
Message string `json:"message"`
Date string `json:"date"`
LaterDate string `json:"later_date,omitempty"`
Inclusivity string `json:"inclusivity,omitempty"`
}
type compareTestCase struct {
Unit string `json:"unit"`
TrueCases []compareTest `json:"true"`
FalseCases []compareTest `json:"false"`
}
type compareTestScenario struct {
Date string `json:"date"`
Cases []compareTestCase `json:"cases"`
}
var compareTestFileMap = map[string]map[string]compareTestScenario{}
func getTestScenario(fileName, scenarioName string) compareTestScenario {
if _, ok := compareTestFileMap[fileName]; !ok {
var testMap map[string]compareTestScenario
raw, _ := ioutil.ReadFile(filepath.Join("testdata", fileName+".json"))
json.Unmarshal(raw, &testMap)
compareTestFileMap[fileName] = testMap
}
return compareTestFileMap[fileName][scenarioName]
}
func runTestsForScenario(t *testing.T, scenario compareTestScenario, f func(...interface{}) bool) {
for _, c := range scenario.Cases {
for _, tt := range c.TrueCases {
assert.True(t, f(tt.Date, c.Unit), tt.Message)
}
for _, ft := range c.FalseCases {
assert.False(t, f(ft.Date, c.Unit), ft.Message)
}
}
}
func runTestsForBetweenScenario(t *testing.T, scenario compareTestScenario, f func(...interface{}) bool) {
for _, c := range scenario.Cases {
for _, tt := range c.TrueCases {
assert.True(t, f(tt.Date, tt.LaterDate, c.Unit, tt.Inclusivity), tt.Message)
}
for _, ft := range c.FalseCases {
assert.False(t, f(ft.Date, ft.LaterDate, c.Unit, ft.Inclusivity), ft.Message)
}
}
}
func TestIsBeforeUsesNowIfNoArguments(t *testing.T) {
testTime := time.Date(2018, 12, 15, 17, 8, 0, 0, chicagoLocation())
timeNow = func() time.Time {
return testTime
}
lib := simpleString("2010-10-11")
assert.True(t, lib.IsBefore())
// Reset timeNow.
timeNow = time.Now
}
func TestIsBeforeReturnsFalseInvalidFirstArgument(t *testing.T) {
lib := simpleString("2010-10-11")
assert.False(t, lib.IsBefore(1))
}
func TestIsBeforeReturnsFalseIfInvalidSecondArgument(t *testing.T) {
lib := simpleString("2010-10-11")
assert.False(t, lib.IsBefore("2012-01-01", 1))
}
func TestIsBeforeNoUnits(t *testing.T) {
scenario := getTestScenario("is_before", "no_units")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsBefore)
assert.False(t, lib.IsBefore(lib), "goments are not before themselves")
}
func TestIsBeforeYear(t *testing.T) {
scenario := getTestScenario("is_before", "year")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsBefore)
assert.False(t, lib.IsBefore(lib, "year"), "same goments are not before the same year")
}
func TestIsBeforeMonth(t *testing.T) {
scenario := getTestScenario("is_before", "month")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsBefore)
assert.False(t, lib.IsBefore(lib, "month"), "same goments are not before the same month")
}
func TestIsBeforeDay(t *testing.T) {
scenario := getTestScenario("is_before", "day")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsBefore)
assert.False(t, lib.IsBefore(lib, "day"), "same goments are not before the same day")
}
func TestIsBeforeHour(t *testing.T) {
scenario := getTestScenario("is_before", "hour")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsBefore)
assert.False(t, lib.IsBefore(lib, "hour"), "same goments are not before the same hour")
}
func TestIsBeforeMinute(t *testing.T) {
scenario := getTestScenario("is_before", "minute")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsBefore)
assert.False(t, lib.IsBefore(lib, "minute"), "same goments are not before the same minute")
}
func TestIsBeforeSecond(t *testing.T) {
scenario := getTestScenario("is_before", "second")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsBefore)
assert.False(t, lib.IsBefore(lib, "second"), "same goments are not before the same second")
}
func TestIsSameReturnsFalseIfNoArguments(t *testing.T) {
testTime := time.Date(2018, 12, 15, 17, 8, 0, 0, time.UTC)
timeNow = func() time.Time {
return testTime
}
lib := simpleTime(testTime)
assert.False(t, lib.IsSame())
// Reset timeNow.
timeNow = time.Now
}
func TestIsSameReturnsFalseInvalidFirstArgument(t *testing.T) {
lib := simpleString("2010-10-11")
assert.False(t, lib.IsSame(1))
}
func TestIsSameReturnsFalseIfInvalidSecondArgument(t *testing.T) {
lib := simpleString("2010-10-11")
assert.False(t, lib.IsSame("2012-01-01", 1))
}
func TestIsSameNoUnits(t *testing.T) {
scenario := getTestScenario("is_same", "no_units")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSame)
assert.True(t, lib.IsSame(lib), "goments are the same as themselves")
}
func TestIsSameDeref(t *testing.T) {
date := "2020-05-10"
lib := simpleString(date)
lib2 := *lib
lib3 := *lib
assert.True(t, lib2.IsSame(lib3), "deref goments are the same as themselves")
}
func TestIsSameYear(t *testing.T) {
scenario := getTestScenario("is_same", "year")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSame)
assert.True(t, lib.IsSame(lib, "year"), "same goments are in the same year")
}
func TestIsSameMonth(t *testing.T) {
scenario := getTestScenario("is_same", "month")
lib := simpleTime(time.Date(2011, 3, 3, 4, 5, 6, 7, time.UTC))
runTestsForScenario(t, scenario, lib.IsSame)
assert.True(t, lib.IsSame(lib, "month"), "same goments are in the same month")
}
func TestIsSameDay(t *testing.T) {
scenario := getTestScenario("is_same", "day")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSame)
assert.True(t, lib.IsSame(lib, "day"), "same goments are in the same day")
}
func TestIsSameHour(t *testing.T) {
scenario := getTestScenario("is_same", "hour")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSame)
assert.True(t, lib.IsSame(lib, "hour"), "same goments are in the same hour")
}
func TestIsSameMinute(t *testing.T) {
scenario := getTestScenario("is_same", "minute")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSame)
assert.True(t, lib.IsSame(lib, "minute"), "same goments are in the same minute")
}
func TestIsSameSecond(t *testing.T) {
scenario := getTestScenario("is_same", "second")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSame)
assert.True(t, lib.IsSame(lib, "second"), "same goments are in the same second")
}
func TestIsAfterUsesNowIfNoArguments(t *testing.T) {
testTime := time.Date(2018, 12, 15, 17, 8, 0, 0, chicagoLocation())
timeNow = func() time.Time {
return testTime
}
lib := simpleString("2020-10-11")
assert.True(t, lib.IsAfter())
// Reset timeNow.
timeNow = time.Now
}
func TestIsAfterReturnsFalseInvalidFirstArgument(t *testing.T) {
lib := simpleString("2010-10-11")
assert.False(t, lib.IsAfter(1))
}
func TestIsAfterReturnsFalseIfInvalidSecondArgument(t *testing.T) {
lib := simpleString("2010-10-11")
assert.False(t, lib.IsAfter("2012-01-01", 1))
}
func TestIsAfterNoUnits(t *testing.T) {
scenario := getTestScenario("is_after", "no_units")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsAfter)
assert.False(t, lib.IsAfter(lib), "goments are not after themselves")
}
func TestIsAfterYear(t *testing.T) {
scenario := getTestScenario("is_after", "year")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsAfter)
assert.False(t, lib.IsAfter(lib, "year"), "same goments are not after the same year")
}
func TestIsAfterMonth(t *testing.T) {
scenario := getTestScenario("is_after", "month")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsAfter)
assert.False(t, lib.IsAfter(lib, "month"), "same goments are not after the same month")
}
func TestIsAfterDay(t *testing.T) {
scenario := getTestScenario("is_after", "day")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsAfter)
assert.False(t, lib.IsAfter(lib, "day"), false, "same goments are not after the same day")
}
func TestIsAfterHour(t *testing.T) {
scenario := getTestScenario("is_after", "hour")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsAfter)
assert.False(t, lib.IsAfter(lib, "hour"), "same goments are not after the same hour")
}
func TestIsAfterMinute(t *testing.T) {
scenario := getTestScenario("is_after", "minute")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsAfter)
assert.False(t, lib.IsAfter(lib, "minute"), "same goments are not after the same minute")
}
func TestIsAfterSecond(t *testing.T) {
scenario := getTestScenario("is_after", "second")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsAfter)
assert.False(t, lib.IsAfter(lib, "second"), "same goments are not after the same second")
}
func TestIsSameOrBeforeNoUnits(t *testing.T) {
scenario := getTestScenario("is_same_or_before", "no_units")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrBefore)
assert.True(t, lib.IsSameOrBefore(lib), "goments are the same as themselves")
}
func TestIsSameOrBeforeDeref(t *testing.T) {
date := "2020-05-10"
lib := simpleString(date)
lib2 := *lib
lib3 := *lib
assert.True(t, lib2.IsSameOrBefore(lib3), "deref goments are the same as themselves")
}
func TestIsSameOrBeforeYear(t *testing.T) {
scenario := getTestScenario("is_same_or_before", "year")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrBefore)
assert.True(t, lib.IsSameOrBefore(lib, "year"), "same goments are in the same year")
}
func TestIsSameOrBeforeMonth(t *testing.T) {
scenario := getTestScenario("is_same_or_before", "month")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrBefore)
assert.True(t, lib.IsSameOrBefore(lib, "month"), "same goments are in the same month")
}
func TestIsSameOrBeforeDay(t *testing.T) {
scenario := getTestScenario("is_same_or_before", "day")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrBefore)
assert.True(t, lib.IsSameOrBefore(lib, "day"), "same goments are in the same day")
}
func TestIsSameOrBeforeHour(t *testing.T) {
scenario := getTestScenario("is_same_or_before", "hour")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrBefore)
assert.True(t, lib.IsSameOrBefore(lib, "hour"), "same goments are in the same hour")
}
func TestIsSameOrBeforeMinute(t *testing.T) {
scenario := getTestScenario("is_same_or_before", "minute")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrBefore)
assert.True(t, lib.IsSameOrBefore(lib, "minute"), "same goments are in the same minute")
}
func TestIsSameOrBeforeSecond(t *testing.T) {
scenario := getTestScenario("is_same_or_before", "second")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrBefore)
assert.True(t, lib.IsSameOrBefore(lib, "second"), "same goments are in the same second")
}
func TestIsSameOrAfterNoUnits(t *testing.T) {
scenario := getTestScenario("is_same_or_after", "no_units")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrAfter)
assert.True(t, lib.IsSameOrAfter(lib), "goments are the same as themselves")
}
func TestIsSameOrAfterDeref(t *testing.T) {
date := "2020-05-10"
lib := simpleString(date)
lib2 := *lib
lib3 := *lib
assert.True(t, lib2.IsSameOrAfter(lib3), "deref goments are the same as themselves")
}
func TestIsSameOrAfterYear(t *testing.T) {
scenario := getTestScenario("is_same_or_after", "year")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrAfter)
assert.True(t, lib.IsSameOrAfter(lib, "year"), "same goments are in the same year")
}
func TestIsSameOrAfterMonth(t *testing.T) {
scenario := getTestScenario("is_same_or_after", "month")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrAfter)
assert.True(t, lib.IsSameOrAfter(lib, "month"), "same goments are in the same month")
}
func TestIsSameOrAfterDay(t *testing.T) {
scenario := getTestScenario("is_same_or_after", "day")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrAfter)
assert.True(t, lib.IsSameOrAfter(lib, "day"), "same goments are in the same day")
}
func TestIsSameOrAfterHour(t *testing.T) {
scenario := getTestScenario("is_same_or_after", "hour")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrAfter)
assert.True(t, lib.IsSameOrAfter(lib, "hour"), "same goments are in the same hour")
}
func TestIsSameOrAfterMinute(t *testing.T) {
scenario := getTestScenario("is_same_or_after", "minute")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrAfter)
assert.True(t, lib.IsSameOrAfter(lib, "minute"), "same goments are in the same minute")
}
func TestIsSameOrAfterSecond(t *testing.T) {
scenario := getTestScenario("is_same_or_after", "second")
lib := simpleString(scenario.Date)
runTestsForScenario(t, scenario, lib.IsSameOrAfter)
assert.True(t, lib.IsSameOrAfter(lib, "second"), "same goments are in the same second")
}
func TestIsBetweenReturnsFalseNotEnoughArguments(t *testing.T) {
lib := simpleString("2010-10-11")
assert.False(t, lib.IsBetween(1))
}
func TestIsBetweenReturnsFalseInvalidFirstArgument(t *testing.T) {
lib := simpleString("2010-10-11")
assert.False(t, lib.IsBetween(1, "2010-11-11"))
}
func TestIsBetweenReturnsFalseInvalidSecondArgument(t *testing.T) {
lib := simpleString("2010-10-11")
assert.False(t, lib.IsBetween("2009-10-11", 2))
}
func TestIsBetweenNoUnits(t *testing.T) {
scenario := getTestScenario("is_between", "no_units")
lib := simpleString(scenario.Date)
runTestsForBetweenScenario(t, scenario, lib.IsBetween)
assert.False(t, lib.IsBetween(lib, lib), "goments are not between themselves")
}
func TestIsBetweenYear(t *testing.T) {
scenario := getTestScenario("is_between", "year")
lib := simpleString(scenario.Date)
runTestsForBetweenScenario(t, scenario, lib.IsBetween)
assert.False(t, lib.IsBetween(lib, lib, "year"), "same goments are not between the same year")
}
func TestIsBetweenMonth(t *testing.T) {
scenario := getTestScenario("is_between", "month")
lib := simpleString(scenario.Date)
runTestsForBetweenScenario(t, scenario, lib.IsBetween)
assert.False(t, lib.IsBetween(lib, lib, "month"), "same goments are not between the same month")
}
func TestIsBetweenDay(t *testing.T) {
scenario := getTestScenario("is_between", "day")
lib := simpleString(scenario.Date)
runTestsForBetweenScenario(t, scenario, lib.IsBetween)
assert.False(t, lib.IsBetween(lib, lib, "day"), "same goments are not between the same day")
}
func TestIsBetweenHour(t *testing.T) {
scenario := getTestScenario("is_between", "hour")
lib := simpleString(scenario.Date)
runTestsForBetweenScenario(t, scenario, lib.IsBetween)
assert.False(t, lib.IsBetween(lib, lib, "hour"), "same goments are not between the same hour")
}
func TestIsBetweenMinute(t *testing.T) {
scenario := getTestScenario("is_between", "minute")
lib := simpleString(scenario.Date)
runTestsForBetweenScenario(t, scenario, lib.IsBetween)
assert.False(t, lib.IsBetween(lib, lib, "minute"), "same goments are not between the same minute")
}
func TestIsBetweenSecond(t *testing.T) {
scenario := getTestScenario("is_between", "second")
lib := simpleString(scenario.Date)
runTestsForBetweenScenario(t, scenario, lib.IsBetween)
assert.False(t, lib.IsBetween(lib, lib, "second"), "same goments are not between the same second")
}
func TestIsBetweenNoUnitsInclusivity(t *testing.T) {
scenario := getTestScenario("is_between", "no_units_inclusivity")
lib := simpleString(scenario.Date)
runTestsForBetweenScenario(t, scenario, lib.IsBetween)
}
func TestIsBetweenSecondInclusivity(t *testing.T) {
scenario := getTestScenario("is_between", "second_inclusivity")
lib := simpleString(scenario.Date)
runTestsForBetweenScenario(t, scenario, lib.IsBetween)
}