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
9f962ea0
Unverified
Commit
9f962ea0
authored
Sep 20, 2018
by
Luca Boccassi
Committed by
GitHub
Sep 20, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3255 from f18m/hwm_test_fix
Fix for test_hwm_pubsub
parents
ea517a28
4b399b51
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
+13
-6
test_hwm_pubsub.cpp
tests/test_hwm_pubsub.cpp
+13
-6
No files found.
tests/test_hwm_pubsub.cpp
View file @
9f962ea0
...
...
@@ -30,6 +30,8 @@
#include "testutil.hpp"
#include "testutil_unity.hpp"
// NOTE: on OSX the endpoint returned by ZMQ_LAST_ENDPOINT may be quite long,
// ensure we have extra space for that:
#define SOCKET_STRING_LEN (MAX_SOCKET_STRING * 4)
void
setUp
()
...
...
@@ -47,8 +49,8 @@ int test_defaults (int send_hwm_, int msg_cnt_, const char *endpoint)
size_t
len
=
SOCKET_STRING_LEN
;
char
pub_endpoint
[
SOCKET_STRING_LEN
];
// Set up and bind PUB socket
void
*
pub_socket
=
test_context_socket
(
ZMQ_PUB
);
// Set up and bind
X
PUB socket
void
*
pub_socket
=
test_context_socket
(
ZMQ_
X
PUB
);
TEST_ASSERT_SUCCESS_ERRNO
(
zmq_bind
(
pub_socket
,
endpoint
));
TEST_ASSERT_SUCCESS_ERRNO
(
zmq_getsockopt
(
pub_socket
,
ZMQ_LAST_ENDPOINT
,
pub_endpoint
,
&
len
));
...
...
@@ -63,8 +65,10 @@ int test_defaults (int send_hwm_, int msg_cnt_, const char *endpoint)
TEST_ASSERT_SUCCESS_ERRNO
(
zmq_setsockopt
(
sub_socket
,
ZMQ_SUBSCRIBE
,
0
,
0
));
msleep
(
SETTLE_TIME
);
// give some time to background threads to perform PUB-SUB connection
// Wait before starting TX operations till 1 subscriber has subscribed
// (in this test there's 1 subscriber only)
const
char
subscription_to_all_topics
[]
=
{
1
,
0
};
recv_string_expect_success
(
pub_socket
,
subscription_to_all_topics
,
0
);
// Send until we reach "mute" state
int
send_count
=
0
;
...
...
@@ -108,7 +112,7 @@ int test_blocking (int send_hwm_, int msg_cnt_, const char *endpoint)
char
pub_endpoint
[
SOCKET_STRING_LEN
];
// Set up bind socket
void
*
pub_socket
=
test_context_socket
(
ZMQ_PUB
);
void
*
pub_socket
=
test_context_socket
(
ZMQ_
X
PUB
);
TEST_ASSERT_SUCCESS_ERRNO
(
zmq_bind
(
pub_socket
,
endpoint
));
TEST_ASSERT_SUCCESS_ERRNO
(
zmq_getsockopt
(
pub_socket
,
ZMQ_LAST_ENDPOINT
,
pub_endpoint
,
&
len
));
...
...
@@ -129,7 +133,10 @@ int test_blocking (int send_hwm_, int msg_cnt_, const char *endpoint)
TEST_ASSERT_SUCCESS_ERRNO
(
zmq_setsockopt
(
sub_socket
,
ZMQ_SUBSCRIBE
,
0
,
0
));
msleep
(
SETTLE_TIME
);
// Wait before starting TX operations till 1 subscriber has subscribed
// (in this test there's 1 subscriber only)
const
char
subscription_to_all_topics
[]
=
{
1
,
0
};
recv_string_expect_success
(
pub_socket
,
subscription_to_all_topics
,
0
);
// Send until we block
int
send_count
=
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