Commit fdb7d680 authored by Min RK's avatar Min RK

test zmq_msg custom free-function

new allocation caused reference counters to lose track on copy
parent 42673346
......@@ -308,6 +308,7 @@ test_apps = \
tests/test_sub_forward \
tests/test_invalid_rep \
tests/test_msg_flags \
tests/test_msg_ffn \
tests/test_connect_resolve \
tests/test_immediate \
tests/test_last_endpoint \
......@@ -400,6 +401,9 @@ tests_test_invalid_rep_LDADD = src/libzmq.la
tests_test_msg_flags_SOURCES = tests/test_msg_flags.cpp
tests_test_msg_flags_LDADD = src/libzmq.la
tests_test_msg_ffn_SOURCES = tests/test_msg_ffn.cpp
tests_test_msg_ffn_LDADD = src/libzmq.la
tests_test_connect_resolve_SOURCES = tests/test_connect_resolve.cpp
tests_test_connect_resolve_LDADD = src/libzmq.la
......@@ -639,7 +643,7 @@ check_PROGRAMS = ${test_apps}
# Run the test cases
TESTS = $(test_apps)
XFAIL_TESTS =
XFAIL_TESTS = tests/test_msg_ffn
if !ON_LINUX
XFAIL_TESTS += tests/test_abstract_ipc
......
......@@ -12,6 +12,7 @@ set(tests
test_sub_forward
test_invalid_rep
test_msg_flags
test_msg_ffn
test_connect_resolve
test_immediate
test_last_endpoint
......
/*
Copyright (c) 2007-2015 Contributors as noted in the AUTHORS file
This file is part of libzmq, the ZeroMQ core engine in C++.
libzmq is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
As a special exception, the Contributors give you permission to link
this library with independent modules to produce an executable,
regardless of the license terms of these independent modules, and to
copy and distribute the resulting executable under terms of your choice,
provided that you also meet, for each linked independent module, the
terms and conditions of the license of that module. An independent
module is a module which is not derived from or based on this library.
If you modify this library, you must extend this exception to your
version of the library.
libzmq 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.
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 "testutil.hpp"
void ffn(void *data, void *hint) {
// Signal that ffn has been called by writing "freed" to hint
memcpy(hint, (void *) "freed", 5);
}
int main (void) {
setup_test_environment();
// Create the infrastructure
void *ctx = zmq_ctx_new ();
assert (ctx);
void *router = zmq_socket (ctx, ZMQ_ROUTER);
assert (router);
int rc = zmq_bind (router, "tcp://127.0.0.1:5555");
assert (rc == 0);
void *dealer = zmq_socket (ctx, ZMQ_DEALER);
assert (dealer);
rc = zmq_connect (dealer, "tcp://127.0.0.1:5555");
assert (rc == 0);
// Test that creating and closing a message triggers ffn
zmq_msg_t msg;
char hint[5];
char data[255];
memcpy(data, (void *) "data", 4);
memcpy(hint, (void *) "hint", 4);
rc = zmq_msg_init_data(&msg, (void *)data, 255, ffn, (void*)hint);
assert (rc == 0);
rc = zmq_msg_close(&msg);
assert (rc == 0);
usleep(50000);
assert (memcmp(hint, "freed", 5) == 0);
memcpy(hint, (void *) "hint", 4);
// Making and closing a copy triggers ffn
zmq_msg_t msg2;
zmq_msg_init(&msg2);
rc = zmq_msg_init_data(&msg, (void *)data, 255, ffn, (void *)hint);
assert (rc == 0);
rc = zmq_msg_copy(&msg2, &msg);
assert (rc == 0);
rc = zmq_msg_close(&msg2);
assert (rc == 0);
rc = zmq_msg_close(&msg);
assert (rc == 0);
usleep(50000);
assert (memcmp(hint, "freed", 5) == 0);
memcpy(hint, (void *) "hint", 4);
// Test that sending a message triggers ffn
rc = zmq_msg_init_data(&msg, (void *)data, 255, ffn, (void *)hint);
assert (rc == 0);
zmq_msg_send(&msg, dealer, 0);
char buf[255];
rc = zmq_recv(router, buf, 255, 0);
assert (rc > -1);
rc = zmq_recv(router, buf, 255, 0);
assert (rc == 255);
assert (memcmp(data, buf, 5) == 0);
usleep(50000);
assert (memcmp(hint, "freed", 5) == 0);
memcpy(hint, (void *) "hint", 4);
rc = zmq_msg_close(&msg);
assert (rc == 0);
// Sending a copy of a message triggers ffn
rc = zmq_msg_init(&msg2);
assert (rc == 0);
rc = zmq_msg_init_data(&msg, (void *)data, 255, ffn, (void *)hint);
assert (rc == 0);
rc = zmq_msg_copy(&msg2, &msg);
assert (rc == 0);
zmq_msg_send(&msg, dealer, 0);
rc = zmq_recv(router, buf, 255, 0);
assert (rc > -1);
rc = zmq_recv(router, buf, 255, 0);
assert (rc == 255);
assert (memcmp(data, buf, 5) == 0);
rc = zmq_msg_close(&msg2);
assert (rc == 0);
rc = zmq_msg_close(&msg);
assert (rc == 0);
usleep(50000);
assert (memcmp(hint, "freed", 5) == 0);
memcpy(hint, (void *) "hint", 4);
// Deallocate the infrastructure.
rc = zmq_close (router);
assert (rc == 0);
rc = zmq_close (dealer);
assert (rc == 0);
rc = zmq_ctx_term (ctx);
assert (rc == 0);
return 0 ;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment