0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-22 07:29:31 +08:00
libzmq/tests/testutil.hpp

80 lines
2.4 KiB
C++
Raw Normal View History

2010-08-27 21:13:45 +02:00
/*
2013-03-12 17:04:51 +01:00
Copyright (c) 2007-2013 Contributors as noted in the AUTHORS file
2010-08-27 21:13:45 +02:00
This file is part of 0MQ.
0MQ is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by
2010-08-27 21:13:45 +02:00
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
0MQ is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
2010-08-27 21:13:45 +02:00
You should have received a copy of the GNU Lesser General Public License
2010-08-27 21:13:45 +02:00
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2013-05-16 20:29:55 +02:00
#ifndef __TESTUTIL_HPP_INCLUDED__
#define __TESTUTIL_HPP_INCLUDED__
2010-08-27 21:13:45 +02:00
#include "../include/zmq.h"
#include <string.h>
#undef NDEBUG
#include <assert.h>
2010-08-28 13:58:23 +02:00
2013-05-16 20:29:55 +02:00
// Bounce a message from client to server and back
// For REQ/REP or DEALER/DEALER pairs only
static void
2013-05-16 20:29:55 +02:00
bounce (void *server, void *client)
2010-08-27 21:13:45 +02:00
{
const char *content = "12345678ABCDEFGH12345678abcdefgh";
2013-05-16 20:29:55 +02:00
// Send message from client to server
int rc = zmq_send (client, content, 32, ZMQ_SNDMORE);
assert (rc == 32);
2013-05-16 20:29:55 +02:00
rc = zmq_send (client, content, 32, 0);
assert (rc == 32);
2013-05-16 20:29:55 +02:00
// Receive message at server side
char buffer [32];
rc = zmq_recv (server, buffer, 32, 0);
assert (rc == 32);
int rcvmore;
size_t sz = sizeof (rcvmore);
2013-05-16 20:29:55 +02:00
rc = zmq_getsockopt (server, ZMQ_RCVMORE, &rcvmore, &sz);
assert (rc == 0);
assert (rcvmore);
2013-05-16 20:29:55 +02:00
rc = zmq_recv (server, buffer, 32, 0);
assert (rc == 32);
2013-05-16 20:29:55 +02:00
rc = zmq_getsockopt (server, ZMQ_RCVMORE, &rcvmore, &sz);
assert (rc == 0);
assert (!rcvmore);
2013-05-16 20:29:55 +02:00
// Send two parts back to client
rc = zmq_send (server, buffer, 32, ZMQ_SNDMORE);
assert (rc == 32);
2013-05-16 20:29:55 +02:00
rc = zmq_send (server, buffer, 32, 0);
assert (rc == 32);
2013-05-16 20:29:55 +02:00
// Receive the two parts at the client side
rc = zmq_recv (client, buffer, 32, 0);
assert (rc == 32);
2013-05-16 20:29:55 +02:00
rc = zmq_getsockopt (client, ZMQ_RCVMORE, &rcvmore, &sz);
assert (rc == 0);
assert (rcvmore);
2013-05-16 20:29:55 +02:00
rc = zmq_recv (client, buffer, 32, 0);
assert (rc == 32);
2013-05-16 20:29:55 +02:00
rc = zmq_getsockopt (client, ZMQ_RCVMORE, &rcvmore, &sz);
assert (rc == 0);
assert (!rcvmore);
2013-05-16 20:29:55 +02:00
// Check that message is still the same
assert (memcmp (buffer, content, 32) == 0);
2010-08-27 21:13:45 +02:00
}
#endif