1/*
2 Copyright (c) 2017 Contributors as noted in the AUTHORS file
3
4 This file is part of libzmq, the ZeroMQ core engine in C++.
5
6 libzmq is free software; you can redistribute it and/or modify it under
7 the terms of the GNU Lesser General Public License (LGPL) as published
8 by the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 As a special exception, the Contributors give you permission to link
12 this library with independent modules to produce an executable,
13 regardless of the license terms of these independent modules, and to
14 copy and distribute the resulting executable under terms of your choice,
15 provided that you also meet, for each linked independent module, the
16 terms and conditions of the license of that module. An independent
17 module is a module which is not derived from or based on this library.
18 If you modify this library, you must extend this exception to your
19 version of the library.
20
21 libzmq is distributed in the hope that it will be useful, but WITHOUT
22 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
23 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
24 License for more details.
25
26 You should have received a copy of the GNU Lesser General Public License
27 along with this program. If not, see <http://www.gnu.org/licenses/>.
28*/
29
30#include "testutil.hpp"
31#include "testutil_unity.hpp"
32
33SETUP_TEARDOWN_TESTCONTEXT
34
35void test_reconnect_ivl_against_pair_socket (const char *my_endpoint_,
36 void *sb_)
37{
38 void *sc = test_context_socket (ZMQ_PAIR);
39 int interval = -1;
40 TEST_ASSERT_SUCCESS_ERRNO (
41 zmq_setsockopt (sc, ZMQ_RECONNECT_IVL, &interval, sizeof (int)));
42 TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc, my_endpoint_));
43
44 bounce (sb_, sc);
45
46 TEST_ASSERT_SUCCESS_ERRNO (zmq_unbind (sb_, my_endpoint_));
47
48 expect_bounce_fail (sb_, sc);
49
50 TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (sb_, my_endpoint_));
51
52 expect_bounce_fail (sb_, sc);
53
54 TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc, my_endpoint_));
55
56 bounce (sb_, sc);
57
58 test_context_socket_close (sc);
59}
60
61#if defined(ZMQ_HAVE_IPC) && !defined(ZMQ_HAVE_GNU)
62void test_reconnect_ivl_ipc (void)
63{
64 char my_endpoint[256];
65 make_random_ipc_endpoint (my_endpoint);
66
67 void *sb = test_context_socket (ZMQ_PAIR);
68 TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (sb, my_endpoint));
69
70 test_reconnect_ivl_against_pair_socket (my_endpoint, sb);
71 test_context_socket_close (sb);
72}
73#endif
74
75void test_reconnect_ivl_tcp (bind_function_t bind_function_)
76{
77 char my_endpoint[MAX_SOCKET_STRING];
78
79 void *sb = test_context_socket (ZMQ_PAIR);
80 bind_function_ (sb, my_endpoint, sizeof my_endpoint);
81
82 test_reconnect_ivl_against_pair_socket (my_endpoint, sb);
83 test_context_socket_close (sb);
84}
85
86void test_reconnect_ivl_tcp_ipv4 ()
87{
88 test_reconnect_ivl_tcp (bind_loopback_ipv4);
89}
90
91void test_reconnect_ivl_tcp_ipv6 ()
92{
93 if (is_ipv6_available ()) {
94 zmq_ctx_set (get_test_context (), ZMQ_IPV6, 1);
95 test_reconnect_ivl_tcp (bind_loopback_ipv6);
96 }
97}
98
99int main (void)
100{
101 setup_test_environment ();
102
103 UNITY_BEGIN ();
104#if !defined(ZMQ_HAVE_WINDOWS) && !defined(ZMQ_HAVE_GNU)
105 RUN_TEST (test_reconnect_ivl_ipc);
106#endif
107 RUN_TEST (test_reconnect_ivl_tcp_ipv4);
108 RUN_TEST (test_reconnect_ivl_tcp_ipv6);
109
110 return UNITY_END ();
111}
112