-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsliding_test.go
65 lines (48 loc) · 1.03 KB
/
sliding_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
package sliding_test
import (
"sync"
"testing"
"time"
"github.com/tetsuo/sliding"
"github.com/stretchr/testify/assert"
)
func TestCounter(t *testing.T) {
c := sliding.NewCounter(time.Millisecond * 77)
for range 100 {
c.Increment()
}
assert.EqualValues(t, 100, c.Peek())
time.Sleep(time.Millisecond * 100)
assert.EqualValues(t, 0, c.Peek())
c.Increment()
assert.EqualValues(t, 1, c.Peek())
time.Sleep(time.Millisecond * 40)
for range 3 {
c.Increment()
}
assert.EqualValues(t, 4, c.Peek())
time.Sleep(time.Millisecond * 40)
assert.EqualValues(t, 3, c.Peek())
for range 5 {
c.Increment()
}
time.Sleep(time.Millisecond * 40)
assert.EqualValues(t, 5, c.Peek())
time.Sleep(time.Millisecond * 40)
assert.EqualValues(t, 0, c.Peek())
}
func TestCounterConcurrent(t *testing.T) {
c := sliding.NewCounter(time.Second * 1)
var wg sync.WaitGroup
for range 4 {
wg.Add(1)
go func() {
defer wg.Done()
for i := 0; i < 100/4; i++ {
c.Increment()
}
}()
}
wg.Wait()
assert.EqualValues(t, 100, c.Peek())
}