-
Notifications
You must be signed in to change notification settings - Fork 156
/
pool_test.go
213 lines (201 loc) · 4.77 KB
/
pool_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
package rueidis
import (
"errors"
"runtime"
"sync/atomic"
"testing"
)
var dead = deadFn()
//gocyclo:ignore
func TestPool(t *testing.T) {
defer ShouldNotLeaked(SetupLeakDetection())
setup := func(size int) (*pool, *int32) {
var count int32
return newPool(size, dead, func() wire {
atomic.AddInt32(&count, 1)
closed := false
return &mockWire{
CloseFn: func() {
closed = true
},
ErrorFn: func() error {
if closed {
return ErrClosing
}
return nil
},
}
}), &count
}
t.Run("DefaultPoolSize", func(t *testing.T) {
p := newPool(0, dead, func() wire { return nil })
if cap(p.list) == 0 {
t.Fatalf("DefaultPoolSize is not applied")
}
})
t.Run("Reuse", func(t *testing.T) {
pool, count := setup(100)
for i := 0; i < 1000; i++ {
pool.Store(pool.Acquire())
}
if atomic.LoadInt32(count) != 1 {
t.Fatalf("pool does not reuse connection")
}
})
t.Run("NotExceed", func(t *testing.T) {
conn := make([]wire, 100)
pool, count := setup(len(conn))
for i := 0; i < len(conn); i++ {
conn[i] = pool.Acquire()
}
if atomic.LoadInt32(count) != 100 {
t.Fatalf("unexpected acquire count")
}
go func() {
for i := 0; i < len(conn); i++ {
pool.Store(conn[i])
}
}()
for i := 0; i < len(conn); i++ {
pool.Acquire()
}
if atomic.LoadInt32(count) > 100 {
t.Fatalf("pool must not exceed the size limit")
}
})
t.Run("NoShare", func(t *testing.T) {
conn := make([]wire, 100)
pool, _ := setup(len(conn))
for i := 0; i < len(conn); i++ {
w := pool.Acquire()
go pool.Store(w)
}
for i := 0; i < len(conn); i++ {
conn[i] = pool.Acquire()
}
for i := 0; i < len(conn); i++ {
for j := i + 1; j < len(conn); j++ {
if conn[i] == conn[j] {
t.Fatalf("pool must not output acquired connection")
}
}
}
})
t.Run("Close", func(t *testing.T) {
pool, count := setup(2)
w1 := pool.Acquire()
w2 := pool.Acquire()
if w1.Error() != nil {
t.Fatalf("unexpected err %v", w1.Error())
}
if w2.Error() != nil {
t.Fatalf("unexpected err %v", w2.Error())
}
if atomic.LoadInt32(count) != 2 {
t.Fatalf("pool does not make new wire")
}
pool.Store(w1)
pool.Close()
if w1.Error() != ErrClosing {
t.Fatalf("pool does not close existing wire after Close()")
}
for i := 0; i < 100; i++ {
if rw := pool.Acquire(); rw != dead {
t.Fatalf("pool does not return the dead wire after Close()")
}
}
pool.Store(w2)
if w2.Error() != ErrClosing {
t.Fatalf("pool does not close stored wire after Close()")
}
})
t.Run("Close Empty", func(t *testing.T) {
pool, count := setup(2)
w1 := pool.Acquire()
if w1.Error() != nil {
t.Fatalf("unexpected err %v", w1.Error())
}
pool.Close()
w2 := pool.Acquire()
if w2.Error() != ErrClosing {
t.Fatalf("pool does not close wire after Close()")
}
if atomic.LoadInt32(count) != 1 {
t.Fatalf("pool should not make new wire")
}
for i := 0; i < 100; i++ {
if rw := pool.Acquire(); rw != dead {
t.Fatalf("pool does not return the dead wire after Close()")
}
}
pool.Store(w1)
if w1.Error() != ErrClosing {
t.Fatalf("pool does not close existing wire after Close()")
}
})
t.Run("Close Waiting", func(t *testing.T) {
pool, count := setup(1)
w1 := pool.Acquire()
if w1.Error() != nil {
t.Fatalf("unexpected err %v", w1.Error())
}
pending := int64(0)
for i := 0; i < 100; i++ {
go func() {
atomic.AddInt64(&pending, 1)
if rw := pool.Acquire(); rw != dead {
t.Errorf("pool does not return the dead wire after Close()")
}
atomic.AddInt64(&pending, -1)
}()
}
for atomic.LoadInt64(&pending) != 100 {
runtime.Gosched()
}
if atomic.LoadInt32(count) != 1 {
t.Fatalf("pool should not make new wire")
}
pool.Close()
for atomic.LoadInt64(&pending) != 0 {
runtime.Gosched()
}
pool.Store(w1)
if w1.Error() != ErrClosing {
t.Fatalf("pool does not close existing wire after Close()")
}
})
}
func TestPoolError(t *testing.T) {
defer ShouldNotLeaked(SetupLeakDetection())
setup := func(size int) (*pool, *int32) {
var count int32
return newPool(size, dead, func() wire {
w := &pipe{}
w.pshks.Store(emptypshks)
c := atomic.AddInt32(&count, 1)
if c%2 == 0 {
w.error.Store(&errs{error: errors.New("any")})
}
return w
}), &count
}
t.Run("NotStoreErrConn", func(t *testing.T) {
conn := make([]wire, 100)
pool, count := setup(len(conn))
for i := 0; i < len(conn); i++ {
conn[i] = pool.Acquire()
}
if atomic.LoadInt32(count) != int32(len(conn)) {
t.Fatalf("unexpected acquire count")
}
for i := 0; i < len(conn); i++ {
pool.Store(conn[i])
}
for i := 0; i < len(conn); i++ {
conn[i] = pool.Acquire()
}
if atomic.LoadInt32(count) != int32(len(conn)+len(conn)/2) {
t.Fatalf("unexpected acquire count")
}
})
}