-
Notifications
You must be signed in to change notification settings - Fork 10
/
httprateredis_test.go
198 lines (179 loc) · 4.52 KB
/
httprateredis_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
package httprateredis_test
import (
"fmt"
"math/rand"
"sync"
"testing"
"time"
httprateredis "github.com/go-chi/httprate-redis"
"golang.org/x/sync/errgroup"
)
func TestRedisCounter(t *testing.T) {
limitCounter := httprateredis.NewCounter(&httprateredis.Config{
Host: "localhost",
Port: 6379,
MaxIdle: 0,
MaxActive: 2,
DBIndex: 0,
ClientName: "httprateredis_test",
PrefixKey: fmt.Sprintf("httprate:test:%v", rand.Int31n(100000)), // Unique Redis key for each test
FallbackTimeout: time.Second,
FallbackDisabled: true,
})
defer limitCounter.Close()
limitCounter.Config(1000, time.Minute)
currentWindow := time.Now().UTC().Truncate(time.Minute)
previousWindow := currentWindow.Add(-time.Minute)
type test struct {
name string // In each test do the following:
advanceTime time.Duration // 1. advance time
incrBy int // 2. increase counter
prev int // 3. check previous window counter
curr int // and current window counter
}
tests := []test{
{
name: "t=0m: init",
prev: 0,
curr: 0,
},
{
name: "t=0m: increment by 1",
incrBy: 1,
prev: 0,
curr: 1,
},
{
name: "t=0m: increment by 99",
incrBy: 99,
prev: 0,
curr: 100,
},
{
name: "t=1m: move clock by 1m",
advanceTime: time.Minute,
prev: 100,
curr: 0,
},
{
name: "t=1m: increment by 20",
incrBy: 20,
prev: 100,
curr: 20,
},
{
name: "t=1m: increment by 20",
incrBy: 20,
prev: 100,
curr: 40,
},
{
name: "t=2m: move clock by 1m",
advanceTime: time.Minute,
prev: 40,
curr: 0,
},
{
name: "t=2m: incr++",
incrBy: 1,
prev: 40,
curr: 1,
},
{
name: "t=2m: incr+=9",
incrBy: 9,
prev: 40,
curr: 10,
},
{
name: "t=2m: incr+=20",
incrBy: 20,
prev: 40,
curr: 30,
},
{
name: "t=4m: move clock by 2m",
advanceTime: 2 * time.Minute,
prev: 0,
curr: 0,
},
}
concurrentRequests := 1000
for _, tt := range tests {
if tt.advanceTime > 0 {
currentWindow = currentWindow.Add(tt.advanceTime)
previousWindow = previousWindow.Add(tt.advanceTime)
}
if tt.incrBy > 0 {
var g errgroup.Group
for i := 0; i < concurrentRequests; i++ {
i := i
g.Go(func() error {
key := fmt.Sprintf("key:%v", i)
return limitCounter.IncrementBy(key, currentWindow, tt.incrBy)
})
}
if err := g.Wait(); err != nil {
t.Errorf("%s: %v", tt.name, err)
}
}
var g errgroup.Group
for i := 0; i < concurrentRequests; i++ {
i := i
g.Go(func() error {
key := fmt.Sprintf("key:%v", i)
curr, prev, err := limitCounter.Get(key, currentWindow, previousWindow)
if err != nil {
return fmt.Errorf("%q: %w", key, err)
}
if curr != tt.curr {
return fmt.Errorf("%q: unexpected curr = %v, expected %v", key, curr, tt.curr)
}
if prev != tt.prev {
return fmt.Errorf("%q: unexpected prev = %v, expected %v", key, prev, tt.prev)
}
return nil
})
}
if err := g.Wait(); err != nil {
t.Errorf("%s: %v", tt.name, err)
}
}
}
func BenchmarkLocalCounter(b *testing.B) {
limitCounter := httprateredis.NewCounter(&httprateredis.Config{
Host: "localhost",
Port: 6379,
DBIndex: 0,
ClientName: "httprateredis_test",
PrefixKey: fmt.Sprintf("httprate:test:%v", rand.Int31n(100000)), // Unique key for each test
MaxActive: 10,
MaxIdle: 0,
FallbackDisabled: true,
FallbackTimeout: 5 * time.Second,
})
defer limitCounter.Close()
limitCounter.Config(1000, time.Minute)
currentWindow := time.Now().UTC().Truncate(time.Minute)
previousWindow := currentWindow.Add(-time.Minute)
concurrentRequests := 100
b.ResetTimer()
for i := 0; i < b.N; i++ {
for i := range []int{0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0} {
// Simulate time.
currentWindow.Add(time.Duration(i) * time.Minute)
previousWindow.Add(time.Duration(i) * time.Minute)
wg := sync.WaitGroup{}
wg.Add(concurrentRequests)
for i := 0; i < concurrentRequests; i++ {
// Simulate concurrent requests with different rate-limit keys.
go func(i int) {
defer wg.Done()
_, _, _ = limitCounter.Get(fmt.Sprintf("key:%v", i), currentWindow, previousWindow)
_ = limitCounter.IncrementBy(fmt.Sprintf("key:%v", i), currentWindow, rand.Intn(20))
}(i)
}
wg.Wait()
}
}
}