-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathmulti_test.go
377 lines (332 loc) · 9.46 KB
/
multi_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
/*
* Teleport
* Copyright (C) 2023 Gravitational, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package interval
import (
"sync"
"sync/atomic"
"testing"
"time"
"github.com/jonboulle/clockwork"
"github.com/stretchr/testify/require"
)
// TestMultiIntervalReset verifies the basic behavior of the multi interval reset functionality.
// Since time based tests tend to be flaky, this test passes if it has a >50% success
// rate (i.e. >50% of resets seemed to have actually extended the timer successfully).
func TestMultiIntervalReset(t *testing.T) {
const iterations = 1_000
const duration = time.Millisecond * 666
t.Parallel()
var success, failure atomic.Uint64
var wg sync.WaitGroup
for i := 0; i < iterations; i++ {
wg.Add(1)
go func() {
defer wg.Done()
resetTimer := time.NewTimer(duration / 3)
defer resetTimer.Stop()
interval := NewMulti[string](
clockwork.NewRealClock(),
SubInterval[string]{
Key: "key",
Duration: duration,
})
defer interval.Stop()
start := time.Now()
for i := 0; i < 6; i++ {
select {
case <-interval.Next():
failure.Add(1)
return
case <-resetTimer.C:
interval.Reset("key")
resetTimer.Reset(duration / 3)
}
}
<-interval.Next()
elapsed := time.Since(start)
// we expect this test to produce elapsed times of
// 3*duration if it is working properly. we accept a
// margin or error of +/- 1 duration in order to
// minimize flakiness.
if elapsed > duration*2 && elapsed < duration*4 {
success.Add(1)
} else {
failure.Add(1)
}
}()
}
wg.Wait()
require.Greater(t, success.Load(), failure.Load())
}
// TestMultiIntervalBasics verifies basic expected multiinterval behavior. Due to the general
// flakiness of time-based tests, this test is designed to only care about which sub-intervals
// tick *more* relative to one another, and not about the specific relative frequency of observed
// ticks.
func TestMultiIntervalBasics(t *testing.T) {
t.Parallel()
interval := NewMulti[string](
clockwork.NewRealClock(),
SubInterval[string]{
Key: "fast",
Duration: time.Millisecond * 8,
},
SubInterval[string]{
Key: "slow",
Duration: time.Millisecond * 16,
},
SubInterval[string]{
Key: "once",
Duration: time.Hour,
FirstDuration: time.Millisecond,
},
)
defer interval.Stop()
var fast, slow, once int
var prevT time.Time
for i := 0; i < 60; i++ {
tick := <-interval.Next()
require.False(t, tick.Time.IsZero())
require.True(t, tick.Time.After(prevT) || tick.Time == prevT)
prevT = tick.Time
switch tick.Key {
case "fast":
fast++
case "slow":
slow++
case "once":
once++
}
}
require.Equal(t, 1, once)
require.Greater(t, slow, once)
require.Greater(t, fast, slow)
}
// TestMultiIntervalVariableDuration verifies that variable durations within a multiinterval function
// as expected.
func TestMultiIntervalVariableDuration(t *testing.T) {
t.Parallel()
foo := NewVariableDuration(VariableDurationConfig{
MinDuration: time.Millisecond * 8,
MaxDuration: time.Hour,
Step: 1,
})
foo.counter.Store(1)
bar := NewVariableDuration(VariableDurationConfig{
MinDuration: time.Millisecond * 8,
MaxDuration: time.Hour,
Step: 1,
})
bar.counter.Store(1)
interval := NewMulti[string](
clockwork.NewRealClock(),
SubInterval[string]{
Key: "foo",
VariableDuration: foo,
},
SubInterval[string]{
Key: "bar",
VariableDuration: bar,
},
)
defer interval.Stop()
var fooct, barct int
var prevT time.Time
for i := 0; i < 60; i++ {
tick := <-interval.Next()
require.False(t, tick.Time.IsZero())
require.True(t, tick.Time.After(prevT) || tick.Time == prevT)
prevT = tick.Time
switch tick.Key {
case "foo":
fooct++
case "bar":
barct++
}
}
require.Equal(t, 60, fooct+barct, "fooct=%d, barct=%d", fooct, barct)
// intervals should be firing at the same rate, but since this test involves concurrent
// timing it is *very* inconsistent when running on our test infra. Instead, assert that
// nether value is more than 2x the other. In combination with the other conditions checked
// further down, this will let us verify with reasonable certainty that increasing the variable
// duration does increase firing frequency as expected. The exact nature of the change is
// covered by other unit tests that don't rely on timing. This is just a sanity check to
// verify that the deterministic tests aren't passing in error (e.g. checking a duration
// value that isn't actually being used to calculate the final tick rate).
require.InDelta(t, fooct, barct, 20)
foo.counter.Store(2)
bar.counter.Store(200_000)
fooct = 0
barct = 0
for i := 0; i < 60; i++ {
tick := <-interval.Next()
switch tick.Key {
case "foo":
fooct++
case "bar":
barct++
}
}
require.Equal(t, 60, fooct+barct, "fooct=%d, barct=%d", fooct, barct)
// foo should have fired *way* more than twice as often, but time-based tests are flaky
// so we're checking for a very conservative difference in frequency here. the point is just
// to prove that when the variable duration increases the firing duration increases as well.
// covering specifics are left to the variable duration output tests, which are not time-based.
require.Greater(t, fooct, barct*2, "fooct=%d, barct=%d", fooct, barct)
}
// TestMultiIntervalPush verifies the expected behavior of MultiInterval.Push, both in terms of
// its ability to add new sub-intervals, and to overwrite existing sub-intervals.
func TestMultiIntervalPush(t *testing.T) {
t.Parallel()
interval := NewMulti[string](
clockwork.NewRealClock(),
SubInterval[string]{
Key: "foo",
Duration: time.Millisecond * 6,
},
)
defer interval.Stop()
// verify that single-interval is working
for i := 0; i < 3; i++ {
tick := <-interval.Next()
require.Equal(t, "foo", tick.Key)
}
// push a new slower sub-interval
interval.Push(SubInterval[string]{
Key: "bar",
Duration: time.Millisecond * 12,
})
// aggregate rates of both sub-intervals
var foo, bar int
for i := 0; i < 60; i++ {
tick := <-interval.Next()
switch tick.Key {
case "foo":
foo++
case "bar":
bar++
}
}
// verify that both sub-intervals are firing, and that
// foo is firing more frequently.
require.NotZero(t, foo)
require.NotZero(t, bar)
require.Greater(t, foo, bar)
// overwrite the old sub-intervals, inverting their respective
// tick rates.
interval.Push(SubInterval[string]{
Key: "foo",
Duration: time.Millisecond * 12,
})
interval.Push(SubInterval[string]{
Key: "bar",
Duration: time.Millisecond * 6,
})
// aggregate new rates for both sub-intervals
foo = 0
bar = 0
for i := 0; i < 60; i++ {
tick := <-interval.Next()
switch tick.Key {
case "foo":
foo++
case "bar":
bar++
}
}
// verify that both sub-intervals are firing, and that
// foo their relative rates have flipped, with bar now
// firing more frequently.
require.NotZero(t, foo)
require.NotZero(t, bar)
require.Greater(t, bar, foo)
}
// TestMultiIntervalFireNow verifies the expected behavior of MultiInterval.FireNow.
func TestMultiIntervalFireNow(t *testing.T) {
t.Parallel()
// set up one sub-interval that fires frequently, and another that will never
// fire during this test unless we trigger with FireNow.
interval := NewMulti[string](
clockwork.NewRealClock(),
SubInterval[string]{
Key: "slow",
Duration: time.Hour,
},
SubInterval[string]{
Key: "fast",
Duration: time.Millisecond * 10,
},
)
defer interval.Stop()
// verify that only the 'fast' interval is firing
for i := 0; i < 10; i++ {
tick := <-interval.Next()
require.Equal(t, "fast", tick.Key)
}
// trigger the slow interval
interval.FireNow("slow")
// make sure that we observe slow interval firing
var seenSlow bool
for i := 0; i < 60; i++ {
tick := <-interval.Next()
if tick.Key == "slow" {
seenSlow = true
break
}
}
require.True(t, seenSlow)
}
// TestPendingTicks tests the expected behavior of the pendingTicks helper.
func TestPendingTicks(t *testing.T) {
// "backlog" of fake ticks with lots of duplicates
tks := []string{
"foo",
"bar",
"foo",
"foo",
"bin",
"bar",
"bar",
"baz",
"foo",
}
var pending pendingTicks[string]
// insert out fake ticks
for _, tk := range tks {
pending.add(time.Now(), tk)
}
// we expect to have not stored any duplicate keys (important for
// preventing runaway memory growth due to neglected interval).
require.Len(t, pending.keys, 4)
// expected order of ticks to be emitted
expect := []string{
"foo",
"bar",
"bin",
"baz",
}
// verify that we see the ticks in the order we expect
for _, exp := range expect {
tick, ok := pending.next()
require.True(t, ok)
require.Equal(t, exp, tick.Key)
pending.remove(exp)
}
// verify that no more ticks are available
_, ok := pending.next()
require.False(t, ok)
}