forked from gorhill/cronexpr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cronexpr_test.go
1205 lines (1119 loc) · 37.6 KB
/
cronexpr_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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*!
* Copyright 2013 Raymond Hill
*
* Modifications 2020 - HashiCorp
*
* Project: github.com/gorhill/cronexpr
* File: cronexpr_test.go
* Version: 1.0
* License: pick the one which suits you best:
* GPL v3 see <https://www.gnu.org/licenses/gpl.html>
* APL v2 see <http://www.apache.org/licenses/LICENSE-2.0>
*
*/
package cronexpr
/******************************************************************************/
import (
"errors"
"fmt"
"strings"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
/******************************************************************************/
type crontimes struct {
from string
next string
}
type crontest struct {
expr string
layout string
times []crontimes
}
var crontests = []crontest{
// Seconds
{
"* * * * * * *",
"2006-01-02 15:04:05",
[]crontimes{
{"2013-01-01 00:00:00", "2013-01-01 00:00:01"},
{"2013-01-01 00:00:59", "2013-01-01 00:01:00"},
{"2013-01-01 00:59:59", "2013-01-01 01:00:00"},
{"2013-01-01 23:59:59", "2013-01-02 00:00:00"},
{"2013-02-28 23:59:59", "2013-03-01 00:00:00"},
{"2016-02-28 23:59:59", "2016-02-29 00:00:00"},
{"2012-12-31 23:59:59", "2013-01-01 00:00:00"},
},
},
// every 5 Second
{
"*/5 * * * * * *",
"2006-01-02 15:04:05",
[]crontimes{
{"2013-01-01 00:00:00", "2013-01-01 00:00:05"},
{"2013-01-01 00:00:59", "2013-01-01 00:01:00"},
{"2013-01-01 00:59:59", "2013-01-01 01:00:00"},
{"2013-01-01 23:59:59", "2013-01-02 00:00:00"},
{"2013-02-28 23:59:59", "2013-03-01 00:00:00"},
{"2016-02-28 23:59:59", "2016-02-29 00:00:00"},
{"2012-12-31 23:59:59", "2013-01-01 00:00:00"},
},
},
// Minutes
{
"* * * * *",
"2006-01-02 15:04:05",
[]crontimes{
{"2013-01-01 00:00:00", "2013-01-01 00:01:00"},
{"2013-01-01 00:00:59", "2013-01-01 00:01:00"},
{"2013-01-01 00:59:00", "2013-01-01 01:00:00"},
{"2013-01-01 23:59:00", "2013-01-02 00:00:00"},
{"2013-02-28 23:59:00", "2013-03-01 00:00:00"},
{"2016-02-28 23:59:00", "2016-02-29 00:00:00"},
{"2012-12-31 23:59:00", "2013-01-01 00:00:00"},
},
},
// Minutes with interval
{
"17-43/5 * * * *",
"2006-01-02 15:04:05",
[]crontimes{
{"2013-01-01 00:00:00", "2013-01-01 00:17:00"},
{"2013-01-01 00:16:59", "2013-01-01 00:17:00"},
{"2013-01-01 00:30:00", "2013-01-01 00:32:00"},
{"2013-01-01 00:50:00", "2013-01-01 01:17:00"},
{"2013-01-01 23:50:00", "2013-01-02 00:17:00"},
{"2013-02-28 23:50:00", "2013-03-01 00:17:00"},
{"2016-02-28 23:50:00", "2016-02-29 00:17:00"},
{"2012-12-31 23:50:00", "2013-01-01 00:17:00"},
},
},
// Minutes interval, list
{
"15-30/4,55 * * * *",
"2006-01-02 15:04:05",
[]crontimes{
{"2013-01-01 00:00:00", "2013-01-01 00:15:00"},
{"2013-01-01 00:16:00", "2013-01-01 00:19:00"},
{"2013-01-01 00:30:00", "2013-01-01 00:55:00"},
{"2013-01-01 00:55:00", "2013-01-01 01:15:00"},
{"2013-01-01 23:55:00", "2013-01-02 00:15:00"},
{"2013-02-28 23:55:00", "2013-03-01 00:15:00"},
{"2016-02-28 23:55:00", "2016-02-29 00:15:00"},
{"2012-12-31 23:54:00", "2012-12-31 23:55:00"},
{"2012-12-31 23:55:00", "2013-01-01 00:15:00"},
},
},
// Days of week
{
"0 0 * * MON",
"Mon 2006-01-02 15:04",
[]crontimes{
{"2013-01-01 00:00:00", "Mon 2013-01-07 00:00"},
{"2013-01-28 00:00:00", "Mon 2013-02-04 00:00"},
{"2013-12-30 00:30:00", "Mon 2014-01-06 00:00"},
},
},
{
"0 0 * * friday",
"Mon 2006-01-02 15:04",
[]crontimes{
{"2013-01-01 00:00:00", "Fri 2013-01-04 00:00"},
{"2013-01-28 00:00:00", "Fri 2013-02-01 00:00"},
{"2013-12-30 00:30:00", "Fri 2014-01-03 00:00"},
},
},
{
"0 0 * * 6,7",
"Mon 2006-01-02 15:04",
[]crontimes{
{"2013-01-01 00:00:00", "Sat 2013-01-05 00:00"},
{"2013-01-28 00:00:00", "Sat 2013-02-02 00:00"},
{"2013-12-30 00:30:00", "Sat 2014-01-04 00:00"},
},
},
{
"0 0 * * 5-7",
"Mon 2006-01-02 15:04",
[]crontimes{
{"2013-01-01 00:00:00", "Fri 2013-01-04 00:00"},
{"2013-01-28 00:00:00", "Fri 2013-02-01 00:00"},
{"2013-12-30 00:30:00", "Fri 2014-01-03 00:00"},
},
},
// Specific days of week
{
"0 0 * * 6#5",
"Mon 2006-01-02 15:04",
[]crontimes{
{"2013-09-02 00:00:00", "Sat 2013-11-30 00:00"},
},
},
// Work day of month
{
"0 0 14W * *",
"Mon 2006-01-02 15:04",
[]crontimes{
{"2013-03-31 00:00:00", "Mon 2013-04-15 00:00"},
{"2013-08-31 00:00:00", "Fri 2013-09-13 00:00"},
},
},
// Work day of month -- end of month
{
"0 0 30W * *",
"Mon 2006-01-02 15:04",
[]crontimes{
{"2013-03-02 00:00:00", "Fri 2013-03-29 00:00"},
{"2013-06-02 00:00:00", "Fri 2013-06-28 00:00"},
{"2013-09-02 00:00:00", "Mon 2013-09-30 00:00"},
{"2013-11-02 00:00:00", "Fri 2013-11-29 00:00"},
},
},
// Last day of month
{
"0 0 L * *",
"Mon 2006-01-02 15:04",
[]crontimes{
{"2013-09-02 00:00:00", "Mon 2013-09-30 00:00"},
{"2014-01-01 00:00:00", "Fri 2014-01-31 00:00"},
{"2014-02-01 00:00:00", "Fri 2014-02-28 00:00"},
{"2016-02-15 00:00:00", "Mon 2016-02-29 00:00"},
},
},
// Last work day of month
{
"0 0 LW * *",
"Mon 2006-01-02 15:04",
[]crontimes{
{"2013-09-02 00:00:00", "Mon 2013-09-30 00:00"},
{"2013-11-02 00:00:00", "Fri 2013-11-29 00:00"},
{"2014-08-15 00:00:00", "Fri 2014-08-29 00:00"},
},
},
// Zero padded months
{
"0 0 * 04 * *",
"Mon 2006-01-02 15:04",
[]crontimes{
{"2013-09-02 00:00:00", "Tue 2014-04-01 00:00"},
{"2014-04-03 03:00:00", "Fri 2014-04-04 00:00"},
{"2014-08-15 00:00:00", "Wed 2015-04-01 00:00"},
},
},
// TODO: more tests
}
func TestExpressions(t *testing.T) {
for _, test := range crontests {
for _, times := range test.times {
from, _ := time.Parse("2006-01-02 15:04:05", times.from)
expr, err := Parse(test.expr)
if err != nil {
t.Errorf(`Parse("%s") returned "%s"`, test.expr, err.Error())
}
next := expr.Next(from)
nextstr := next.Format(test.layout)
if nextstr != times.next {
t.Errorf(`("%s").Next("%s") = "%s", got "%s"`, test.expr, times.from, times.next, nextstr)
}
}
}
}
/******************************************************************************/
func TestZero(t *testing.T) {
from, _ := time.Parse("2006-01-02", "2013-08-31")
next := MustParse("* * * * * 1980").Next(from)
if next.IsZero() == false {
t.Error(`("* * * * * 1980").Next("2013-08-31").IsZero() returned 'false', expected 'true'`)
}
next = MustParse("* * * * * 2050").Next(from)
if next.IsZero() == true {
t.Error(`("* * * * * 2050").Next("2013-08-31").IsZero() returned 'true', expected 'false'`)
}
next = MustParse("* * * * * 2099").Next(time.Time{})
if next.IsZero() == false {
t.Error(`("* * * * * 2014").Next(time.Time{}).IsZero() returned 'true', expected 'false'`)
}
}
/******************************************************************************/
type crontestWithError struct {
crontest
err error
}
func TestInvalidExpr(t *testing.T) {
var tests = []crontestWithError{
{
crontest: crontest{
expr: "20-10 * * * *",
},
err: errors.New("beginning of range (20) beyond end of range (10): 20-10"),
},
{
crontest: crontest{
expr: "1-60 * * * *",
},
err: errors.New("syntax error in minute field: '1-60'"),
},
{
crontest: crontest{
expr: "* 10-5 * * *",
},
err: errors.New("beginning of range (10) beyond end of range (5): 10-5"),
},
{
crontest: crontest{
expr: "* 10-24 * * *",
},
err: errors.New("syntax error in hour field: '10-24'"),
},
{
crontest: crontest{
expr: "* * 0-10 * *",
},
err: errors.New("syntax error in day-of-month field: '0-10'"),
},
{
crontest: crontest{
expr: "* * 31-10 * *",
},
err: errors.New("beginning of range (31) beyond end of range (10): 31-10"),
},
{
crontest: crontest{
expr: "* * * 0-11 *",
},
err: errors.New("syntax error in month field: '0-11'"),
},
{
crontest: crontest{
expr: "* * * 11-5 *",
},
err: errors.New("beginning of range (11) beyond end of range (5): 11-5"),
},
{
crontest: crontest{
expr: "* * * * 1-8",
},
err: errors.New("syntax error in day-of-week field: '1-8'"),
},
{
crontest: crontest{
expr: "* * * * 5-2",
},
err: errors.New("beginning of range (5) beyond end of range (2): 5-2"),
},
}
for _, test := range tests {
{
_, err := Parse(test.expr)
if assert.Error(t, err) {
assert.Equal(t, test.err, err)
}
}
}
}
/******************************************************************************/
func TestNextN(t *testing.T) {
expected := []string{
"Sat, 30 Nov 2013 00:00:00",
"Sat, 29 Mar 2014 00:00:00",
"Sat, 31 May 2014 00:00:00",
"Sat, 30 Aug 2014 00:00:00",
"Sat, 29 Nov 2014 00:00:00",
}
from, _ := time.Parse("2006-01-02 15:04:05", "2013-09-02 08:44:30")
result := MustParse("0 0 * * 6#5").NextN(from, uint(len(expected)))
if len(result) != len(expected) {
t.Errorf(`MustParse("0 0 * * 6#5").NextN("2013-09-02 08:44:30", 5):\n"`)
t.Errorf(` Expected %d returned time values but got %d instead`, len(expected), len(result))
}
for i, next := range result {
nextStr := next.Format("Mon, 2 Jan 2006 15:04:15")
if nextStr != expected[i] {
t.Errorf(`MustParse("0 0 * * 6#5").NextN("2013-09-02 08:44:30", 5):\n"`)
t.Errorf(` result[%d]: expected "%s" but got "%s"`, i, expected[i], nextStr)
}
}
}
func TestNextN_every5min(t *testing.T) {
expected := []string{
"Mon, 2 Sep 2013 08:45:00",
"Mon, 2 Sep 2013 08:50:00",
"Mon, 2 Sep 2013 08:55:00",
"Mon, 2 Sep 2013 09:00:00",
"Mon, 2 Sep 2013 09:05:00",
}
from, _ := time.Parse("2006-01-02 15:04:05", "2013-09-02 08:44:32")
result := MustParse("*/5 * * * *").NextN(from, uint(len(expected)))
if len(result) != len(expected) {
t.Errorf(`MustParse("*/5 * * * *").NextN("2013-09-02 08:44:30", 5):\n"`)
t.Errorf(` Expected %d returned time values but got %d instead`, len(expected), len(result))
}
for i, next := range result {
nextStr := next.Format("Mon, 2 Jan 2006 15:04:05")
if nextStr != expected[i] {
t.Errorf(`MustParse("*/5 * * * *").NextN("2013-09-02 08:44:30", 5):\n"`)
t.Errorf(` result[%d]: expected "%s" but got "%s"`, i, expected[i], nextStr)
}
}
}
func TestPeriodicConfig_DSTChange_Transitions(t *testing.T) {
locName := "America/Los_Angeles"
loc, err := time.LoadLocation(locName)
require.NoError(t, err)
cases := []struct {
name string
pattern string
initTime time.Time
expected []time.Time
}{
{
"normal time",
"0 2 * * * 2019",
time.Date(2019, time.February, 7, 1, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.February, 7, 2, 0, 0, 0, loc),
time.Date(2019, time.February, 8, 2, 0, 0, 0, loc),
time.Date(2019, time.February, 9, 2, 0, 0, 0, loc),
},
},
{
"Spring forward but not in switch time",
"0 4 * * * 2019",
time.Date(2019, time.March, 9, 1, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.March, 9, 4, 0, 0, 0, loc),
time.Date(2019, time.March, 10, 4, 0, 0, 0, loc),
time.Date(2019, time.March, 11, 4, 0, 0, 0, loc),
},
},
{
"Spring forward at a skipped time odd",
"2 2 * * * 2019",
time.Date(2019, time.March, 9, 1, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.March, 9, 2, 2, 0, 0, loc),
// no time in March 10!
time.Date(2019, time.March, 11, 2, 2, 0, 0, loc),
time.Date(2019, time.March, 12, 2, 2, 0, 0, loc),
},
},
{
"Spring forward at a skipped time",
"1 2 * * * 2019",
time.Date(2019, time.March, 9, 1, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.March, 9, 2, 1, 0, 0, loc),
// no time in March 8!
time.Date(2019, time.March, 11, 2, 1, 0, 0, loc),
time.Date(2019, time.March, 12, 2, 1, 0, 0, loc),
},
},
{
"Spring forward at a skipped time boundary",
"0 2 * * * 2019",
time.Date(2019, time.March, 9, 1, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.March, 9, 2, 0, 0, 0, loc),
// no time in March 8!
time.Date(2019, time.March, 11, 2, 0, 0, 0, loc),
time.Date(2019, time.March, 12, 2, 0, 0, 0, loc),
},
},
{
"Spring forward at a boundary of repeating time",
"0 1 * * * 2019",
time.Date(2019, time.March, 9, 0, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.March, 9, 1, 0, 0, 0, loc),
time.Date(2019, time.March, 10, 0, 0, 0, 0, loc).Add(1 * time.Hour),
time.Date(2019, time.March, 11, 1, 0, 0, 0, loc),
time.Date(2019, time.March, 12, 1, 0, 0, 0, loc),
},
},
{
"Fall back: before transition",
"30 0 * * * 2019",
time.Date(2019, time.November, 3, 0, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.November, 3, 0, 30, 0, 0, loc),
time.Date(2019, time.November, 4, 0, 30, 0, 0, loc),
time.Date(2019, time.November, 5, 0, 30, 0, 0, loc),
time.Date(2019, time.November, 6, 0, 30, 0, 0, loc),
},
},
{
"Fall back: after transition",
"30 3 * * * 2019",
time.Date(2019, time.November, 3, 0, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.November, 3, 3, 30, 0, 0, loc),
time.Date(2019, time.November, 4, 3, 30, 0, 0, loc),
time.Date(2019, time.November, 5, 3, 30, 0, 0, loc),
time.Date(2019, time.November, 6, 3, 30, 0, 0, loc),
},
},
{
"Fall back: after transition starting in repeated span before",
"30 3 * * * 2019",
time.Date(2019, time.November, 3, 0, 10, 0, 0, loc).Add(1 * time.Hour),
[]time.Time{
time.Date(2019, time.November, 3, 3, 30, 0, 0, loc),
time.Date(2019, time.November, 4, 3, 30, 0, 0, loc),
time.Date(2019, time.November, 5, 3, 30, 0, 0, loc),
time.Date(2019, time.November, 6, 3, 30, 0, 0, loc),
},
},
{
"Fall back: after transition starting in repeated span after",
"30 3 * * * 2019",
time.Date(2019, time.November, 3, 0, 10, 0, 0, loc).Add(2 * time.Hour),
[]time.Time{
time.Date(2019, time.November, 3, 3, 30, 0, 0, loc),
time.Date(2019, time.November, 4, 3, 30, 0, 0, loc),
time.Date(2019, time.November, 5, 3, 30, 0, 0, loc),
time.Date(2019, time.November, 6, 3, 30, 0, 0, loc),
},
},
{
"Fall back: in repeated region",
"30 1 * * * 2019",
time.Date(2019, time.November, 3, 0, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.November, 3, 0, 30, 0, 0, loc).Add(1 * time.Hour),
time.Date(2019, time.November, 3, 0, 30, 0, 0, loc).Add(2 * time.Hour),
time.Date(2019, time.November, 4, 1, 30, 0, 0, loc),
time.Date(2019, time.November, 5, 1, 30, 0, 0, loc),
time.Date(2019, time.November, 6, 1, 30, 0, 0, loc),
},
},
{
"Fall back: in repeated region boundary",
"0 1 * * * 2019",
time.Date(2019, time.November, 3, 0, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.November, 3, 0, 0, 0, 0, loc).Add(1 * time.Hour),
time.Date(2019, time.November, 3, 0, 0, 0, 0, loc).Add(2 * time.Hour),
time.Date(2019, time.November, 4, 1, 0, 0, 0, loc),
time.Date(2019, time.November, 5, 1, 0, 0, 0, loc),
time.Date(2019, time.November, 6, 1, 0, 0, 0, loc),
},
},
{
"Fall back: in repeated region boundary 2",
"0 2 * * * 2019",
time.Date(2019, time.November, 3, 0, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.November, 3, 0, 0, 0, 0, loc).Add(3 * time.Hour),
time.Date(2019, time.November, 4, 2, 0, 0, 0, loc),
time.Date(2019, time.November, 5, 2, 0, 0, 0, loc),
time.Date(2019, time.November, 6, 2, 0, 0, 0, loc),
},
},
{
"Fall back: in repeated region, starting from within region",
"30 1 * * * 2019",
time.Date(2019, time.November, 3, 0, 40, 0, 0, loc).Add(1 * time.Hour),
[]time.Time{
time.Date(2019, time.November, 3, 0, 30, 0, 0, loc).Add(2 * time.Hour),
time.Date(2019, time.November, 4, 1, 30, 0, 0, loc),
time.Date(2019, time.November, 5, 1, 30, 0, 0, loc),
time.Date(2019, time.November, 6, 1, 30, 0, 0, loc),
},
},
{
"Fall back: in repeated region, starting from within region 2",
"30 1 * * * 2019",
time.Date(2019, time.November, 3, 0, 40, 0, 0, loc).Add(2 * time.Hour),
[]time.Time{
time.Date(2019, time.November, 4, 1, 30, 0, 0, loc),
time.Date(2019, time.November, 5, 1, 30, 0, 0, loc),
time.Date(2019, time.November, 6, 1, 30, 0, 0, loc),
},
},
{
"Fall back: wildcard",
"30 * * * * 2019",
time.Date(2019, time.November, 3, 0, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.November, 3, 0, 30, 0, 0, loc),
time.Date(2019, time.November, 3, 0, 30, 0, 0, loc).Add(1 * time.Hour),
time.Date(2019, time.November, 3, 0, 30, 0, 0, loc).Add(2 * time.Hour),
time.Date(2019, time.November, 3, 2, 30, 0, 0, loc),
},
},
}
for _, c := range cases {
t.Run(c.name, func(t *testing.T) {
expr := MustParse(c.pattern)
starting := c.initTime
for _, next := range c.expected {
n := expr.Next(starting)
if next != n {
t.Fatalf("next(%v) = %v not %v", starting, next, n)
}
starting = next
}
})
}
}
func TestPeriodicConfig_DSTChange_Transitions_LordHowe(t *testing.T) {
locName := "Australia/Lord_Howe"
loc, err := time.LoadLocation(locName)
require.NoError(t, err)
cases := []struct {
name string
pattern string
initTime time.Time
expected []time.Time
}{
{
"normal time",
"0 2 * * * 2019",
time.Date(2019, time.February, 7, 1, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.February, 7, 2, 0, 0, 0, loc),
time.Date(2019, time.February, 8, 2, 0, 0, 0, loc),
time.Date(2019, time.February, 9, 2, 0, 0, 0, loc),
},
},
{
"backward: non repeated portion of the hour",
"3 1 * * * 2019",
time.Date(2019, time.April, 6, 0, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.April, 6, 1, 3, 0, 0, loc),
time.Date(2019, time.April, 7, 1, 3, 0, 0, loc),
time.Date(2019, time.April, 8, 1, 3, 0, 0, loc),
time.Date(2019, time.April, 9, 1, 3, 0, 0, loc),
},
},
{
"backward: repeated portion of the hour",
"31 1 * * * 2019",
time.Date(2019, time.April, 6, 0, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.April, 6, 1, 31, 0, 0, loc),
time.Date(2019, time.April, 7, 0, 31, 0, 0, loc).Add(60 * time.Minute),
time.Date(2019, time.April, 7, 0, 31, 0, 0, loc).Add(90 * time.Minute),
time.Date(2019, time.April, 8, 1, 31, 0, 0, loc),
time.Date(2019, time.April, 9, 1, 31, 0, 0, loc),
},
},
{
"forward: skipped portion of the hour",
"3 2 * * * 2019",
time.Date(2019, time.October, 5, 0, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.October, 5, 2, 3, 0, 0, loc),
// no Oct 6
time.Date(2019, time.October, 7, 2, 3, 0, 0, loc),
time.Date(2019, time.October, 8, 2, 3, 0, 0, loc),
time.Date(2019, time.October, 9, 2, 3, 0, 0, loc),
},
},
{
"forward: non-skipped portion of the hour",
"31 2 * * * 2019",
time.Date(2019, time.October, 5, 0, 0, 0, 0, loc),
[]time.Time{
time.Date(2019, time.October, 5, 2, 31, 0, 0, loc),
// no Oct 6
time.Date(2019, time.October, 7, 2, 31, 0, 0, loc),
time.Date(2019, time.October, 8, 2, 31, 0, 0, loc),
time.Date(2019, time.October, 9, 2, 31, 0, 0, loc),
},
},
}
for _, c := range cases {
t.Run(c.name, func(t *testing.T) {
expr := MustParse(c.pattern)
starting := c.initTime
for _, next := range c.expected {
n := expr.Next(starting)
if next != n {
t.Fatalf("next(%v) = %v not %v", starting, next, n)
}
starting = next
}
})
}
}
func TestNext_DaylightSaving_Property(t *testing.T) {
locName := "America/Los_Angeles"
loc, err := time.LoadLocation(locName)
if err != nil {
t.Fatalf("failed to get location: %v", err)
}
cronExprs := []string{
"* * * * *",
"0 2 * * *",
"* 1 * * *",
}
times := []time.Time{
// spring forward
time.Date(2019, time.March, 11, 0, 0, 0, 0, loc),
time.Date(2019, time.March, 10, 0, 0, 0, 0, loc),
time.Date(2019, time.March, 11, 0, 0, 0, 0, loc),
// leap backwards
time.Date(2019, time.November, 4, 0, 0, 0, 0, loc),
time.Date(2019, time.November, 5, 0, 0, 0, 0, loc),
time.Date(2019, time.November, 6, 0, 0, 0, 0, loc),
}
testSpan := 4 * time.Hour
testCase := func(t *testing.T, cronExpr string, init time.Time) {
cron := MustParse(cronExpr)
prevNext := init
for start := init; start.Before(init.Add(testSpan)); start = start.Add(1 * time.Minute) {
next := cron.Next(start)
if !next.After(start) {
t.Fatalf("next(%v) = %v is not after start time", start, next)
}
if next.Before(prevNext) {
t.Fatalf("next(%v) = %v reverted back in time from %v", start, next, prevNext)
}
if strings.HasPrefix(cronExpr, "* * ") {
if next.Sub(start) != time.Minute {
t.Fatalf("next(%v) = %v should be the next minute", start, next)
}
}
prevNext = next
}
}
for _, cron := range cronExprs {
for _, startTime := range times {
t.Run(fmt.Sprintf("%v: %v", cron, startTime), func(t *testing.T) {
testCase(t, cron, startTime)
})
}
}
}
func TestNext_DaylightSaving_Property_LordHowe(t *testing.T) {
// Lord Howe, Australia is at GMT+1100 April-October and GMT+1030 otherwise.
//
// On April 7, 2019, at when clock approches 2am, the clock
// transitions to 1.30am.
//
// On October 6, when the clock approaches 2am, the clock transitions
// to 2.30am.
locName := "Australia/Lord_Howe"
loc, err := time.LoadLocation(locName)
if err != nil {
t.Fatalf("failed to get location: %v", err)
}
cronExprs := []string{
"* * * * *",
"0 2 * * *",
"* 1 * * *",
"35 1 * * *",
"5 2 * * *",
}
times := []time.Time{
// spring forward
time.Date(2019, time.April, 6, 0, 0, 0, 0, loc),
time.Date(2019, time.April, 7, 0, 0, 0, 0, loc),
time.Date(2019, time.April, 8, 0, 0, 0, 0, loc),
// leap backwards
time.Date(2019, time.October, 5, 0, 0, 0, 0, loc),
time.Date(2019, time.October, 6, 0, 0, 0, 0, loc),
time.Date(2019, time.October, 7, 0, 0, 0, 0, loc),
}
testSpan := 4 * time.Hour
testCase := func(t *testing.T, cronExpr string, init time.Time) {
cron := MustParse(cronExpr)
prevNext := init
for start := init; start.Before(init.Add(testSpan)); start = start.Add(1 * time.Minute) {
next := cron.Next(start)
if !next.After(start) {
t.Fatalf("next(%v) = %v is not after start time", start, next)
}
if next.Before(prevNext) {
t.Fatalf("next(%v) = %v reverted back in time from %v", start, next, prevNext)
}
if strings.HasPrefix(cronExpr, "* * ") {
if next.Sub(start) != time.Minute {
t.Fatalf("next(%v) = %v should be the next minute", start, next)
}
}
prevNext = next
}
}
for _, cron := range cronExprs {
for _, startTime := range times {
t.Run(fmt.Sprintf("%v: %v", cron, startTime), func(t *testing.T) {
testCase(t, cron, startTime)
})
}
}
}
func TestNext_DaylightSaving_Property_Brazil(t *testing.T) {
// Until 2018, Brazil/Sao Paulo and some South American countries used
// to transition for daylight savings at midnight.
//
// When the clock approaches 2018-11-04 midnight, the clock transitions to 1am.
locName := "America/Sao_Paulo"
loc, err := time.LoadLocation(locName)
if err != nil {
t.Fatalf("failed to get location: %v", err)
}
cronExprs := []string{
"* * * * *",
"0 2 * * *",
"* 1 * * *",
"5 1 * * *",
"5 23 * * *",
}
times := []time.Time{
// spring forward
time.Date(2018, time.February, 16, 22, 0, 0, 0, loc),
time.Date(2018, time.February, 17, 22, 0, 0, 0, loc),
time.Date(2018, time.February, 18, 22, 0, 0, 0, loc),
// leap backwards
time.Date(2018, time.November, 3, 23, 0, 0, 0, loc),
time.Date(2018, time.November, 3, 23, 0, 0, 0, loc),
time.Date(2018, time.November, 3, 23, 0, 0, 0, loc),
}
testSpan := 4 * time.Hour
testCase := func(t *testing.T, cronExpr string, init time.Time) {
cron := MustParse(cronExpr)
prevNext := init
for start := init; start.Before(init.Add(testSpan)); start = start.Add(1 * time.Minute) {
next := cron.Next(start)
if !next.After(start) {
t.Fatalf("next(%v) = %v is not after start time", start, next)
}
if next.Before(prevNext) {
t.Fatalf("next(%v) = %v reverted back in time from %v", start, next, prevNext)
}
if strings.HasPrefix(cronExpr, "* * ") {
if next.Sub(start) != time.Minute {
t.Fatalf("next(%v) = %v should be the next minute", start, next)
}
}
prevNext = next
}
}
for _, cron := range cronExprs {
for _, startTime := range times {
t.Run(fmt.Sprintf("%v: %v", cron, startTime), func(t *testing.T) {
testCase(t, cron, startTime)
})
}
}
}
func TestNext_DaylightSaving_AdditionalTests(t *testing.T) {
var (
locationSaoPaulo, _ = time.LoadLocation("America/Sao_Paulo")
locationNewYork, _ = time.LoadLocation("America/New_York")
locationSantiago, _ = time.LoadLocation("America/Santiago")
)
type crontest struct {
name string
expr string
layout string
times []crontimes
loc *time.Location
}
crontests := []crontest{
{
name: "Daylight Savings changeover for America/Sao Paulo, run hourly",
expr: "0 * ? * *",
layout: time.RFC3339,
loc: locationSaoPaulo,
times: []crontimes{
// Move back 1 hour on Sunday, 18 February, 00:00 from UTC-2 to UTC-3
{"2018-02-17T22:12:00-02:00", "2018-02-17T23:00:00-02:00"},
{"2018-02-17T23:12:00-02:00", "2018-02-17T23:00:00-03:00"}, // should still run here
{"2018-02-17T23:12:00-03:00", "2018-02-18T00:00:00-03:00"},
{"2018-02-18T00:12:00-03:00", "2018-02-18T01:00:00-03:00"},
// Move forward 1 hour on Sunday, 4 November, 00:00 from UTC-3 to UTC-2
{"2018-11-03T22:12:00-03:00", "2018-11-03T23:00:00-03:00"},
{"2018-11-03T23:12:00-03:00", "2018-11-04T01:00:00-02:00"},
{"2018-11-04T01:12:00-02:00", "2018-11-04T02:00:00-02:00"},
},
},
{
name: "Daylight Savings changeover for America/Sao Paulo, run hourly with minute/second offset",
expr: "50 10 * ? * * *",
layout: time.RFC3339,
loc: locationSaoPaulo,
times: []crontimes{
// Move back 1 hour on Sunday, 18 February 2018, 00:00 from UTC-2 to UTC-3
{"2018-02-17T22:12:00-02:00", "2018-02-17T23:10:50-02:00"},
{"2018-02-17T23:12:00-02:00", "2018-02-17T23:10:50-03:00"}, // should still run here
{"2018-02-17T23:59:59-02:00", "2018-02-17T23:10:50-03:00"},
{"2018-02-17T23:10:50-03:00", "2018-02-18T00:10:50-03:00"},
{"2018-02-17T23:12:00-03:00", "2018-02-18T00:10:50-03:00"},
{"2018-02-18T00:12:00-03:00", "2018-02-18T01:10:50-03:00"},
// Move forward 1 hour on Sunday, 4 November 2018, 00:00 from UTC-3 to UTC-2
{"2018-11-03T22:12:00-03:00", "2018-11-03T23:10:50-03:00"},
{"2018-11-03T23:12:00-03:00", "2018-11-04T01:10:50-02:00"},
{"2018-11-03T23:59:59-03:00", "2018-11-04T01:10:50-02:00"},
{"2018-11-04T01:10:50-02:00", "2018-11-04T02:10:50-02:00"},
{"2018-11-04T01:12:00-02:00", "2018-11-04T02:10:50-02:00"},
},
},
{
name: "Daylight Savings changeover for America/Sao Paulo, run every 15 mins with minute offset",
expr: "0 10/15 * ? * * *",
layout: time.RFC3339,
loc: locationSaoPaulo,
times: []crontimes{
// Move back 1 hour on Sunday, 18 February 2018, 00:00 from UTC-2 to UTC-3
{"2018-02-17T23:00:00-02:00", "2018-02-17T23:10:00-02:00"},
{"2018-02-17T23:10:00-02:00", "2018-02-17T23:25:00-02:00"},
{"2018-02-17T23:25:00-02:00", "2018-02-17T23:40:00-02:00"},
{"2018-02-17T23:40:00-02:00", "2018-02-17T23:55:00-02:00"},
{"2018-02-17T23:55:00-02:00", "2018-02-17T23:10:00-03:00"},
{"2018-02-17T23:10:00-03:00", "2018-02-17T23:25:00-03:00"},
{"2018-02-17T23:55:00-03:00", "2018-02-18T00:10:00-03:00"},
{"2018-02-18T00:55:00-03:00", "2018-02-18T01:10:00-03:00"},
// Move forward 1 hour on Sunday, 4 November 2018, 00:00 from UTC-3 to UTC-2
{"2018-11-03T23:00:00-03:00", "2018-11-03T23:10:00-03:00"},
{"2018-11-03T23:10:00-03:00", "2018-11-03T23:25:00-03:00"},
{"2018-11-03T23:25:00-03:00", "2018-11-03T23:40:00-03:00"},
{"2018-11-03T23:40:00-03:00", "2018-11-03T23:55:00-03:00"},
{"2018-11-03T23:55:00-03:00", "2018-11-04T01:10:00-02:00"},
{"2018-11-04T01:10:00-02:00", "2018-11-04T01:25:00-02:00"},
{"2018-11-04T01:55:00-02:00", "2018-11-04T02:10:00-02:00"},
},
},
{
name: "Daylight Savings changeover for America/Sao Paulo, run every 15 sec",
expr: "0/15 10 * ? * * *",
layout: time.RFC3339,
loc: locationSaoPaulo,
times: []crontimes{
// Move back 1 hour on Sunday, 18 February 2018, 00:00 from UTC-2 to UTC-3
{"2018-02-17T23:00:00-02:00", "2018-02-17T23:10:00-02:00"},
{"2018-02-17T23:10:00-02:00", "2018-02-17T23:10:15-02:00"},
{"2018-02-17T23:10:15-02:00", "2018-02-17T23:10:30-02:00"},
{"2018-02-17T23:10:30-02:00", "2018-02-17T23:10:45-02:00"},
{"2018-02-17T23:10:45-02:00", "2018-02-17T23:10:00-03:00"},
{"2018-02-17T23:10:45-03:00", "2018-02-18T00:10:00-03:00"},
{"2018-02-18T00:10:45-03:00", "2018-02-18T01:10:00-03:00"},
// Move forward 1 hour on Sunday, 4 November 2018, 00:00 from UTC-3 to UTC-2
{"2018-11-03T23:00:00-03:00", "2018-11-03T23:10:00-03:00"},
{"2018-11-03T23:10:00-03:00", "2018-11-03T23:10:15-03:00"},
{"2018-11-03T23:10:15-03:00", "2018-11-03T23:10:30-03:00"},
{"2018-11-03T23:10:30-03:00", "2018-11-03T23:10:45-03:00"},
{"2018-11-03T23:10:45-03:00", "2018-11-04T01:10:00-02:00"},
{"2018-11-04T01:10:45-02:00", "2018-11-04T02:10:00-02:00"},
},
},
{
name: "Daylight Savings changeover for America/Santiago, run daily",
expr: "0 0 ? * *",
layout: time.RFC3339,
loc: locationSantiago,
times: []crontimes{
// Move forward 1 hour on Sunday, 5 September 2021, 00:00 from UTC-4 to UTC-3
{"2021-09-03T00:00:00-04:00", "2021-09-04T00:00:00-04:00"},
{"2021-09-04T00:00:00-04:00", "2021-09-06T00:00:00-03:00"}, // skips 1 day
{"2021-09-05T01:00:00-03:00", "2021-09-06T00:00:00-03:00"},
{"2021-09-06T00:00:00-03:00", "2021-09-07T00:00:00-03:00"},
// Move backward 1 hour on Sunday, 3 April 2022, 00:00 from UTC-3 to UTC-4
// Assumes information from https://www.timeanddate.com/time/change/chile/santiago?year=2022
{"2022-03-31T00:00:00-03:00", "2022-04-01T00:00:00-03:00"},
{"2022-04-01T00:00:00-03:00", "2022-04-02T00:00:00-03:00"},
{"2022-04-02T00:00:00-03:00", "2022-04-03T00:00:00-04:00"}, // run later by 1h
{"2022-04-02T23:59:59-03:00", "2022-04-03T00:00:00-04:00"},
{"2022-04-02T23:00:00-04:00", "2022-04-03T00:00:00-04:00"},
{"2022-04-02T23:59:59-04:00", "2022-04-03T00:00:00-04:00"},