-
Notifications
You must be signed in to change notification settings - Fork 0
/
memory_test.go
79 lines (60 loc) · 1.45 KB
/
memory_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
package throttle
import (
"context"
"errors"
"sync/atomic"
"testing"
"time"
)
func TestMemoryThrottler_New(t *testing.T) {
throttler := NewMemoryThrottler()
var calls int32
fn := throttler.New("test:new", time.Millisecond*100, func(ctx context.Context) error {
atomic.AddInt32(&calls, 1)
return nil
})
ctx := context.Background()
err := fn(ctx)
if err != nil {
t.Fatalf("unexpected error %v", err)
}
time.Sleep(time.Millisecond * 50)
err = fn(ctx)
if !errors.Is(err, ErrThrottled) {
t.Fatalf("unexpected error %v", err)
}
time.Sleep(time.Millisecond * 50)
err = fn(ctx)
if err != nil {
t.Fatalf("unexpected error %v", err)
}
if calls != 2 {
t.Fatalf("expected 2 calls but got %d", calls)
}
}
func TestMemoryThrottler_Do(t *testing.T) {
throttler := NewMemoryThrottler()
var calls int32
fn := func(ctx context.Context) error {
atomic.AddInt32(&calls, 1)
return nil
}
ctx := context.Background()
err := throttler.Do(ctx, "test:do", time.Millisecond*100, fn)
if err != nil {
t.Fatalf("unexpected error %v", err)
}
time.Sleep(time.Millisecond * 50)
err = throttler.Do(ctx, "test:do", time.Millisecond*100, fn)
if !errors.Is(err, ErrThrottled) {
t.Fatalf("unexpected error %v", err)
}
time.Sleep(time.Millisecond * 50)
err = throttler.Do(ctx, "test:do", time.Millisecond*100, fn)
if err != nil {
t.Fatalf("unexpected error %v", err)
}
if calls != 2 {
t.Fatalf("expected 2 calls but got %d", calls)
}
}