Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
da1e9a17
Commit
da1e9a17
authored
May 16, 2013
by
Pieter Hintjens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaned up test pingpong code
parent
342e576e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
22 deletions
+26
-22
testutil.hpp
tests/testutil.hpp
+26
-22
No files found.
tests/testutil.hpp
View file @
da1e9a17
...
...
@@ -17,59 +17,63 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __
ZMQ_TEST_
TESTUTIL_HPP_INCLUDED__
#define __
ZMQ_TEST_
TESTUTIL_HPP_INCLUDED__
#ifndef __TESTUTIL_HPP_INCLUDED__
#define __TESTUTIL_HPP_INCLUDED__
#include "../include/zmq.h"
#include <string.h>
#undef NDEBUG
#include <assert.h>
// Bounce a message from client to server and back
// For REQ/REP or DEALER/DEALER pairs only
static
void
bounce
(
void
*
s
b
,
void
*
sc
)
bounce
(
void
*
s
erver
,
void
*
client
)
{
const
char
*
content
=
"12345678ABCDEFGH12345678abcdefgh"
;
// Send
the message.
int
rc
=
zmq_send
(
sc
,
content
,
32
,
ZMQ_SNDMORE
);
// Send
message from client to server
int
rc
=
zmq_send
(
client
,
content
,
32
,
ZMQ_SNDMORE
);
assert
(
rc
==
32
);
rc
=
zmq_send
(
sc
,
content
,
32
,
0
);
rc
=
zmq_send
(
client
,
content
,
32
,
0
);
assert
(
rc
==
32
);
//
Bounce the message back.
char
buf
1
[
32
];
rc
=
zmq_recv
(
s
b
,
buf1
,
32
,
0
);
//
Receive message at server side
char
buf
fer
[
32
];
rc
=
zmq_recv
(
s
erver
,
buffer
,
32
,
0
);
assert
(
rc
==
32
);
int
rcvmore
;
size_t
sz
=
sizeof
(
rcvmore
);
rc
=
zmq_getsockopt
(
s
b
,
ZMQ_RCVMORE
,
&
rcvmore
,
&
sz
);
rc
=
zmq_getsockopt
(
s
erver
,
ZMQ_RCVMORE
,
&
rcvmore
,
&
sz
);
assert
(
rc
==
0
);
assert
(
rcvmore
);
rc
=
zmq_recv
(
s
b
,
buf1
,
32
,
0
);
rc
=
zmq_recv
(
s
erver
,
buffer
,
32
,
0
);
assert
(
rc
==
32
);
rc
=
zmq_getsockopt
(
s
b
,
ZMQ_RCVMORE
,
&
rcvmore
,
&
sz
);
rc
=
zmq_getsockopt
(
s
erver
,
ZMQ_RCVMORE
,
&
rcvmore
,
&
sz
);
assert
(
rc
==
0
);
assert
(
!
rcvmore
);
rc
=
zmq_send
(
sb
,
buf1
,
32
,
ZMQ_SNDMORE
);
// Send two parts back to client
rc
=
zmq_send
(
server
,
buffer
,
32
,
ZMQ_SNDMORE
);
assert
(
rc
==
32
);
rc
=
zmq_send
(
s
b
,
buf1
,
32
,
0
);
rc
=
zmq_send
(
s
erver
,
buffer
,
32
,
0
);
assert
(
rc
==
32
);
// Receive the bounced message.
char
buf2
[
32
];
rc
=
zmq_recv
(
sc
,
buf2
,
32
,
0
);
// Receive the two parts at the client side
rc
=
zmq_recv
(
client
,
buffer
,
32
,
0
);
assert
(
rc
==
32
);
rc
=
zmq_getsockopt
(
sc
,
ZMQ_RCVMORE
,
&
rcvmore
,
&
sz
);
rc
=
zmq_getsockopt
(
client
,
ZMQ_RCVMORE
,
&
rcvmore
,
&
sz
);
assert
(
rc
==
0
);
assert
(
rcvmore
);
rc
=
zmq_recv
(
sc
,
buf2
,
32
,
0
);
rc
=
zmq_recv
(
client
,
buffer
,
32
,
0
);
assert
(
rc
==
32
);
rc
=
zmq_getsockopt
(
sc
,
ZMQ_RCVMORE
,
&
rcvmore
,
&
sz
);
rc
=
zmq_getsockopt
(
client
,
ZMQ_RCVMORE
,
&
rcvmore
,
&
sz
);
assert
(
rc
==
0
);
assert
(
!
rcvmore
);
// Check
whether the message is still the same.
assert
(
memcmp
(
buf
2
,
content
,
32
)
==
0
);
// Check
that message is still the same
assert
(
memcmp
(
buf
fer
,
content
,
32
)
==
0
);
}
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment