123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- package limit
- import (
- "context"
- "testing"
- "time"
- "github.com/alicebob/miniredis/v2"
- "github.com/stretchr/testify/assert"
- "github.com/wuntsong-org/go-zero-plus/core/logx"
- "github.com/wuntsong-org/go-zero-plus/core/stores/redis"
- "github.com/wuntsong-org/go-zero-plus/core/stores/redis/redistest"
- )
- func init() {
- logx.Disable()
- }
- func TestTokenLimit_WithCtx(t *testing.T) {
- s, err := miniredis.Run()
- assert.Nil(t, err)
- const (
- total = 100
- rate = 5
- burst = 10
- )
- l := NewTokenLimiter(rate, burst, redis.New(s.Addr()), "tokenlimit")
- defer s.Close()
- ctx, cancel := context.WithCancel(context.Background())
- ok := l.AllowCtx(ctx)
- assert.True(t, ok)
- cancel()
- for i := 0; i < total; i++ {
- ok := l.AllowCtx(ctx)
- assert.False(t, ok)
- assert.False(t, l.monitorStarted)
- }
- }
- func TestTokenLimit_Rescue(t *testing.T) {
- s, err := miniredis.Run()
- assert.Nil(t, err)
- const (
- total = 100
- rate = 5
- burst = 10
- )
- l := NewTokenLimiter(rate, burst, redis.New(s.Addr()), "tokenlimit")
- s.Close()
- var allowed int
- for i := 0; i < total; i++ {
- time.Sleep(time.Second / time.Duration(total))
- if i == total>>1 {
- assert.Nil(t, s.Restart())
- }
- if l.Allow() {
- allowed++
- }
- // make sure start monitor more than once doesn't matter
- l.startMonitor()
- }
- assert.True(t, allowed >= burst+rate)
- }
- func TestTokenLimit_Take(t *testing.T) {
- store := redistest.CreateRedis(t)
- const (
- total = 100
- rate = 5
- burst = 10
- )
- l := NewTokenLimiter(rate, burst, store, "tokenlimit")
- var allowed int
- for i := 0; i < total; i++ {
- time.Sleep(time.Second / time.Duration(total))
- if l.Allow() {
- allowed++
- }
- }
- assert.True(t, allowed >= burst+rate)
- }
- func TestTokenLimit_TakeBurst(t *testing.T) {
- store := redistest.CreateRedis(t)
- const (
- total = 100
- rate = 5
- burst = 10
- )
- l := NewTokenLimiter(rate, burst, store, "tokenlimit")
- var allowed int
- for i := 0; i < total; i++ {
- if l.Allow() {
- allowed++
- }
- }
- assert.True(t, allowed >= burst)
- }
|