2023-06-05 01:16:05 +02:00
|
|
|
/* SPDX-License-Identifier: MPL-2.0 */
|
2017-09-19 01:14:10 +02:00
|
|
|
|
|
|
|
#include "testutil.hpp"
|
2018-03-15 11:47:57 +01:00
|
|
|
#include "testutil_unity.hpp"
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2019-03-24 17:51:28 +01:00
|
|
|
SETUP_TEARDOWN_TESTCONTEXT
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-05-27 13:01:36 +02:00
|
|
|
void test_reconnect_ivl_against_pair_socket (const char *my_endpoint_,
|
|
|
|
void *sb_)
|
2018-03-15 11:47:57 +01:00
|
|
|
{
|
|
|
|
void *sc = test_context_socket (ZMQ_PAIR);
|
2017-09-19 01:14:10 +02:00
|
|
|
int interval = -1;
|
2018-03-15 11:47:57 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_setsockopt (sc, ZMQ_RECONNECT_IVL, &interval, sizeof (int)));
|
2018-05-27 13:01:36 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc, my_endpoint_));
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-05-27 13:01:36 +02:00
|
|
|
bounce (sb_, sc);
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-05-27 13:01:36 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_unbind (sb_, my_endpoint_));
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-05-27 13:01:36 +02:00
|
|
|
expect_bounce_fail (sb_, sc);
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-05-27 13:01:36 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (sb_, my_endpoint_));
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-05-27 13:01:36 +02:00
|
|
|
expect_bounce_fail (sb_, sc);
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-05-27 13:01:36 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc, my_endpoint_));
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-05-27 13:01:36 +02:00
|
|
|
bounce (sb_, sc);
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-03-15 11:47:57 +01:00
|
|
|
test_context_socket_close (sc);
|
|
|
|
}
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2019-10-19 14:46:53 +02:00
|
|
|
#if defined(ZMQ_HAVE_IPC) && !defined(ZMQ_HAVE_GNU)
|
2018-03-15 11:47:57 +01:00
|
|
|
void test_reconnect_ivl_ipc (void)
|
|
|
|
{
|
2019-01-13 15:50:07 +01:00
|
|
|
char my_endpoint[256];
|
2019-02-04 11:33:28 +01:00
|
|
|
make_random_ipc_endpoint (my_endpoint);
|
2019-01-13 15:50:07 +01:00
|
|
|
|
2018-03-15 11:47:57 +01:00
|
|
|
void *sb = test_context_socket (ZMQ_PAIR);
|
2019-02-04 11:33:28 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (sb, my_endpoint));
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2019-01-13 15:50:07 +01:00
|
|
|
test_reconnect_ivl_against_pair_socket (my_endpoint, sb);
|
2018-03-15 11:47:57 +01:00
|
|
|
test_context_socket_close (sb);
|
2017-09-19 01:14:10 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-03-24 18:17:22 +01:00
|
|
|
void test_reconnect_ivl_tcp (bind_function_t bind_function_)
|
2017-09-19 01:14:10 +02:00
|
|
|
{
|
|
|
|
char my_endpoint[MAX_SOCKET_STRING];
|
|
|
|
|
2018-03-15 11:47:57 +01:00
|
|
|
void *sb = test_context_socket (ZMQ_PAIR);
|
2019-03-24 18:17:22 +01:00
|
|
|
bind_function_ (sb, my_endpoint, sizeof my_endpoint);
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-03-15 11:47:57 +01:00
|
|
|
test_reconnect_ivl_against_pair_socket (my_endpoint, sb);
|
|
|
|
test_context_socket_close (sb);
|
|
|
|
}
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-03-15 11:47:57 +01:00
|
|
|
void test_reconnect_ivl_tcp_ipv4 ()
|
|
|
|
{
|
2019-03-24 18:17:22 +01:00
|
|
|
test_reconnect_ivl_tcp (bind_loopback_ipv4);
|
2018-03-15 11:47:57 +01:00
|
|
|
}
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-03-15 11:47:57 +01:00
|
|
|
void test_reconnect_ivl_tcp_ipv6 ()
|
|
|
|
{
|
|
|
|
if (is_ipv6_available ()) {
|
|
|
|
zmq_ctx_set (get_test_context (), ZMQ_IPV6, 1);
|
2019-03-24 18:17:22 +01:00
|
|
|
test_reconnect_ivl_tcp (bind_loopback_ipv6);
|
2018-03-15 11:47:57 +01:00
|
|
|
}
|
2017-09-19 01:14:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int main (void)
|
|
|
|
{
|
|
|
|
setup_test_environment ();
|
|
|
|
|
2018-03-15 11:47:57 +01:00
|
|
|
UNITY_BEGIN ();
|
2019-12-28 19:23:18 +01:00
|
|
|
#if defined(ZMQ_HAVE_IPC) && !defined(ZMQ_HAVE_GNU)
|
2018-03-15 11:47:57 +01:00
|
|
|
RUN_TEST (test_reconnect_ivl_ipc);
|
2017-09-19 01:14:10 +02:00
|
|
|
#endif
|
2018-03-15 11:47:57 +01:00
|
|
|
RUN_TEST (test_reconnect_ivl_tcp_ipv4);
|
|
|
|
RUN_TEST (test_reconnect_ivl_tcp_ipv6);
|
2017-09-19 01:14:10 +02:00
|
|
|
|
2018-03-15 11:47:57 +01:00
|
|
|
return UNITY_END ();
|
2017-09-19 01:14:10 +02:00
|
|
|
}
|