-
Notifications
You must be signed in to change notification settings - Fork 32
/
check_command_test.go
530 lines (437 loc) · 15.5 KB
/
check_command_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
package resource_test
import (
"time"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
resource "github.com/concourse/time-resource"
"github.com/concourse/time-resource/models"
)
var _ = Describe("Check", func() {
var (
now time.Time
)
BeforeEach(func() {
now = time.Now().UTC()
})
Context("when executed", func() {
var source models.Source
var version models.Version
var response models.CheckResponse
BeforeEach(func() {
source = models.Source{}
version = models.Version{}
response = models.CheckResponse{}
})
JustBeforeEach(func() {
command := resource.CheckCommand{}
var err error
response, err = command.Run(models.CheckRequest{
Source: source,
Version: version,
})
Expect(err).NotTo(HaveOccurred())
})
Context("when nothing is specified", func() {
Context("when no version is given", func() {
It("outputs a version containing the current time", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("when a version is given", func() {
var prev time.Time
Context("when the resource has already triggered on the current day", func() {
BeforeEach(func() {
prev = time.Date(now.Year(), now.Month(), now.Day(), now.Hour(), 0, now.Second(), now.Nanosecond(), now.Location())
version.Time = prev
})
It("outputs a supplied version", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(BeNumerically("~", prev.Unix(), 1))
})
})
Context("when the resource was triggered yesterday", func() {
BeforeEach(func() {
prev = now.Add(-24 * time.Hour)
version.Time = prev
})
It("outputs a version containing the current time and supplied version", func() {
Expect(response).To(HaveLen(2))
Expect(response[0].Time.Unix()).To(BeNumerically("~", prev.Unix(), 1))
Expect(response[1].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
})
})
Context("when a time range is specified", func() {
Context("when we are in the specified time range", func() {
BeforeEach(func() {
start := now.Add(-1 * time.Hour)
stop := now.Add(1 * time.Hour)
source.Start = tod(start.Hour(), start.Minute(), 0)
source.Stop = tod(stop.Hour(), stop.Minute(), 0)
})
Context("when no version is given", func() {
It("outputs a version containing the current time", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("when a version is given", func() {
var prev time.Time
Context("when the resource has already triggered with in the current time range", func() {
BeforeEach(func() {
prev = now.Add(-30 * time.Minute)
version.Time = prev
})
It("outputs a supplied version", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(BeNumerically("~", prev.Unix(), 1))
})
})
Context("when the resource was triggered yesterday near the end of the time frame", func() {
BeforeEach(func() {
prev = now.Add(-23 * time.Hour)
version.Time = prev
})
It("outputs a version containing the current time and supplied version", func() {
Expect(response).To(HaveLen(2))
Expect(response[0].Time.Unix()).To(BeNumerically("~", prev.Unix(), 1))
Expect(response[1].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("when the resource was triggered last year near the end of the time frame", func() {
BeforeEach(func() {
prev = now.AddDate(-1, 0, 0)
version.Time = prev
})
It("outputs a version containing the current time and supplied version", func() {
Expect(response).To(HaveLen(2))
Expect(response[0].Time.Unix()).To(BeNumerically("~", prev.Unix(), 1))
Expect(response[1].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("when the resource was triggered yesterday in the current time frame", func() {
BeforeEach(func() {
prev = now.Add(-24 * time.Hour)
version.Time = prev
})
It("outputs a version containing the current time and supplied version", func() {
Expect(response).To(HaveLen(2))
Expect(response[0].Time.Unix()).To(BeNumerically("~", prev.Unix(), 1))
Expect(response[1].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
})
Context("when an interval is specified", func() {
BeforeEach(func() {
interval := models.Interval(time.Minute)
source.Interval = &interval
})
Context("when no version is given", func() {
It("outputs a version containing the current time", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("when a version is given", func() {
var prev time.Time
Context("when the interval has not elapsed", func() {
BeforeEach(func() {
prev = now
version.Time = prev
})
It("outputs only the supplied version", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(Equal(prev.Unix()))
})
})
Context("when the interval has elapsed", func() {
BeforeEach(func() {
prev = now.Add(-1 * time.Minute)
version.Time = prev
})
It("outputs a version containing the current time and supplied version", func() {
Expect(response).To(HaveLen(2))
Expect(response[0].Time.Unix()).To(Equal(prev.Unix()))
Expect(response[1].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("with its time N intervals ago", func() {
BeforeEach(func() {
prev = now.Add(-5 * time.Minute)
version.Time = prev
})
It("outputs a version containing the current time and supplied version", func() {
Expect(response).To(HaveLen(2))
Expect(response[0].Time.Unix()).To(Equal(prev.Unix()))
Expect(response[1].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
})
})
Context("when the current day is specified", func() {
BeforeEach(func() {
source.Days = []models.Weekday{
models.Weekday(now.Weekday()),
models.Weekday(now.AddDate(0, 0, 2).Weekday()),
}
})
It("outputs a version containing the current time", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("when we are out of the specified day", func() {
BeforeEach(func() {
source.Days = []models.Weekday{
models.Weekday(now.AddDate(0, 0, 1).Weekday()),
models.Weekday(now.AddDate(0, 0, 2).Weekday()),
}
})
It("does not output any versions", func() {
Expect(response).To(BeEmpty())
})
})
})
Context("when we are not within the specified time range", func() {
BeforeEach(func() {
start := now.Add(6 * time.Hour)
stop := now.Add(7 * time.Hour)
source.Start = tod(start.Hour(), start.Minute(), 0)
source.Stop = tod(stop.Hour(), stop.Minute(), 0)
})
Context("when no version is given", func() {
It("does not output any versions", func() {
Expect(response).To(BeEmpty())
})
})
Context("when an interval is given", func() {
BeforeEach(func() {
start := now.Add(6 * time.Hour)
stop := now.Add(7 * time.Hour)
source.Start = tod(start.Hour(), start.Minute(), 0)
source.Stop = tod(stop.Hour(), stop.Minute(), 0)
interval := models.Interval(time.Minute)
source.Interval = &interval
})
It("does not output any versions", func() {
Expect(response).To(BeEmpty())
})
})
})
Context("with a location configured", func() {
var loc *time.Location
BeforeEach(func() {
var err error
loc, err = time.LoadLocation("America/Indiana/Indianapolis")
Expect(err).ToNot(HaveOccurred())
srcLoc := models.Location(*loc)
source.Location = &srcLoc
now = now.In(loc)
})
Context("when we are in the specified time range", func() {
BeforeEach(func() {
start := now.Add(-1 * time.Hour)
stop := now.Add(1 * time.Hour)
source.Start = tod(start.Hour(), start.Minute(), 0)
source.Stop = tod(stop.Hour(), stop.Minute(), 0)
})
Context("when no version is given", func() {
It("outputs a version containing the current time", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("when a version is given", func() {
var prev time.Time
Context("when the resource has already triggered with in the current time range", func() {
BeforeEach(func() {
prev = now.Add(-30 * time.Minute)
version.Time = prev
})
It("outputs a supplied version", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(Equal(prev.Unix()))
})
})
Context("when the resource was triggered yesterday near the end of the time frame", func() {
BeforeEach(func() {
prev = now.Add(-23 * time.Hour)
version.Time = prev
})
It("outputs a version containing the current time and supplied version", func() {
Expect(response).To(HaveLen(2))
Expect(response[0].Time.Unix()).To(Equal(prev.Unix()))
Expect(response[1].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("when the resource was triggered yesterday in the current time frame", func() {
BeforeEach(func() {
prev = now.AddDate(0, 0, -1)
version.Time = prev
})
It("outputs a version containing the current time and supplied version", func() {
Expect(response).To(HaveLen(2))
Expect(response[0].Time.Unix()).To(Equal(prev.Unix()))
Expect(response[1].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
})
Context("when an interval is specified", func() {
BeforeEach(func() {
interval := models.Interval(time.Minute)
source.Interval = &interval
})
Context("when no version is given", func() {
It("outputs a version containing the current time", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("when a version is given", func() {
var prev time.Time
Context("with its time within the interval", func() {
BeforeEach(func() {
prev = now
version.Time = prev
})
It("outputs the given version", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(Equal(prev.Unix()))
})
})
Context("with its time one interval ago", func() {
BeforeEach(func() {
prev = now.Add(-1 * time.Minute)
version.Time = prev
})
It("outputs a version containing the current time and supplied version", func() {
Expect(response).To(HaveLen(2))
Expect(response[0].Time.Unix()).To(Equal(prev.Unix()))
Expect(response[1].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("with its time N intervals ago", func() {
BeforeEach(func() {
prev = now.Add(-5 * time.Minute)
version.Time = prev
})
It("outputs a version containing the current time and supplied version", func() {
Expect(response).To(HaveLen(2))
Expect(response[0].Time.Unix()).To(Equal(prev.Unix()))
Expect(response[1].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
})
})
Context("when the current day is specified", func() {
BeforeEach(func() {
source.Days = []models.Weekday{
models.Weekday(now.Weekday()),
models.Weekday(now.AddDate(0, 0, 2).Weekday()),
}
})
It("outputs a version containing the current time", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("when we are out of the specified day", func() {
BeforeEach(func() {
source.Days = []models.Weekday{
models.Weekday(now.AddDate(0, 0, 1).Weekday()),
models.Weekday(now.AddDate(0, 0, 2).Weekday()),
}
})
It("does not output any versions", func() {
Expect(response).To(BeEmpty())
})
})
})
Context("when we are not within the specified time range", func() {
BeforeEach(func() {
start := now.Add(6 * time.Hour)
stop := now.Add(7 * time.Hour)
source.Start = tod(start.Hour(), start.Minute(), 0)
source.Stop = tod(stop.Hour(), stop.Minute(), 0)
})
Context("when no version is given", func() {
It("does not output any versions", func() {
Expect(response).To(BeEmpty())
})
})
Context("when an interval is given", func() {
BeforeEach(func() {
start := now.Add(6 * time.Hour)
stop := now.Add(7 * time.Hour)
source.Start = tod(start.Hour(), start.Minute(), 0)
source.Stop = tod(stop.Hour(), stop.Minute(), 0)
interval := models.Interval(time.Minute)
source.Interval = &interval
})
It("does not output any versions", func() {
Expect(response).To(BeEmpty())
})
})
})
})
})
Context("when an interval is specified", func() {
BeforeEach(func() {
interval := models.Interval(time.Minute)
source.Interval = &interval
})
Context("when no version is given", func() {
It("outputs a version containing the current time", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("when a version is given", func() {
var prev time.Time
Context("with its time within the interval", func() {
BeforeEach(func() {
prev = now
version.Time = prev
})
It("outputs a supplied version", func() {
Expect(response).To(HaveLen(1))
Expect(response[0].Time.Unix()).To(Equal(prev.Unix()))
})
})
Context("with its time one interval ago", func() {
BeforeEach(func() {
prev = now.Add(-1 * time.Minute)
version.Time = prev
})
It("outputs a version containing the current time and supplied version", func() {
Expect(response).To(HaveLen(2))
Expect(response[0].Time.Unix()).To(Equal(prev.Unix()))
Expect(response[1].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
Context("with its time N intervals ago", func() {
BeforeEach(func() {
prev = now.Add(-5 * time.Minute)
version.Time = prev
})
It("outputs a version containing the current time and supplied version", func() {
Expect(response).To(HaveLen(2))
Expect(response[0].Time.Unix()).To(Equal(prev.Unix()))
Expect(response[1].Time.Unix()).To(BeNumerically("~", time.Now().Unix(), 1))
})
})
})
})
})
})
func tod(hours, minutes, offset int) *models.TimeOfDay {
loc := time.UTC
if offset != 0 {
loc = time.FixedZone("UnitTest", 60*60*offset)
}
now := time.Now()
tod := models.NewTimeOfDay(time.Date(now.Year(), now.Month(), now.Day(), hours, minutes, 0, 0, loc))
return &tod
}