-
Notifications
You must be signed in to change notification settings - Fork 0
/
ticker_controller_test.go
62 lines (48 loc) · 1.22 KB
/
ticker_controller_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
package ratelimiter_test
import (
"context"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"ratelimiter"
"time"
)
type FakeLimiter struct {
ratelimiter.FixedWindow
NextTickCalled bool
}
func NewFakeLimiter(opts ratelimiter.LimiterOptions) *FakeLimiter {
return &FakeLimiter{
FixedWindow: *ratelimiter.NewFixedWindow(opts),
}
}
func (f *FakeLimiter) NextTick() {
f.NextTickCalled = true
}
var _ = Describe("Clock controller", func() {
opts := ratelimiter.LimiterOptions{
Limit: 10,
Interval: 10 * time.Second,
Tick: 10 * time.Millisecond,
}
It("Ticker controller should call NextTick every tick", func() {
l1 := NewFakeLimiter(opts)
l2 := NewFakeLimiter(opts)
ctx, cancel := context.WithCancel(context.Background())
ticker := make(chan struct{})
tickerOpts := ratelimiter.TickerControllerOptions{
Ctx: ctx,
Ticker: ticker,
TickDuration: 10 * time.Millisecond,
}
controller := ratelimiter.NewTickerController(tickerOpts)
err := controller.AddLimiter(l1)
Expect(err).To(BeNil())
err = controller.AddLimiter(l2)
Expect(err).To(BeNil())
<-ticker
<-ticker
Expect(l1.NextTickCalled).To(BeTrue())
Expect(l2.NextTickCalled).To(BeTrue())
cancel()
})
})