-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpool_grpc_test.go
118 lines (104 loc) · 2.23 KB
/
pool_grpc_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
package pool
import (
"log"
"reflect"
"sync"
"testing"
"time"
"google.golang.org/grpc"
)
func TestNewGRPCPool(t *testing.T) {
type args struct {
o *Options
dialOptions []grpc.DialOption
}
tests := []struct {
name string
args args
want *GRPCPool
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := NewGRPCPool(tt.args.o, tt.args.dialOptions...)
if (err != nil) != tt.wantErr {
t.Errorf("NewGRPCPool() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("NewGRPCPool() = %v, want %v", got, tt.want)
}
})
}
}
func TestGRPCPool_Get(t *testing.T) {
type fields struct {
Mu sync.Mutex
IdleTimeout time.Duration
conns chan *grpcIdleConn
factory func() (*grpc.ClientConn, error)
close func(*grpc.ClientConn) error
}
tests := []struct {
name string
fields fields
want *grpc.ClientConn
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &GRPCPool{
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("GRPCPool.Get() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("GRPCPool.Get() = %v, want %v", got, tt.want)
}
})
}
}
func ExampleGRPCPool() {
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 := NewGRPCPool(options, grpc.WithInsecure())
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())
}