-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdebounce_test.go
157 lines (118 loc) · 2.38 KB
/
debounce_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
// Copyright 2024 Bjørn Erik Pedersen
// SPDX-License-Identifier: MIT
package debounce_test
import (
"fmt"
"sync"
"sync/atomic"
"testing"
"time"
"github.com/bep/debounce"
)
func TestDebounce(t *testing.T) {
var (
counter1 uint64
counter2 uint64
)
f1 := func() {
atomic.AddUint64(&counter1, 1)
}
f2 := func() {
atomic.AddUint64(&counter2, 1)
}
f3 := func() {
atomic.AddUint64(&counter2, 2)
}
debounced := debounce.New(100 * time.Millisecond)
for i := 0; i < 3; i++ {
for j := 0; j < 10; j++ {
debounced(f1)
}
time.Sleep(200 * time.Millisecond)
}
for i := 0; i < 4; i++ {
for j := 0; j < 10; j++ {
debounced(f2)
}
for j := 0; j < 10; j++ {
debounced(f3)
}
time.Sleep(200 * time.Millisecond)
}
c1 := int(atomic.LoadUint64(&counter1))
c2 := int(atomic.LoadUint64(&counter2))
if c1 != 3 {
t.Error("Expected count 3, was", c1)
}
if c2 != 8 {
t.Error("Expected count 8, was", c2)
}
}
func TestDebounceConcurrentAdd(t *testing.T) {
var wg sync.WaitGroup
var flag uint64
debounced := debounce.New(100 * time.Millisecond)
for i := 0; i < 10; i++ {
wg.Add(1)
go func() {
defer wg.Done()
debounced(func() {
atomic.CompareAndSwapUint64(&flag, 0, 1)
})
}()
}
wg.Wait()
time.Sleep(500 * time.Millisecond)
c := int(atomic.LoadUint64(&flag))
if c != 1 {
t.Error("Flag not set")
}
}
// Issue #1
func TestDebounceDelayed(t *testing.T) {
var (
counter1 uint64
)
f1 := func() {
atomic.AddUint64(&counter1, 1)
}
debounced := debounce.New(100 * time.Millisecond)
time.Sleep(110 * time.Millisecond)
debounced(f1)
time.Sleep(200 * time.Millisecond)
c1 := int(atomic.LoadUint64(&counter1))
if c1 != 1 {
t.Error("Expected count 1, was", c1)
}
}
func BenchmarkDebounce(b *testing.B) {
var counter uint64
f := func() {
atomic.AddUint64(&counter, 1)
}
debounced := debounce.New(100 * time.Millisecond)
b.ResetTimer()
for i := 0; i < b.N; i++ {
debounced(f)
}
c := int(atomic.LoadUint64(&counter))
if c != 0 {
b.Fatal("Expected count 0, was", c)
}
}
func ExampleNew() {
var counter uint64
f := func() {
atomic.AddUint64(&counter, 1)
}
debounced := debounce.New(100 * time.Millisecond)
for i := 0; i < 3; i++ {
for j := 0; j < 10; j++ {
debounced(f)
}
time.Sleep(200 * time.Millisecond)
}
c := int(atomic.LoadUint64(&counter))
fmt.Println("Counter is", c)
// Output: Counter is 3
}