-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection_pool_test.go
83 lines (75 loc) · 1.73 KB
/
connection_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
package memcached
import (
"context"
"log"
"testing"
"github.com/stretchr/testify/assert"
)
func TestConnectionPool_MaybeOpenNewConnections(t *testing.T) {
_cl := New(ss, "")
defer _cl.Close()
_cl.SetConnMaxOpen(10)
cp := _cl.cps[ss[0].getNodeName()]
cp.mu.Lock()
defer cp.mu.Unlock()
req := make(chan connRequest, 1)
reqKey := cp.nextRequest
cp.nextRequest++
cp.connRequests[reqKey] = req
cp.maybeOpenNewConnections()
}
func TestConnectionPool_OpenNewConnection(t *testing.T) {
_cl := New(ss, "")
defer _cl.Close()
cp := _cl.cps[ss[0].getNodeName()]
cp.openNewConnection()
// already close
cpClose := _cl.cps[ss[1].getNodeName()]
cpClose.mu.Lock()
cpClose.closed = true
cpClose.mu.Unlock()
cpClose.openNewConnection()
}
func TestNewConn(t *testing.T) {
_ss := []Server{
{Host: "127.0.0.1", Port: 11211},
{Host: "127.0.0.1", Port: 99999},
}
_cl := New(_ss, "")
defer _cl.Close()
_cl.SetLogger(log.Printf)
cp1 := _cl.cps[_ss[0].getNodeName()]
cp2 := _cl.cps[_ss[1].getNodeName()]
cp1.mu.Lock()
defer cp1.mu.Unlock()
c, err := cp1.newConn()
assert.NotNil(t, c)
assert.Nil(t, err)
c.close()
c2, err := cp2.newConn()
assert.Nil(t, c2)
assert.NotNil(t, err)
}
func TestConnectionPool_PutConnLocked(t *testing.T) {
_cl := New(ss, "")
defer _cl.Close()
cp := _cl.cps[ss[0].getNodeName()]
cn, err := cp._conn(context.Background(), true)
if err != nil {
t.Fatalf("Failed _conn: %+v", err)
}
cp.mu.Lock()
cp.putConnLocked(cn, err)
cp.mu.Unlock()
cn, err = cp._conn(context.Background(), true)
if err != nil {
t.Fatalf("Failed _conn: %+v", err)
}
cp.mu.Lock()
req := make(chan connRequest, 1)
reqKey := cp.nextRequest
cp.nextRequest++
cp.connRequests[reqKey] = req
cp.putConnLocked(cn, err)
cp.mu.Unlock()
}