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
52191af6
Commit
52191af6
authored
Jun 08, 2015
by
Pieter Hintjens
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1435 from minrk/test-ffn
test zmq_msg custom free-function
parents
42673346
fdb7d680
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
144 additions
and
1 deletion
+144
-1
Makefile.am
Makefile.am
+5
-1
CMakeLists.txt
tests/CMakeLists.txt
+1
-0
test_msg_ffn.cpp
tests/test_msg_ffn.cpp
+138
-0
No files found.
Makefile.am
View file @
52191af6
...
...
@@ -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
...
...
tests/CMakeLists.txt
View file @
52191af6
...
...
@@ -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
...
...
tests/test_msg_ffn.cpp
0 → 100644
View file @
52191af6
/*
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
;
}
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