-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpool_test.go
117 lines (93 loc) · 2.25 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
package pool
import (
"fmt"
"testing"
"time"
)
func TestPoolPutGet(t *testing.T) {
var (
user = "root"
host = "127.0.0.1"
port = 2222
password = "secret"
)
go simpleSSHServer()
clientPool := NewPool(time.Minute*10, time.Minute*10, 1000, 3)
client, err := NewSSHClient(user, host, port, SetPassword(password))
if err != nil {
t.Errorf("NewSSHClient error:%v", err)
}
cacheKey := fmt.Sprintf("%s@%s:%d", user, host, port)
err = clientPool.Put(cacheKey, client)
if err != nil {
t.Errorf("Put error:%v", err)
}
_, ok := clientPool.Get(cacheKey)
if !ok {
t.Errorf("Test Get failed")
}
}
func TestPoolGetWithNew(t *testing.T) {
var (
user = "root"
host = "127.0.0.1"
port = 2222
password = "secret"
)
go simpleSSHServer()
clientPool := NewPool(time.Minute*10, time.Minute*10, 1000, 3)
cacheKey := fmt.Sprintf("%s@%s:%d", user, host, port)
_, err := clientPool.GetWithNew(cacheKey, user, host, port, SetPassword(password))
if err != nil {
t.Errorf("GetWithNew error:%v", err)
}
}
func TestPool_Delete(t *testing.T) {
var (
user = "root"
host = "127.0.0.1"
port = 2222
password = "secret"
)
go simpleSSHServer()
clientPool := NewPool(time.Minute*10, time.Minute*10, 1000, 3)
client, err := NewSSHClient(user, host, port, SetPassword(password))
if err != nil {
t.Errorf("NewSSHClient error:%v", err)
}
cacheKey := fmt.Sprintf("%s@%s:%d", user, host, port)
err = clientPool.Put(cacheKey, client)
if err != nil {
t.Errorf("Put error:%v", err)
}
clientPool.Delete(cacheKey)
_, ok := clientPool.Get(cacheKey)
if ok {
t.Errorf("Test Delete failed")
}
}
func TestPoolCleanup(t *testing.T) {
var (
user = "root"
host = "127.0.0.1"
port = 2222
password = "secret"
)
go simpleSSHServer()
clientPool := NewPool(time.Second*2, time.Second*2, 1000, 3)
defer clientPool.Close()
client, err := NewSSHClient(user, host, port, SetPassword(password))
if err != nil {
t.Errorf("NewSSHClient error:%v", err)
}
cacheKey := fmt.Sprintf("%s@%s:%d", user, host, port)
err = clientPool.Put(cacheKey, client)
if err != nil {
t.Errorf("Put error:%v", err)
}
time.Sleep(time.Second * 5)
_, ok := clientPool.Get(cacheKey)
if ok {
t.Errorf("Test Cleanup failed")
}
}