-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththrottle_test.go
341 lines (294 loc) · 5.5 KB
/
throttle_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
package throttle_test
import (
"fmt"
"github.com/ziflex/throttle"
"math"
"sync"
"testing"
"time"
)
func seconds(fraction float64) time.Duration {
return time.Duration(float64(time.Second) * fraction)
}
func TestThrottler_Do_Consistent(t *testing.T) {
useCases := []struct {
Limit uint64
Calls int
}{
{
Limit: 0,
Calls: 10,
},
{
Limit: 1,
Calls: 10,
},
{
Limit: 5,
Calls: 10,
},
{
Limit: 5,
Calls: 16,
},
{
Limit: 5,
Calls: 14,
},
}
for _, useCase := range useCases {
t.Run(fmt.Sprintf("Consistent %d RPS within %d calls", useCase.Limit, useCase.Calls), func(t *testing.T) {
calls := make(chan time.Time, useCase.Calls)
throttler := throttle.New(useCase.Limit)
ts := time.Now()
var wg sync.WaitGroup
wg.Add(useCase.Calls)
for range useCase.Calls {
go func() {
throttler.Acquire()
calls <- time.Now()
wg.Done()
}()
}
wg.Wait()
close(calls)
groups := map[float64]uint64{}
for c := range calls {
diff := c.Sub(ts)
dur := math.Abs(math.Floor(diff.Seconds()))
groups[dur]++
}
expected := useCase.Limit
for _, actual := range groups {
if expected == 0 {
expected = uint64(useCase.Calls)
}
if actual > expected {
t.Fatal(fmt.Sprintf("Expected %d per second, but got %d", expected, actual))
}
}
})
}
}
func TestThrottler_Do_Sporadic(t *testing.T) {
type Burst struct {
Warmup time.Duration
Latency time.Duration
Calls int
}
useCases := []struct {
Limit uint64
Calls []Burst
Expected map[float64]uint64
}{
{
Limit: 10,
Calls: []Burst{
{
Warmup: seconds(0.99),
Calls: 5,
},
{
Warmup: seconds(0.99),
Calls: 2,
},
{
Warmup: seconds(0.5),
Calls: 4,
},
},
Expected: map[float64]uint64{
0: 5,
1: 2,
2: 4,
},
},
{
Limit: 5,
Calls: []Burst{
{
Calls: 5,
Latency: seconds(0.255),
},
{
Warmup: seconds(0.2),
Calls: 6,
Latency: seconds(0.45),
},
},
Expected: map[float64]uint64{
0: 3,
1: 3,
2: 2,
3: 2,
4: 1,
},
},
}
for _, useCase := range useCases {
t.Run(fmt.Sprintf("Sporadic %d RPS within %d calls", useCase.Limit, useCase.Calls), func(t *testing.T) {
var buffer int
for _, tp := range useCase.Calls {
buffer += tp.Calls
}
calls := make(chan time.Time, buffer)
throttler := throttle.New(useCase.Limit)
ts := time.Now()
var wg sync.WaitGroup
wg.Add(len(useCase.Calls))
go func() {
for _, tpl := range useCase.Calls {
warmup := tpl.Warmup
latency := tpl.Latency
callNum := tpl.Calls
if warmup > 0 {
time.Sleep(warmup)
}
for range callNum {
throttler.Acquire()
if latency > 0 {
time.Sleep(latency)
}
calls <- time.Now()
}
wg.Done()
}
}()
wg.Wait()
close(calls)
groups := map[float64]uint64{}
for c := range calls {
diff := c.Sub(ts)
dur := math.Abs(math.Floor(diff.Seconds()))
groups[dur]++
// fmt.Println(fmt.Sprintf("Elapsed %ds", int64(dur)))
}
for sec, actual := range groups {
expected, found := useCase.Expected[sec]
if !found {
t.Fatal(fmt.Sprintf("Expected to have calls within %ds time range", int64(sec)))
}
if actual != expected {
t.Fatal(fmt.Sprintf("Expected %d per second, but got %d", expected, actual))
}
}
})
}
}
func TestThrottler_Do_Parallel(t *testing.T) {
type Call struct {
Latency time.Duration
}
useCases := []struct {
Limit uint64
Calls []Call
Expected map[float64]uint64
}{
{
Limit: 1,
Calls: []Call{
{},
{},
{},
{},
{},
},
Expected: map[float64]uint64{
0: 1,
1: 1,
2: 1,
3: 1,
4: 1,
},
},
{
Limit: 5,
Calls: []Call{
{
Latency: seconds(0.99),
},
{
Latency: seconds(0.99),
},
{
Latency: seconds(0.99),
},
{
Latency: seconds(0.99),
},
{
Latency: seconds(0.99),
},
},
Expected: map[float64]uint64{
0: 5,
},
},
{
Limit: 5,
Calls: []Call{
{
Latency: seconds(0.5),
},
{
Latency: seconds(0.5),
},
{
Latency: seconds(0.5),
},
{
Latency: seconds(0.5),
},
{
Latency: seconds(0.99),
},
{
Latency: seconds(1),
},
{},
},
Expected: map[float64]uint64{
0: 5,
1: 1,
2: 1,
},
},
}
for _, useCase := range useCases {
t.Run(fmt.Sprintf("Parallel %d RPS", useCase.Limit), func(t *testing.T) {
calls := make(chan time.Time, len(useCase.Calls))
throttler := throttle.New(useCase.Limit)
ts := time.Now()
var wg sync.WaitGroup
wg.Add(len(useCase.Calls))
for _, tpl := range useCase.Calls {
go func(latency time.Duration) {
defer wg.Done()
throttler.Acquire()
if latency > 0 {
time.Sleep(latency)
}
calls <- time.Now()
}(tpl.Latency)
}
wg.Wait()
close(calls)
groups := map[float64]uint64{}
for c := range calls {
diff := c.Sub(ts)
dur := math.Abs(math.Floor(diff.Seconds()))
groups[dur]++
// fmt.Println(fmt.Sprintf("Elapsed %ds", int64(dur)))
}
for sec, actual := range groups {
expected, found := useCase.Expected[sec]
if !found {
t.Fatal(fmt.Sprintf("Expected to have calls within %ds time range", int64(sec)))
}
if actual != expected {
t.Fatal(fmt.Sprintf("Expected %d per second, but got %d", expected, actual))
}
}
})
}
}