-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient_test.go
107 lines (92 loc) · 2.64 KB
/
client_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
package drpc
import (
"context"
"fmt"
"net"
"os"
"runtime"
"strings"
"testing"
"time"
)
// func assert(condition bool, msg string, v ...interface{}) {
// if !condition {
// panic(fmt.Sprintf("assertion failed: "+msg, v...))
// }
// }
// 用于测试连接超时。NewClient 函数耗时 2s,ConnectionTimeout 分别设置为 1s 和 0 两种场景。
func TestClient_dialTimeout(t *testing.T) {
t.Parallel()
listen, _ := net.Listen("tcp", ":0")
f := func(conn net.Conn, opt *Option) (client *Client, err error) {
_ = conn.Close()
time.Sleep(time.Second * 2)
return nil, nil
}
t.Run("timeout", func(t *testing.T) {
_, err := dialTimeout(f, "tcp", listen.Addr().String(), &Option{
ConnectTimeout: time.Second,
})
fmt.Println(err)
assert(err != nil && strings.Contains(err.Error(), "connect timeout"), "expect a timeout error")
})
t.Run("0", func(t *testing.T) {
_, err := dialTimeout(f, "tcp", listen.Addr().String(), &Option{ConnectTimeout: 0})
assert(err == nil, "0 means no limit")
})
}
// 用于测试处理超时。 Bar.Timeout 耗时 2s,
// 场景一:客户端设置超时时间为 1s,服务端无限制;场景二,服务端设置超时时间为1s,客户端无限制。
type Bar int
func (b Bar) Timeout(argv int, reply *int) error {
time.Sleep(time.Second * 2)
return nil
}
func startServer(addr chan string) {
var b Bar
_ = Register(&b)
// pick a free port
l, _ := net.Listen("tcp", ":0")
addr <- l.Addr().String()
Accept(l)
}
func TestClient_Call(t *testing.T) {
t.Parallel()
addrCh := make(chan string)
go startServer(addrCh)
addr := <-addrCh
time.Sleep(time.Second)
t.Run("client timeout", func(t *testing.T) {
client, _ := Dial("tcp", addr)
ctx, _ := context.WithTimeout(context.Background(), time.Second)
var reply int
err := client.Call(ctx, "Bar.Timeout", 1, &reply)
assert(err != nil && strings.Contains(err.Error(), ctx.Err().Error()), "expect a timeout error")
})
t.Run("server timeout", func(t *testing.T) {
client, _ := Dial("tcp", addr, &Option{HandleTimeout: time.Second})
var reply int
err := client.Call(context.Background(), "Bar.Timeout", 1, &reply)
fmt.Print(err)
assert(err != nil && strings.Contains(err.Error(), "handle timeout"), "expect a timeout error")
})
}
// 待测试
func TestXDial(t *testing.T) {
if runtime.GOOS == "linux" {
ch := make(chan struct{})
addr := "/tmp/drpc.sock"
go func() {
_ = os.Remove(addr)
l, err := net.Listen("unix", addr)
if err != nil {
t.Fatal("failed to listen unix socket")
}
ch <- struct{}{}
Accept(l)
}()
<-ch
_, err := XDial("unix@" + addr)
assert(err == nil, "failed to connect unix socket")
}
}