-
Notifications
You must be signed in to change notification settings - Fork 35
/
pool_rpc_test.go
116 lines (103 loc) · 2.1 KB
/
pool_rpc_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
package pool
import (
"log"
"net/rpc"
"reflect"
"sync"
"testing"
"time"
)
func TestNewRPCPool(t *testing.T) {
type args struct {
o *Options
}
tests := []struct {
name string
args args
want *RPCPool
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := NewRPCPool(tt.args.o)
if (err != nil) != tt.wantErr {
t.Errorf("NewRPCPool() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("NewRPCPool() = %v, want %v", got, tt.want)
}
})
}
}
func TestRPCPool_Get(t *testing.T) {
type fields struct {
Mu sync.Mutex
IdleTimeout time.Duration
conns chan *rpcIdleConn
factory func() (*rpc.Client, error)
close func(*rpc.Client) error
}
tests := []struct {
name string
fields fields
want *rpc.Client
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &RPCPool{
Mu: tt.fields.Mu,
IdleTimeout: tt.fields.IdleTimeout,
conns: tt.fields.conns,
factory: tt.fields.factory,
close: tt.fields.close,
}
got, err := c.Get()
if (err != nil) != tt.wantErr {
t.Errorf("RPCPool.Get() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("RPCPool.Get() = %v, want %v", got, tt.want)
}
})
}
}
func ExampleRPCPool() {
options := &Options{
InitTargets: []string{"127.0.0.1:8080"},
InitCap: 5,
MaxCap: 30,
DialTimeout: time.Second * 5,
IdleTimeout: time.Second * 60,
ReadTimeout: time.Second * 5,
WriteTimeout: time.Second * 5,
}
p, err := NewRPCPool(options)
if err != nil {
log.Printf("%#v\n", err)
return
}
if p == nil {
log.Printf("p= %#v\n", p)
return
}
defer p.Close()
//todo
//danamic update targets
//options.Input()<-&[]string{}
conn, err := p.Get()
if err != nil {
log.Printf("%#v\n", err)
return
}
defer p.Put(conn)
//todo
//conn.DoSomething()
log.Printf("len=%d\n", p.IdleCount())
}