forked from gorhill/cronexpr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cronexpr_format_test.go
348 lines (344 loc) · 8.55 KB
/
cronexpr_format_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
package cronexpr
import (
"testing"
"time"
)
func TestFormattedExpressionsParsing(t *testing.T) {
tests := []struct {
name string
format CronFormat
expr string
options []ParseOption
wantErr bool
}{
{
name: "parsing day of week with CronFormatStandard",
expr: "0 0 11 ? * 2 *",
format: CronFormatStandard,
},
{
name: "parsing day of week with CronFormatQuartz",
expr: "0 0 11 ? * 2 *",
format: CronFormatQuartz,
},
{
name: "invalid day of week in CronFormatQuartz",
expr: "0 0 11 ? * 0 *",
format: CronFormatQuartz,
wantErr: true,
},
{
name: "parsing day of week span with CronFormatQuartz",
expr: "0 0 11 ? * 2-3 *",
format: CronFormatQuartz,
},
{
name: "parsing any day of week with CronFormatQuartz",
expr: "0 0 11 ? * * *",
format: CronFormatQuartz,
},
{
name: "parsing invalid day of week span with CronFormatQuartz",
expr: "0 0 11 ? * 1- *",
format: CronFormatQuartz,
wantErr: true,
},
{
name: "parsing /X format",
expr: "0 /5 * ? * * *",
format: CronFormatQuartz,
},
{
name: "parsing ** format",
expr: "0 */5 ** ? * * *",
format: CronFormatQuartz,
},
{
name: "parsing ?? format",
expr: "0 */5 * ?? * * *",
format: CronFormatQuartz,
},
{
name: "parsing * for day of week",
expr: "0 0 2 * 1-7 *",
format: CronFormatQuartz,
},
{
name: "parsing * for day of week without specifying the day",
expr: "0 0 11 ? *",
format: CronFormatQuartz,
},
{
name: "parsing H without hash",
format: CronFormatStandard,
expr: "0 H ? * *",
wantErr: true,
},
{
name: "parsing H with hash",
format: CronFormatStandard,
expr: "0 H ? * *",
options: []ParseOption{WithHash("myid1")},
},
{
name: "parsing H/2 with hash",
format: CronFormatStandard,
expr: "0 H/2 ? * *",
options: []ParseOption{WithHash("myid1")},
},
{
name: "invalid H/80 for minute",
format: CronFormatStandard,
expr: "0 H/80 ? * *",
options: []ParseOption{WithHash("myid1")},
wantErr: true,
},
{
name: "parsing H(5-20)/5 for minute",
format: CronFormatStandard,
expr: "0 H(5-20)/5 ? * *",
options: []ParseOption{WithHash("myid1")},
},
{
name: "invalid H(80-90)/5 for minute",
format: CronFormatStandard,
expr: "0 H(80-90)/5 ? * *",
options: []ParseOption{WithHash("myid1")},
wantErr: true,
},
{
name: "invalid H/7 for DOW",
format: CronFormatStandard,
expr: "0 0 0 1 1 H/7 *",
options: []ParseOption{WithHash("myid1")},
wantErr: true,
},
{
name: "invalid H/7 for DOW with CronFormatQuartz",
format: CronFormatQuartz,
expr: "0 0 0 1 1 H/7 *",
options: []ParseOption{WithHash("myid1")},
wantErr: true,
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
_, err := ParseForFormat(tt.format, tt.expr, tt.options...)
if err != nil && !tt.wantErr {
t.Errorf(`Parse("%s") returned "%s"`, tt.expr, err.Error())
} else if err == nil && tt.wantErr {
t.Errorf(`Parse("%s") did not return error`, tt.expr)
}
})
}
}
func TestFormattedExpressions(t *testing.T) {
tests := []struct {
name string
format CronFormat
expr string
times []crontimes
}{
{
name: "parsing day of week with CronFormatStandard",
expr: "0 0 11 ? * 2 *", // interprets as tuesday
format: CronFormatStandard,
times: []crontimes{
{"2020-12-12 00:00:00", "2020-12-15 11:00:00"},
},
},
{
name: "parsing day of week with CronFormatQuartz",
expr: "0 0 11 ? * 2 *", // interprets as monday
format: CronFormatQuartz,
times: []crontimes{
{"2020-12-12 00:00:00", "2020-12-14 11:00:00"},
},
},
{
name: "parsing 0 as day of week with CronFormatStandard",
expr: "0 0 11 ? * 0 *", // interprets as sunday
format: CronFormatStandard,
times: []crontimes{
{"2021-09-01 00:00:00", "2021-09-05 11:00:00"},
},
},
{
name: "parsing 7 as day of week with CronFormatStandard",
expr: "0 0 11 ? * 7 *", // interprets as sunday, this is quite loose
format: CronFormatStandard,
times: []crontimes{
{"2021-09-01 00:00:00", "2021-09-05 11:00:00"},
},
},
{
name: "parsing 7 as day of week with CronFormatQuartz",
expr: "0 0 11 ? * 7 *", // interprets as saturday
format: CronFormatQuartz,
times: []crontimes{
{"2021-09-01 00:00:00", "2021-09-04 11:00:00"},
},
},
{
name: "parsing day of week span with CronFormatQuartz",
expr: "0 0 11 ? * 3-6 *", // tuesday to friday
format: CronFormatQuartz,
times: []crontimes{
{"2020-12-12 00:00:00", "2020-12-15 11:00:00"},
},
},
{
name: "parsing any day of week with CronFormatQuartz",
expr: "0 0 11 ? * * *",
format: CronFormatQuartz,
times: []crontimes{
{"2020-12-12 00:00:00", "2020-12-12 11:00:00"},
},
},
{
name: "parsing sunday value with CronFormatQuartz",
expr: "0 0 11 ? * 1 *",
format: CronFormatQuartz,
times: []crontimes{
{"2020-12-12 00:00:00", "2020-12-13 11:00:00"},
},
},
{
name: "parsing SUN literal with CronFormatQuartz",
expr: "0 0 11 ? * SUN *",
format: CronFormatQuartz,
times: []crontimes{
{"2020-12-12 00:00:00", "2020-12-13 11:00:00"},
},
},
{
name: "parsing sunday literal with CronFormatQuartz",
expr: "0 0 11 ? * sunday *",
format: CronFormatQuartz,
times: []crontimes{
{"2020-12-12 00:00:00", "2020-12-13 11:00:00"},
},
},
{
name: "parsing TUE literal with CronFormatQuartz",
expr: "0 0 11 ? * TUE *",
format: CronFormatQuartz,
times: []crontimes{
{"2020-12-14 00:00:00", "2020-12-15 11:00:00"},
},
},
{
name: "parsing tuesday literal with CronFormatQuartz",
expr: "0 0 11 ? * tuesday *",
format: CronFormatQuartz,
times: []crontimes{
{"2020-12-14 00:00:00", "2020-12-15 11:00:00"},
},
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
for _, times := range tt.times {
from, _ := time.Parse("2006-01-02 15:04:05", times.from)
expr, err := ParseForFormat(tt.format, tt.expr)
if err != nil {
t.Errorf(`Parse("%s") returned "%s"`, tt.expr, err.Error())
return
}
next := expr.Next(from)
nextstr := next.Format("2006-01-02 15:04:05")
if nextstr != times.next {
t.Errorf(`("%s").Next("%s") = "%s", got "%s"`, tt.expr, times.from, times.next, nextstr)
}
}
})
}
}
func TestInvalidFormatExpressionsParsing(t *testing.T) {
tests := []struct {
name string
format CronFormat
expr string
wantErr bool
}{
{
name: "parsing out of range for end of week span with CronFormatQuartz",
expr: "0 0 11 ? * 1-8 *",
format: CronFormatQuartz,
wantErr: true,
},
{
name: "parsing negative value for day of week span with CronFormatQuartz",
expr: "0 0 11 ? * -3 *",
format: CronFormatQuartz,
wantErr: true,
},
{
name: "parsing out of range for end of week span with CronFormatQuartz",
expr: "0 0 11 ? * 8 *",
format: CronFormatQuartz,
wantErr: true,
},
{
name: "parsing out of range for start of week span with CronFormatQuartz",
expr: "0 0 11 ? * 0-7 *",
format: CronFormatQuartz,
wantErr: true,
},
{
name: "provide negative value for end of the week span with CronFormatQuartz",
expr: "0 0 11 ? * -2-7 *",
format: CronFormatQuartz,
wantErr: true,
},
{
name: "parsing out of range for start of week span with CronFormatQuartz",
expr: "0 0 11 ? * 1--6 *",
format: CronFormatQuartz,
wantErr: true,
},
{
name: "parsing missing second minutes hour",
expr: "? * 0-7 *",
format: CronFormatQuartz,
wantErr: true,
},
{
name: "parsing invalid seconds",
expr: "60 0 11 ? * 1-7 *",
format: CronFormatQuartz,
wantErr: true,
},
{
name: "parsing invalid minutes",
expr: "0 60 11 ? * 1-8 *",
format: CronFormatQuartz,
wantErr: true,
},
{
name: "parsing invalid hour",
expr: "0 0 24 ? * 1-7 *",
format: CronFormatQuartz,
wantErr: true,
},
{
name: "parsing invalid day of month",
expr: "0 0 2 32 * 1-7 *",
format: CronFormatQuartz,
wantErr: true,
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
_, err := ParseForFormat(tt.format, tt.expr)
if err != nil && !tt.wantErr {
t.Errorf(`Parse("%s") returned "%s"`, tt.expr, err.Error())
} else if err == nil && tt.wantErr {
t.Errorf(`Parse("%s") did not return error`, tt.expr)
}
})
}
}