-
Notifications
You must be signed in to change notification settings - Fork 32
/
offset_test.go
392 lines (318 loc) · 13.1 KB
/
offset_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
package resource_test
import (
"os"
"time"
resource "github.com/concourse/time-resource"
"github.com/concourse/time-resource/lord"
"github.com/concourse/time-resource/models"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
type testEnvironment struct {
teamName string
pipelineName string
pipelineInstanceVars string
hashPercentile float64
}
var xsmallOffset = testEnvironment{
teamName: "a",
pipelineName: "b",
pipelineInstanceVars: "",
hashPercentile: 0.11040721324049105,
}
var smallOffset = testEnvironment{
teamName: "concourse",
pipelineName: "time-resource",
pipelineInstanceVars: "",
hashPercentile: 0.4723325777967303,
}
var largeOffset = testEnvironment{
teamName: "concourse",
pipelineName: "concourse",
pipelineInstanceVars: "large",
hashPercentile: 0.8069350870342309,
}
var xlargeOffset = testEnvironment{
teamName: "foo",
pipelineName: "bar",
pipelineInstanceVars: "baz",
hashPercentile: 0.9322489704778998,
}
var _ = Describe("Offset", func() {
originalTeam := os.Getenv(resource.BUILD_TEAM_NAME)
originalPipeline := os.Getenv(resource.BUILD_PIPELINE_NAME)
originalPipelineInstanceVars := os.Getenv(resource.BUILD_PIPELINE_INSTANCE_VARS)
var (
env testEnvironment
now time.Time
loc *time.Location
tl lord.TimeLord
dayDuration time.Duration
reference time.Time
actualOffsetTime time.Time
expectedOffsetTime time.Time
)
BeforeEach(func() {
env = testEnvironment{}
now = time.Now()
actualOffsetTime = time.Time{}
expectedOffsetTime = time.Time{}
})
JustBeforeEach(func() {
os.Setenv(resource.BUILD_TEAM_NAME, env.teamName)
os.Setenv(resource.BUILD_PIPELINE_NAME, env.pipelineName)
os.Setenv(resource.BUILD_PIPELINE_INSTANCE_VARS, env.pipelineInstanceVars)
actualOffsetTime = resource.Offset(tl, reference)
})
AfterEach(func() {
os.Setenv(resource.BUILD_TEAM_NAME, originalTeam)
os.Setenv(resource.BUILD_PIPELINE_NAME, originalPipeline)
os.Setenv(resource.BUILD_PIPELINE_INSTANCE_VARS, originalPipelineInstanceVars)
})
validateExpectedTime := func() {
Expect(actualOffsetTime.Unix()).To(Equal(expectedOffsetTime.Unix()))
}
RunIntervalAndOrRangeTests := func() {
var rangeDuration time.Duration
Context("when a range is not specified", func() {
BeforeEach(func() {
rangeDuration = dayDuration
tl.Start = nil
tl.Stop = nil
})
Context("when an interval is not specified", func() {
BeforeEach(func() {
tl.Interval = nil
})
JustBeforeEach(func() {
expectedOffsetTime = time.Date(reference.Year(), reference.Month(), reference.Day(), 0, 0, 0, 0, loc).Add(time.Duration(rangeDuration.Minutes()*env.hashPercentile) * time.Minute)
})
Context("when using a team name and pipeline name that generates a very small offset", func() {
BeforeEach(func() { env = xsmallOffset })
It("generates an overnight version", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a small offset", func() {
BeforeEach(func() { env = smallOffset })
It("generates an morning version", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a large offset", func() {
BeforeEach(func() { env = largeOffset })
It("generates an afternoon version", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a very large offset", func() {
BeforeEach(func() { env = xlargeOffset })
It("generates an evening version", validateExpectedTime)
})
})
Context("when an interval is specified", func() {
var intervalDuration time.Duration
BeforeEach(func() {
tl.Interval = new(models.Interval)
})
Context("when the interval can't get any smaller", func() {
BeforeEach(func() {
intervalDuration = time.Minute
*tl.Interval = models.Interval(intervalDuration)
})
for _, testEnv := range []testEnvironment{xsmallOffset, smallOffset, largeOffset, xlargeOffset} {
Context("for the "+env.teamName+"/"+env.pipelineName+"/"+env.pipelineInstanceVars+" pipeline", func() {
BeforeEach(func() {
env = testEnv
expectedOffsetTime = reference.Truncate(time.Minute)
})
It("returns the reference time", validateExpectedTime)
})
}
})
Context("when the interval is smaller than the range", func() {
BeforeEach(func() {
intervalDuration = time.Hour
*tl.Interval = models.Interval(intervalDuration)
})
JustBeforeEach(func() {
expectedOffsetTime = reference.Truncate(intervalDuration).Add(time.Duration(intervalDuration.Minutes()*env.hashPercentile) * time.Minute)
})
Context("when using a team name and pipeline name that generates a very small offset", func() {
BeforeEach(func() { env = xsmallOffset })
It("generates a version at the very beginning of the interval", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a small offset", func() {
BeforeEach(func() { env = smallOffset })
It("generates a version toward the beginning of the interval", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a large offset", func() {
BeforeEach(func() { env = largeOffset })
It("generates a version toward the end of the interval", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a very large offset", func() {
BeforeEach(func() { env = xlargeOffset })
It("generates a version at the very end of the interval", validateExpectedTime)
})
})
Context("when the interval is larger than the range", func() {
BeforeEach(func() {
intervalDuration = time.Hour * 168
*tl.Interval = models.Interval(intervalDuration)
})
JustBeforeEach(func() {
expectedOffsetTime = time.Date(reference.Year(), reference.Month(), reference.Day(), 0, 0, 0, 0, loc).Add(time.Duration(rangeDuration.Minutes()*env.hashPercentile) * time.Minute)
})
Context("when using a team name and pipeline name that generates a very small offset", func() {
BeforeEach(func() { env = xsmallOffset })
It("generates a version at the very beginning of the interval", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a small offset", func() {
BeforeEach(func() { env = smallOffset })
It("generates a version toward the beginning of the interval", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a large offset", func() {
BeforeEach(func() { env = largeOffset })
It("generates a version toward the end of the interval", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a very large offset", func() {
BeforeEach(func() { env = xlargeOffset })
It("generates a version at the very end of the interval", validateExpectedTime)
})
})
})
})
Context("when a range is specified", func() {
BeforeEach(func() {
rangeDuration = 6 * time.Hour
tlStart := reference.Truncate(rangeDuration)
tl.Start = new(models.TimeOfDay)
*tl.Start = models.NewTimeOfDay(tlStart)
tlStop := tlStart.Add(rangeDuration)
tl.Stop = new(models.TimeOfDay)
*tl.Stop = models.NewTimeOfDay(tlStop)
})
Context("when an interval is not specified", func() {
BeforeEach(func() {
tl.Interval = nil
})
JustBeforeEach(func() {
expectedOffsetTime = reference.Truncate(rangeDuration).Add(time.Duration(rangeDuration.Minutes()*env.hashPercentile) * time.Minute)
})
Context("when using a team name and pipeline name that generates a very small offset", func() {
BeforeEach(func() { env = xsmallOffset })
It("generates a version at the very beginning of the range", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a small offset", func() {
BeforeEach(func() { env = smallOffset })
It("generates a version toward the beginning of the range", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a large offset", func() {
BeforeEach(func() { env = largeOffset })
It("generates a version toward the end of the range", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a very large offset", func() {
BeforeEach(func() { env = xlargeOffset })
It("generates a version at the very end of the range", validateExpectedTime)
})
})
Context("when an interval is specified", func() {
var intervalDuration time.Duration
BeforeEach(func() {
tl.Interval = new(models.Interval)
})
Context("when the interval can't get any smaller", func() {
BeforeEach(func() {
intervalDuration = time.Minute
*tl.Interval = models.Interval(intervalDuration)
})
for _, testEnv := range []testEnvironment{xsmallOffset, smallOffset, largeOffset, xlargeOffset} {
Context("for the "+env.teamName+"/"+env.pipelineName+"/"+env.pipelineInstanceVars+" pipeline", func() {
BeforeEach(func() {
env = testEnv
expectedOffsetTime = reference.Truncate(time.Minute)
})
It("returns the reference time", validateExpectedTime)
})
}
})
Context("when the interval is smaller than the range", func() {
BeforeEach(func() {
intervalDuration = time.Hour
*tl.Interval = models.Interval(intervalDuration)
})
JustBeforeEach(func() {
expectedOffsetTime = reference.Truncate(intervalDuration).Add(time.Duration(intervalDuration.Minutes()*env.hashPercentile) * time.Minute)
})
Context("when using a team name and pipeline name that generates a very small offset", func() {
BeforeEach(func() { env = xsmallOffset })
It("generates a version at the very beginning of the interval", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a small offset", func() {
BeforeEach(func() { env = smallOffset })
It("generates a version toward the beginning of the interval", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a large offset", func() {
BeforeEach(func() { env = largeOffset })
It("generates a version toward the end of the interval", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a very large offset", func() {
BeforeEach(func() { env = xlargeOffset })
It("generates a version at the very end of the interval", validateExpectedTime)
})
})
Context("when the interval is larger than the range", func() {
BeforeEach(func() {
intervalDuration = time.Hour * 168
*tl.Interval = models.Interval(intervalDuration)
})
JustBeforeEach(func() {
expectedOffsetTime = reference.Truncate(rangeDuration).Add(time.Duration(rangeDuration.Minutes()*env.hashPercentile) * time.Minute)
})
Context("when using a team name and pipeline name that generates a very small offset", func() {
BeforeEach(func() { env = xsmallOffset })
It("generates a version at the very beginning of the range", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a small offset", func() {
BeforeEach(func() { env = smallOffset })
It("generates a version toward the beginning of the range", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a large offset", func() {
BeforeEach(func() { env = largeOffset })
It("generates a version toward the end of the range", validateExpectedTime)
})
Context("when using a team name and pipeline name that generates a very large offset", func() {
BeforeEach(func() { env = xlargeOffset })
It("generates a version at the very end of the range", validateExpectedTime)
})
})
})
})
}
Context("when a location is not specified", func() {
BeforeEach(func() {
loc = time.UTC
tl.Location = nil
reference = time.Date(2012, time.April, 21, now.Hour(), now.Minute(), now.Second(), now.Nanosecond(), loc)
dayDuration = 24 * time.Hour
})
RunIntervalAndOrRangeTests()
})
Context("when a location is specified", func() {
BeforeEach(func() {
var err error
loc, err = time.LoadLocation("America/New_York")
Expect(err).NotTo(HaveOccurred())
tlLoc := models.Location(*loc)
tl.Location = &tlLoc
})
Context("when referencing a 23-hour day", func() {
BeforeEach(func() {
reference = time.Date(2012, time.March, 11, 6, now.Minute(), now.Second(), now.Nanosecond(), loc)
dayDuration = 23 * time.Hour
})
RunIntervalAndOrRangeTests()
})
Context("when referencing a 25-hour day", func() {
BeforeEach(func() {
reference = time.Date(2012, time.November, 4, 13, now.Minute(), now.Second(), now.Nanosecond(), loc)
dayDuration = 25 * time.Hour
})
RunIntervalAndOrRangeTests()
})
})
})