-
Notifications
You must be signed in to change notification settings - Fork 1
/
semaphore_test.go
263 lines (242 loc) · 5.06 KB
/
semaphore_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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
package semaphore
import (
"sync"
"sync/atomic"
"testing"
"time"
)
type testSemaphore struct {
s *Semaphore
value int64 // value contains an upper bound on the current semaphore's value
err chan string
}
func (s *testSemaphore) setError(e string) {
select {
case s.err <- e:
default:
}
}
func (s *testSemaphore) Error() string {
select {
case e := <-s.err:
return e
default:
return ""
}
}
func (s *testSemaphore) Acquire(n int) {
s.s.Acquire(n)
v := atomic.AddInt64(&s.value, int64(-n))
if v < 0 {
s.setError("Acquire lowered the semaphore to a negative value")
}
}
func (s *testSemaphore) TimedAcquire(n int, delay time.Duration) bool {
result := s.s.TimedAcquire(n, delay)
if result {
v := atomic.AddInt64(&s.value, int64(-n))
if v < 0 {
s.setError("TimedAcquire lowered the semaphore to a negative value")
}
}
return result
}
func (s *testSemaphore) Drain() int {
n := s.s.Drain()
v := atomic.AddInt64(&s.value, int64(-n))
if v < 0 {
s.setError("Drain lowered the semaphore to a negative value")
}
return n
}
func (s *testSemaphore) Release(n int) {
atomic.AddInt64(&s.value, int64(n))
s.s.Release(n)
}
func newTestSemaphore(value int) *testSemaphore {
return &testSemaphore{
s: New(value),
value: int64(value),
err: make(chan string, 1),
}
}
func TestSemaphore(t *testing.T) {
const P = 5
const N = 1000
s := newTestSemaphore(P)
var wg sync.WaitGroup
wg.Add(1)
go func() {
for j := 0; j < N; j++ {
v := s.Drain()
s.Release(v)
}
wg.Done()
}()
for i := 0; i < P; i++ {
wg.Add(1)
go func() {
for j := 0; j < N; j++ {
s.Acquire(1)
s.Release(1)
s.Acquire(2)
s.Release(2)
}
wg.Done()
}()
}
wg.Wait()
if err := s.Error(); err != "" {
t.Error(err)
}
}
func TestDrain(t *testing.T) {
const P = 5
const N = 1000
s := newTestSemaphore(P)
var wg sync.WaitGroup
for i := 0; i < P; i++ {
wg.Add(1)
go func() {
for j := 0; j < N; j++ {
v := s.Drain()
s.Release(v)
}
wg.Done()
}()
}
wg.Wait()
if err := s.Error(); err != "" {
t.Error(err)
}
}
func TestCancel(t *testing.T) {
ch := make(chan struct{})
s := New(1)
if s.AcquireCancellable(1, ch) != true {
t.Fatal("AcquireCancellable spuriously cancelled.")
}
s.Release(1)
go func() {
time.Sleep(time.Duration(100) * time.Millisecond)
close(ch)
}()
if s.AcquireCancellable(2, ch) != false {
t.Fatal("AcquireCancellable incorrectly succeeded")
}
if v := s.Drain(); v != 1 {
t.Errorf("Drain drained %d units when %d should have been available", v, 1)
}
}
func TestTimedAcquire(t *testing.T) {
s := New(1)
if s.TimedAcquire(1, time.Duration(100)*time.Millisecond) != true {
t.Fatal("TimedAcquire spuriously failed")
}
s.Release(1)
if s.TimedAcquire(2, time.Duration(100)*time.Millisecond) != false {
t.Fatal("TimedAcquire incorrectly succeeded")
}
if v := s.Drain(); v != 1 {
t.Errorf("Drain drained %d units when %d should have been available", v, 1)
}
}
func TestCancelConcurrent(t *testing.T) {
const M = 5
const N = 5
ch := make(chan struct{}, M)
for i := 0; i < M; i++ {
ch <- struct{}{}
}
results := make(chan bool, M+N)
s := New(2*N + 1)
for i := 0; i < M+N; i++ {
go func() {
results <- s.AcquireCancellable(2, ch)
}()
}
successes := 0
for i := 0; i < M+N; i++ {
if <-results {
successes++
}
}
close(results)
if successes != N {
t.Fatalf("Expected %d AcquireCancellable calls to succeed; instead %d succeeded.", N, successes)
}
if v := s.Drain(); v != 1 {
t.Errorf("Drain drained %d units when %d should have been available", v, 1)
}
}
func TestPromptCancel(t *testing.T) {
s := New(0)
result := make(chan bool)
go func() {
result <- s.AcquireCancellable(1, nil)
}()
time.Sleep(time.Duration(100) * time.Millisecond)
cancel := make(chan struct{}, 1)
cancel <- struct{}{}
if s.AcquireCancellable(1, cancel) == true {
t.Fatal("AcquireCancellable succeeded on a zero-valued semaphore.")
}
s.Release(1)
if <-result != true {
t.Fatal("AcquireCancellable spuriously failed.")
}
}
func BenchmarkSemaphore(b *testing.B) {
const P = 10
const UnitSize = 1000
N := int64(b.N / UnitSize / 4)
s := newTestSemaphore(P)
done := make(chan struct{}, P)
for i := 0; i < P; i++ {
go func() {
for atomic.AddInt64(&N, int64(-1)) > 0 {
for j := 0; j < UnitSize; j++ {
s.Acquire(1)
s.Release(1)
s.Acquire(2)
s.Release(2)
}
}
done <- struct{}{}
}()
}
for i := 0; i < P; i++ {
<-done
}
if err := s.Error(); err != "" {
b.Error(err)
}
}
func BenchmarkTimedAcquire(b *testing.B) {
const P = 10
const UnitSize = 1000
N := int64(b.N / UnitSize / 4)
s := newTestSemaphore(P)
done := make(chan struct{}, P)
for i := 0; i < P; i++ {
go func() {
for atomic.AddInt64(&N, int64(-1)) > 0 {
for j := 0; j < UnitSize; j++ {
if s.TimedAcquire(1, time.Duration(100)*time.Millisecond) {
s.Release(1)
}
if s.TimedAcquire(2, time.Duration(100)*time.Millisecond) {
s.Release(2)
}
}
}
done <- struct{}{}
}()
}
for i := 0; i < P; i++ {
<-done
}
if err := s.Error(); err != "" {
b.Error(err)
}
}