-
Notifications
You must be signed in to change notification settings - Fork 57
/
zmq4_pushpull_test.go
131 lines (109 loc) · 2.68 KB
/
zmq4_pushpull_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
119
120
121
122
123
124
125
126
127
128
129
130
131
// Copyright 2018 The go-zeromq Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package zmq4_test
import (
"context"
"fmt"
"reflect"
"testing"
"time"
"github.com/go-zeromq/zmq4"
"golang.org/x/sync/errgroup"
)
var (
pushpulls = []testCasePushPull{
{
name: "tcp-push-pull",
endpoint: must(EndPoint("tcp")),
push: zmq4.NewPush(bkg),
pull: zmq4.NewPull(bkg),
},
{
name: "ipc-push-pull",
endpoint: "ipc://ipc-push-pull",
push: zmq4.NewPush(bkg),
pull: zmq4.NewPull(bkg),
},
{
name: "inproc-push-pull",
endpoint: "inproc://push-pull",
push: zmq4.NewPush(bkg),
pull: zmq4.NewPull(bkg),
},
}
)
type testCasePushPull struct {
name string
skip bool
endpoint string
push zmq4.Socket
pull zmq4.Socket
}
func TestPushPull(t *testing.T) {
var (
hello = zmq4.NewMsg([]byte("HELLO WORLD"))
bye = zmq4.NewMsgFrom([]byte("GOOD"), []byte("BYE"))
)
for i := range pushpulls {
tc := pushpulls[i]
t.Run(tc.name, func(t *testing.T) {
defer tc.pull.Close()
defer tc.push.Close()
ep := tc.endpoint
cleanUp(ep)
if tc.skip {
t.Skipf(tc.name)
}
// t.Parallel()
ctx, timeout := context.WithTimeout(context.Background(), 20*time.Second)
defer timeout()
grp, _ := errgroup.WithContext(ctx)
grp.Go(func() error {
err := tc.push.Listen(ep)
if err != nil {
return fmt.Errorf("could not listen: %w", err)
}
if addr := tc.push.Addr(); addr == nil {
return fmt.Errorf("listener with nil Addr")
}
err = tc.push.Send(hello)
if err != nil {
return fmt.Errorf("could not send %v: %w", hello, err)
}
err = tc.push.Send(bye)
if err != nil {
return fmt.Errorf("could not send %v: %w", bye, err)
}
return err
})
grp.Go(func() error {
err := tc.pull.Dial(ep)
if err != nil {
return fmt.Errorf("could not dial: %w", err)
}
if addr := tc.pull.Addr(); addr != nil {
return fmt.Errorf("dialer with non-nil Addr")
}
msg, err := tc.pull.Recv()
if err != nil {
return fmt.Errorf("could not recv %v: %w", hello, err)
}
if got, want := msg, hello; !reflect.DeepEqual(got, want) {
return fmt.Errorf("recv1: got = %v, want= %v", got, want)
}
msg, err = tc.pull.Recv()
if err != nil {
return fmt.Errorf("could not recv %v: %w", bye, err)
}
if got, want := msg, bye; !reflect.DeepEqual(got, want) {
return fmt.Errorf("recv2: got = %v, want= %v", got, want)
}
return err
})
if err := grp.Wait(); err != nil {
t.Fatalf("error: %+v", err)
}
})
}
}