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
d9e5ba67
Commit
d9e5ba67
authored
Aug 10, 2018
by
Simon Giesecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: test_probe_router not yet using unity
Solution: migrate to unity/testutil_unity
parent
bbae67df
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
39 deletions
+42
-39
Makefile.am
Makefile.am
+2
-1
test_probe_router.cpp
tests/test_probe_router.cpp
+40
-38
No files found.
Makefile.am
View file @
d9e5ba67
...
...
@@ -538,7 +538,8 @@ tests_test_router_handover_LDADD = src/libzmq.la ${UNITY_LIBS}
tests_test_router_handover_CPPFLAGS
=
${
UNITY_CPPFLAGS
}
tests_test_probe_router_SOURCES
=
tests/test_probe_router.cpp
tests_test_probe_router_LDADD
=
src/libzmq.la
tests_test_probe_router_LDADD
=
src/libzmq.la
${
UNITY_LIBS
}
tests_test_probe_router_CPPFLAGS
=
${
UNITY_CPPFLAGS
}
tests_test_stream_SOURCES
=
tests/test_stream.cpp
tests_test_stream_LDADD
=
src/libzmq.la
...
...
tests/test_probe_router.cpp
View file @
d9e5ba67
...
...
@@ -28,59 +28,61 @@
*/
#include "testutil.hpp"
#include "testutil_unity.hpp"
int
main
(
void
)
void
setUp
(
)
{
setup_test_environment
();
size_t
len
=
MAX_SOCKET_STRING
;
char
my_endpoint
[
MAX_SOCKET_STRING
];
void
*
ctx
=
zmq_ctx_new
();
assert
(
ctx
);
setup_test_context
();
}
void
tearDown
()
{
teardown_test_context
();
}
void
test_probe_router_router
()
{
// Create server and bind to endpoint
void
*
server
=
zmq_socket
(
ctx
,
ZMQ_ROUTER
);
assert
(
server
);
int
rc
=
zmq_bind
(
server
,
"tcp://127.0.0.1:*"
);
assert
(
rc
==
0
);
rc
=
zmq_getsockopt
(
server
,
ZMQ_LAST_ENDPOINT
,
my_endpoint
,
&
len
);
assert
(
rc
==
0
);
void
*
server
=
test_context_socket
(
ZMQ_ROUTER
);
char
my_endpoint
[
MAX_SOCKET_STRING
];
bind_loopback_ipv4
(
server
,
my_endpoint
,
sizeof
(
my_endpoint
));
// Create client and connect to server, doing a probe
void
*
client
=
zmq_socket
(
ctx
,
ZMQ_ROUTER
);
assert
(
client
);
rc
=
zmq_setsockopt
(
client
,
ZMQ_ROUTING_ID
,
"X"
,
1
);
assert
(
rc
==
0
);
void
*
client
=
test_context_socket
(
ZMQ_ROUTER
);
TEST_ASSERT_SUCCESS_ERRNO
(
zmq_setsockopt
(
client
,
ZMQ_ROUTING_ID
,
"X"
,
1
));
int
probe
=
1
;
rc
=
zmq_setsockopt
(
client
,
ZMQ_PROBE_ROUTER
,
&
probe
,
sizeof
(
probe
));
assert
(
rc
==
0
);
rc
=
zmq_connect
(
client
,
my_endpoint
);
assert
(
rc
==
0
);
TEST_ASSERT_SUCCESS_ERRNO
(
zmq_setsockopt
(
client
,
ZMQ_PROBE_ROUTER
,
&
probe
,
sizeof
(
probe
)));
TEST_ASSERT_SUCCESS_ERRNO
(
zmq_connect
(
client
,
my_endpoint
));
// We expect a routing id=X + empty message from client
recv_string_expect_success
(
server
,
"X"
,
0
);
unsigned
char
buffer
[
255
];
rc
=
zmq_recv
(
server
,
buffer
,
255
,
0
);
assert
(
rc
==
1
);
assert
(
buffer
[
0
]
==
'X'
);
rc
=
zmq_recv
(
server
,
buffer
,
255
,
0
);
assert
(
rc
==
0
);
TEST_ASSERT_EQUAL_INT
(
0
,
TEST_ASSERT_SUCCESS_ERRNO
(
zmq_recv
(
server
,
buffer
,
255
,
0
)));
// Send a message to client now
rc
=
zmq_send
(
server
,
"X"
,
1
,
ZMQ_SNDMORE
);
assert
(
rc
==
1
);
rc
=
zmq_send
(
server
,
"Hello"
,
5
,
0
);
assert
(
rc
==
5
);
send_string_expect_success
(
server
,
"X"
,
ZMQ_SNDMORE
);
send_string_expect_success
(
server
,
"Hello"
,
0
);
rc
=
zmq_recv
(
client
,
buffer
,
255
,
0
);
assert
(
rc
==
5
);
TEST_ASSERT_EQUAL_INT
(
5
,
TEST_ASSERT_SUCCESS_ERRNO
(
zmq_recv
(
client
,
buffer
,
255
,
0
))
);
rc
=
zmq_close
(
server
);
assert
(
rc
==
0
);
// TODO shouldn't this be the following? but that fails, since the content is different (but of length 5)
// recv_string_expect_success (client, "Hello", 0);
test_context_socket_close
(
server
);
test_context_socket_close
(
client
);
}
int
main
()
{
setup_test_environment
();
rc
=
zmq_close
(
client
);
assert
(
rc
==
0
);
UNITY_BEGIN
();
rc
=
zmq_ctx_term
(
ctx
);
assert
(
rc
==
0
);
RUN_TEST
(
test_probe_router_router
);
return
0
;
return
UNITY_END
()
;
}
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