forked from cenkalti/rpc2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrpc2_test.go
98 lines (84 loc) · 1.66 KB
/
rpc2_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
package rpc2
import (
"net"
"testing"
"time"
)
const (
network = "tcp4"
addr = "127.0.0.1:5000"
)
func TestTCPGOB(t *testing.T) {
type Args struct{ A, B int }
type Reply int
lis, err := net.Listen(network, addr)
if err != nil {
t.Fatal(err)
}
srv := NewServer()
srv.Handle("add", func(client *Client, args *Args, reply *Reply) error {
*reply = Reply(args.A + args.B)
var rep Reply
err := client.Call("mult", Args{2, 3}, &rep)
if err != nil {
t.Fatal(err)
}
if rep != 6 {
t.Fatalf("not expected: %d", rep)
}
return nil
})
number := make(chan int, 1)
srv.Handle("set", func(client *Client, i int, _ *struct{}) error {
number <- i
return nil
})
go srv.Accept(lis)
conn, err := net.Dial(network, addr)
if err != nil {
t.Fatal(err)
}
clt := NewClient(conn)
clt.Handle("mult", func(client *Client, args *Args, reply *Reply) error {
*reply = Reply(args.A * args.B)
return nil
})
go clt.Run()
defer clt.Close()
// Test Call.
var rep Reply
err = clt.Call("add", Args{1, 2}, &rep)
if err != nil {
t.Fatal(err)
}
if rep != 3 {
t.Fatalf("not expected: %d", rep)
}
// Test notification.
err = clt.Notify("set", 6)
if err != nil {
t.Fatal(err)
}
select {
case i := <-number:
if i != 6 {
t.Fatalf("unexpected number: %d", i)
}
case <-time.After(time.Second):
t.Fatal("did not get notification")
}
// Test blocked request
clt.SetBlocking(true)
err = clt.Call("add", Args{1, 2}, &rep)
if err != nil {
t.Fatal(err)
}
if rep != 3 {
t.Fatalf("not expected: %d", rep)
}
// Test undefined method.
err = clt.Call("foo", 1, &rep)
if err.Error() != "rpc2: can't find method foo" {
t.Fatal(err)
}
}