forked from nanomsg/nng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubsub.c
168 lines (131 loc) · 4.24 KB
/
pubsub.c
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
//
// Copyright 2017 Garrett D'Amore <[email protected]>
// Copyright 2017 Capitar IT Group BV <[email protected]>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
//
#include "convey.h"
#include "nng.h"
#include <string.h>
#define APPENDSTR(m, s) nng_msg_append(m, s, strlen(s))
#define CHECKSTR(m, s) \
So(nng_msg_len(m) == strlen(s)); \
So(memcmp(nng_msg_body(m), s, strlen(s)) == 0)
TestMain("PUB/SUB pattern", {
const char *addr = "inproc://test";
Reset({ nng_fini(); });
Convey("We can create a PUB socket", {
nng_socket pub;
So(nng_pub_open(&pub) == 0);
Reset({ nng_close(pub); });
Convey("Protocols match", {
So(nng_protocol(pub) == NNG_PROTO_PUB);
So(nng_peer(pub) == NNG_PROTO_SUB);
});
Convey("Recv fails", {
nng_msg *msg;
So(nng_recvmsg(pub, &msg, 0) == NNG_ENOTSUP);
});
});
Convey("We can create a SUB socket", {
nng_socket sub;
So(nng_sub_open(&sub) == 0);
Reset({ nng_close(sub); });
Convey("Protocols match", {
So(nng_protocol(sub) == NNG_PROTO_SUB);
So(nng_peer(sub) == NNG_PROTO_PUB);
});
Convey("Send fails", {
nng_msg *msg;
So(nng_msg_alloc(&msg, 0) == 0);
So(nng_sendmsg(sub, msg, 0) == NNG_ENOTSUP);
nng_msg_free(msg);
});
});
Convey("We can create a linked PUB/SUB pair", {
nng_socket pub;
nng_socket sub;
So(nng_pub_open(&pub) == 0);
So(nng_sub_open(&sub) == 0);
Reset({
nng_close(pub);
nng_close(sub);
});
// Most applications will usually have the pub listen,
// and the sub dial. However, this creates a problem
// for our tests, since we can wind up trying to push
// data before the pipe is fully registered (the accept
// runs asynchronously.)
So(nng_listen(sub, addr, NULL, 0) == 0);
So(nng_dial(pub, addr, NULL, 0) == 0);
nng_usleep(20000); // give time for connecting threads
Convey("Sub can subscribe", {
So(nng_setopt(sub, NNG_OPT_SUB_SUBSCRIBE, "ABC", 3) ==
0);
So(nng_setopt(sub, NNG_OPT_SUB_SUBSCRIBE, "", 0) == 0);
Convey("Unsubscribe works", {
So(nng_setopt(sub, NNG_OPT_SUB_UNSUBSCRIBE,
"ABC", 3) == 0);
So(nng_setopt(sub, NNG_OPT_SUB_UNSUBSCRIBE, "",
0) == 0);
So(nng_setopt(sub, NNG_OPT_SUB_UNSUBSCRIBE, "",
0) == NNG_ENOENT);
So(nng_setopt(sub, NNG_OPT_SUB_UNSUBSCRIBE,
"HELLO", 0) == NNG_ENOENT);
});
});
Convey("Pub cannot subscribe", {
So(nng_setopt(pub, NNG_OPT_SUB_SUBSCRIBE, "", 0) ==
NNG_ENOTSUP);
});
Convey("Subs can receive from pubs", {
nng_msg *msg;
So(nng_setopt(sub, NNG_OPT_SUB_SUBSCRIBE, "/some/",
strlen("/some/")) == 0);
So(nng_setopt_usec(sub, NNG_OPT_RECVTIMEO, 90000) ==
0);
So(nng_msg_alloc(&msg, 0) == 0);
APPENDSTR(msg, "/some/like/it/hot");
So(nng_sendmsg(pub, msg, 0) == 0);
So(nng_recvmsg(sub, &msg, 0) == 0);
CHECKSTR(msg, "/some/like/it/hot");
nng_msg_free(msg);
So(nng_msg_alloc(&msg, 0) == 0);
APPENDSTR(msg, "/somewhere/over/the/rainbow");
CHECKSTR(msg, "/somewhere/over/the/rainbow");
So(nng_sendmsg(pub, msg, 0) == 0);
So(nng_recvmsg(sub, &msg, 0) == NNG_ETIMEDOUT);
So(nng_msg_alloc(&msg, 0) == 0);
APPENDSTR(msg, "/some/day/some/how");
CHECKSTR(msg, "/some/day/some/how");
So(nng_sendmsg(pub, msg, 0) == 0);
So(nng_recvmsg(sub, &msg, 0) == 0);
CHECKSTR(msg, "/some/day/some/how");
nng_msg_free(msg);
});
Convey("Subs without subsciptions don't receive", {
nng_msg *msg;
So(nng_setopt_usec(sub, NNG_OPT_RECVTIMEO, 90000) ==
0);
So(nng_msg_alloc(&msg, 0) == 0);
APPENDSTR(msg, "/some/don't/like/it");
So(nng_sendmsg(pub, msg, 0) == 0);
So(nng_recvmsg(sub, &msg, 0) == NNG_ETIMEDOUT);
});
Convey("Subs in raw receive", {
nng_msg *msg;
So(nng_setopt_usec(sub, NNG_OPT_RECVTIMEO, 90000) ==
0);
So(nng_setopt_int(sub, NNG_OPT_RAW, 1) == 0);
So(nng_msg_alloc(&msg, 0) == 0);
APPENDSTR(msg, "/some/like/it/raw");
So(nng_sendmsg(pub, msg, 0) == 0);
So(nng_recvmsg(sub, &msg, 0) == 0);
CHECKSTR(msg, "/some/like/it/raw");
nng_msg_free(msg);
});
});
})