-
Notifications
You must be signed in to change notification settings - Fork 5
/
rateLimiter_test.go
113 lines (97 loc) · 1.85 KB
/
rateLimiter_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
package limiter
import (
"context"
"sync"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestConcurrentRateLimiterNonBlocking(t *testing.T) {
l := New(7)
var wg sync.WaitGroup
wg.Add(5)
ctx := context.Background()
for i := 0; i < 5; i++ {
go func() {
defer wg.Done()
l.Wait(ctx)
}()
}
wg.Wait()
assert.Equal(t, 0, l.waitList.Len())
}
func TestConcurrentRateLimiterBlocking(t *testing.T) {
l := New(2)
var wg sync.WaitGroup
wg.Add(5)
ctx := context.Background()
for i := 0; i < 5; i++ {
go func() {
defer wg.Done()
l.Wait(ctx)
}()
}
time.Sleep(100 * time.Millisecond)
assert.Equal(t, 3, l.waitListSize())
for i := 0; i < 3; i++ {
l.Finish()
}
wg.Wait()
assert.Equal(t, 0, l.waitListSize())
}
func TestConcurrentRateLimiterTimeout(t *testing.T) {
l := New(2,
WithTimeout(300),
)
var wg sync.WaitGroup
wg.Add(5)
ctx := context.Background()
for i := 0; i < 5; i++ {
go func() {
defer wg.Done()
l.Wait(ctx)
}()
}
time.Sleep(500 * time.Millisecond)
wg.Wait()
l.Finish()
l.Finish()
assert.Equal(t, 3, l.Count())
assert.Equal(t, 0, l.waitList.Len())
}
func TestConcurrentRateLimiter_ContextDone(t *testing.T) {
l := New(2)
var wg sync.WaitGroup
wg.Add(5)
ctx := context.Background()
ctx, cancel := context.WithCancel(ctx)
for i := 0; i < 5; i++ {
go func() {
defer wg.Done()
l.Wait(ctx)
}()
}
time.Sleep(200 * time.Millisecond)
assert.Equal(t, 3, l.waitListSize())
cancel()
time.Sleep(100 * time.Millisecond)
assert.Zero(t, l.waitListSize())
assert.Equal(t, 5, l.Count())
}
func TestExecute(t *testing.T) {
l := New(2)
ctx := context.Background()
var wg sync.WaitGroup
wg.Add(5)
for i := 0; i < 5; i++ {
go func() {
defer wg.Done()
_ = l.Run(ctx, func() error {
return nil
})
}()
}
wg.Wait()
assert.Zero(t, l.waitListSize())
assert.Zero(t, l.Count())
}