zhangmeng
2023-05-16 1b4fc8c66026c77abf734126b4e7662e386ec0f5
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
package nsqclient
 
import (
    "math/rand"
    "sync"
    "testing"
    "time"
 
    "github.com/nsqio/go-nsq"
)
 
var (
    InitialCap = 2
    MaximumCap = 10
    factory    = func() (*nsq.Producer, error) {
        config := nsq.NewConfig()
        return nsq.NewProducer(":4160", config)
    }
)
 
func newChannelPool() (Pool, error) {
    return NewChannelPool(InitialCap, MaximumCap, factory)
}
 
func TestNew(t *testing.T) {
    _, err := newChannelPool()
    if err != nil {
        t.Errorf("New error: %s", err)
    }
}
 
func TestPool_Get(t *testing.T) {
    p, _ := newChannelPool()
    defer p.Close()
 
    _, err := p.Get()
    if err != nil {
        t.Errorf("Get error: %s", err)
    }
 
    // after one get, current capacity should be lowered by one.
    if p.Len() != (InitialCap - 1) {
        t.Errorf("Get error. Expecting %d, got %d",
            (InitialCap - 1), p.Len())
    }
 
    // get them all
    var wg sync.WaitGroup
    for i := 0; i < (InitialCap - 1); i++ {
        wg.Add(1)
        go func() {
            defer wg.Done()
            _, err := p.Get()
            if err != nil {
                t.Errorf("Get error: %s", err)
            }
        }()
    }
    wg.Wait()
 
    if p.Len() != 0 {
        t.Errorf("Get error. Expecting %d, got %d",
            (InitialCap - 1), p.Len())
    }
 
    _, err = p.Get()
    if err != nil {
        t.Errorf("Get error: %s", err)
    }
}
 
func TestPool_Put(t *testing.T) {
    p, err := NewChannelPool(0, 30, factory)
    if err != nil {
        t.Fatal(err)
    }
    defer p.Close()
 
    // get/create from the pool
    conns := make([]*PoolConn, MaximumCap)
    for i := 0; i < MaximumCap; i++ {
        conn, _ := p.Get()
        conns[i] = conn
    }
 
    // now put them all back
    for _, conn := range conns {
        conn.Close()
    }
 
    if p.Len() != MaximumCap {
        t.Errorf("Put error len. Expecting %d, got %d",
            1, p.Len())
    }
 
    conn, _ := p.Get()
    p.Close() // close pool
 
    conn.Close() // try to put into a full pool
    if p.Len() != 0 {
        t.Errorf("Put error. Closed pool shouldn't allow to put connections.")
    }
}
 
func TestPool_PutUnusableConn(t *testing.T) {
    p, _ := newChannelPool()
    defer p.Close()
 
    // ensure pool is not empty
    conn, _ := p.Get()
    conn.Close()
 
    poolSize := p.Len()
    conn, _ = p.Get()
    conn.Close()
    if p.Len() != poolSize {
        t.Errorf("Pool size is expected to be equal to initial size")
    }
 
    conn, _ = p.Get()
    conn.MarkUnusable()
 
    conn.Close()
    if p.Len() != poolSize-1 {
        t.Errorf("Pool size is expected to be initial_size - 1 [%d:%d]", p.Len(), poolSize-1)
    }
}
 
func TestPool_UsedCapacity(t *testing.T) {
    p, _ := newChannelPool()
    defer p.Close()
 
    if p.Len() != InitialCap {
        t.Errorf("InitialCap error. Expecting %d, got %d",
            InitialCap, p.Len())
    }
}
 
func TestPool_Close(t *testing.T) {
    p, _ := newChannelPool()
 
    // now close it and test all cases we are expecting.
    p.Close()
 
    c := p.(*channelPool)
 
    if c.conns != nil {
        t.Errorf("Close error, conns channel should be nil")
    }
 
    if c.factory != nil {
        t.Errorf("Close error, factory should be nil")
    }
 
    _, err := p.Get()
    if err == nil {
        t.Errorf("Close error, get conn should return an error")
    }
 
    if p.Len() != 0 {
        t.Errorf("Close error used capacity. Expecting 0, got %d", p.Len())
    }
}
 
func TestPoolConcurrent(t *testing.T) {
    p, _ := newChannelPool()
    pipe := make(chan *PoolConn, 0)
 
    go func() {
        p.Close()
    }()
 
    for i := 0; i < MaximumCap; i++ {
        go func() {
            conn, _ := p.Get()
 
            pipe <- conn
        }()
 
        go func() {
            conn := <-pipe
            if conn == nil {
                return
            }
            conn.Close()
        }()
    }
}
 
func TestPoolConcurrent2(t *testing.T) {
    p, _ := NewChannelPool(0, 30, factory)
 
    var wg sync.WaitGroup
 
    go func() {
        for i := 0; i < 10; i++ {
            wg.Add(1)
            go func(i int) {
                conn, _ := p.Get()
                time.Sleep(time.Millisecond * time.Duration(rand.Intn(100)))
                conn.Close()
                wg.Done()
            }(i)
        }
    }()
 
    for i := 0; i < 10; i++ {
        wg.Add(1)
        go func(i int) {
            conn, _ := p.Get()
            time.Sleep(time.Millisecond * time.Duration(rand.Intn(100)))
            conn.Close()
            wg.Done()
        }(i)
    }
 
    wg.Wait()
}