2023-06-05 01:16:05 +02:00
|
|
|
/* SPDX-License-Identifier: MPL-2.0 */
|
2011-06-17 12:22:02 +02:00
|
|
|
|
2013-08-17 14:43:45 +02:00
|
|
|
#include "testutil.hpp"
|
2018-12-25 13:20:04 +01:00
|
|
|
#include "testutil_unity.hpp"
|
2011-06-17 12:22:02 +02:00
|
|
|
|
2019-03-24 17:51:28 +01:00
|
|
|
SETUP_TEARDOWN_TESTCONTEXT
|
2018-12-25 13:20:04 +01:00
|
|
|
|
|
|
|
void test_timeo ()
|
|
|
|
{
|
|
|
|
void *frontend = test_context_socket (ZMQ_DEALER);
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (frontend, "inproc://timeout_test"));
|
2011-06-17 12:22:02 +02:00
|
|
|
|
2013-01-31 19:46:22 +01:00
|
|
|
// Receive on disconnected socket returns immediately
|
|
|
|
char buffer[32];
|
2018-12-25 13:20:04 +01:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EAGAIN,
|
|
|
|
zmq_recv (frontend, buffer, 32, ZMQ_DONTWAIT));
|
|
|
|
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2013-01-31 19:46:22 +01:00
|
|
|
// Check whether receive timeout is honored
|
2018-02-03 12:13:35 +01:00
|
|
|
const int timeout = 250;
|
|
|
|
const int jitter = 50;
|
2018-12-25 13:20:04 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_setsockopt (frontend, ZMQ_RCVTIMEO, &timeout, sizeof (int)));
|
2011-06-17 12:22:02 +02:00
|
|
|
|
2013-08-17 14:43:45 +02:00
|
|
|
void *stopwatch = zmq_stopwatch_start ();
|
2018-12-25 13:20:04 +01:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EAGAIN, zmq_recv (frontend, buffer, 32, 0));
|
2013-08-17 14:43:45 +02:00
|
|
|
unsigned int elapsed = zmq_stopwatch_stop (stopwatch) / 1000;
|
2018-12-25 13:20:04 +01:00
|
|
|
TEST_ASSERT_GREATER_THAN_INT (timeout - jitter, elapsed);
|
2018-02-03 12:13:35 +01:00
|
|
|
if (elapsed >= timeout + jitter) {
|
|
|
|
// we cannot assert this on a non-RT system
|
|
|
|
fprintf (stderr,
|
|
|
|
"zmq_recv took quite long, with a timeout of %i ms, it took "
|
|
|
|
"actually %i ms\n",
|
|
|
|
timeout, elapsed);
|
|
|
|
}
|
2013-01-31 19:46:22 +01:00
|
|
|
|
|
|
|
// Check that normal message flow works as expected
|
2018-12-25 13:20:04 +01:00
|
|
|
void *backend = test_context_socket (ZMQ_DEALER);
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (backend, "inproc://timeout_test"));
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_setsockopt (backend, ZMQ_SNDTIMEO, &timeout, sizeof (int)));
|
2011-06-17 12:22:02 +02:00
|
|
|
|
2018-12-25 13:20:04 +01:00
|
|
|
send_string_expect_success (backend, "Hello", 0);
|
|
|
|
recv_string_expect_success (frontend, "Hello", 0);
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2018-12-25 13:20:04 +01:00
|
|
|
// Clean-up
|
|
|
|
test_context_socket_close (backend);
|
|
|
|
test_context_socket_close (frontend);
|
|
|
|
}
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2018-12-25 13:20:04 +01:00
|
|
|
int main ()
|
|
|
|
{
|
|
|
|
setup_test_environment ();
|
2011-06-17 12:22:02 +02:00
|
|
|
|
2018-12-25 13:20:04 +01:00
|
|
|
UNITY_BEGIN ();
|
|
|
|
RUN_TEST (test_timeo);
|
|
|
|
return UNITY_END ();
|
2011-06-17 12:22:02 +02:00
|
|
|
}
|