libzmq/tests/test_conflate.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.2 KiB
C++
Raw Normal View History

/* SPDX-License-Identifier: MPL-2.0 */
2013-08-19 14:34:11 +02:00
#include "testutil.hpp"
#include "testutil_unity.hpp"
2013-08-19 14:34:11 +02:00
SETUP_TEARDOWN_TESTCONTEXT
void test_conflate ()
2013-08-19 14:34:11 +02:00
{
char my_endpoint[MAX_SOCKET_STRING];
2013-08-19 14:34:11 +02:00
int rc;
void *s_in = test_context_socket (ZMQ_PULL);
2013-08-19 14:34:11 +02:00
int conflate = 1;
TEST_ASSERT_SUCCESS_ERRNO (
zmq_setsockopt (s_in, ZMQ_CONFLATE, &conflate, sizeof (conflate)));
bind_loopback_ipv4 (s_in, my_endpoint, sizeof my_endpoint);
2013-08-19 14:34:11 +02:00
void *s_out = test_context_socket (ZMQ_PUSH);
2013-08-19 14:34:11 +02:00
TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (s_out, my_endpoint));
2013-08-19 14:34:11 +02:00
int message_count = 20;
for (int j = 0; j < message_count; ++j) {
TEST_ASSERT_SUCCESS_ERRNO (
zmq_send (s_out, (void *) &j, sizeof (int), 0));
2013-08-19 14:34:11 +02:00
}
msleep (SETTLE_TIME);
2013-08-19 14:34:11 +02:00
int payload_recved = 0;
rc = TEST_ASSERT_SUCCESS_ERRNO (
zmq_recv (s_in, (void *) &payload_recved, sizeof (int), 0));
TEST_ASSERT_GREATER_THAN_INT (0, rc);
TEST_ASSERT_EQUAL_INT (message_count - 1, payload_recved);
2013-08-19 14:34:11 +02:00
test_context_socket_close (s_in);
test_context_socket_close (s_out);
}
2013-08-19 14:34:11 +02:00
int main (int, char *[])
{
setup_test_environment ();
2013-08-19 14:34:11 +02:00
UNITY_BEGIN ();
RUN_TEST (test_conflate);
return UNITY_END ();
2013-08-19 14:34:11 +02:00
}