ext/zeromq/tests/test_pair_inproc.cpp in rbczmq-1.7.1 vs ext/zeromq/tests/test_pair_inproc.cpp in rbczmq-1.7.2
- old
+ new
@@ -1,8 +1,7 @@
/*
- Copyright (c) 2010-2011 250bpm s.r.o.
- Copyright (c) 2010-2011 Other contributors as noted in the AUTHORS file
+ Copyright (c) 2007-2013 Contributors as noted in the AUTHORS file
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
@@ -16,18 +15,16 @@
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <stdio.h>
#include "testutil.hpp"
int main (void)
{
- fprintf (stderr, "test_pair_inproc running...\n");
-
- void *ctx = zmq_init (0);
+ setup_test_environment();
+ void *ctx = zmq_ctx_new ();
assert (ctx);
void *sb = zmq_socket (ctx, ZMQ_PAIR);
assert (sb);
int rc = zmq_bind (sb, "inproc://a");
@@ -37,17 +34,38 @@
assert (sc);
rc = zmq_connect (sc, "inproc://a");
assert (rc == 0);
bounce (sb, sc);
+
+ // Test zmq_send_const
+ rc = zmq_send_const (sb, "foo", 3, ZMQ_SNDMORE);
+ assert (rc == 3);
+ rc = zmq_send_const (sb, "foobar", 6, 0);
+ assert (rc == 6);
+
+ zmq_msg_t msg;
+ rc = zmq_msg_init (&msg);
+ assert (rc == 0);
+ rc = zmq_msg_recv (&msg, sc, 0);
+ assert (rc == 3);
+ assert (zmq_msg_size (&msg) == 3);
+ void* data = zmq_msg_data (&msg);
+ assert (memcmp ("foo", data, 3) == 0);
+ rc = zmq_msg_recv (&msg, sc, 0);
+ assert (rc == 6);
+ data = zmq_msg_data (&msg);
+ assert (memcmp ("foobar", data, 6) == 0);
+
+ // Cleanup
rc = zmq_close (sc);
assert (rc == 0);
rc = zmq_close (sb);
assert (rc == 0);
- rc = zmq_term (ctx);
+ rc = zmq_ctx_term (ctx);
assert (rc == 0);
return 0 ;
}