test_reconnect_ivl.cpp 3.47 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*
    Copyright (c) 2017 Contributors as noted in the AUTHORS file

    This file is part of libzmq, the ZeroMQ core engine in C++.

    libzmq is free software; you can redistribute it and/or modify it under
    the terms of the GNU Lesser General Public License (LGPL) as published
    by the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    As a special exception, the Contributors give you permission to link
    this library with independent modules to produce an executable,
    regardless of the license terms of these independent modules, and to
    copy and distribute the resulting executable under terms of your choice,
    provided that you also meet, for each linked independent module, the
    terms and conditions of the license of that module. An independent
    module is a module which is not derived from or based on this library.
    If you modify this library, you must extend this exception to your
    version of the library.

    libzmq is distributed in the hope that it will be useful, but WITHOUT
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
    License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "testutil.hpp"
31
#include "testutil_unity.hpp"
32

33
#include <unity.h>
34

35
void setUp ()
36
{
37 38
    setup_test_context ();
}
39

40 41 42 43
void tearDown ()
{
    teardown_test_context ();
}
44

45 46 47
void test_reconnect_ivl_against_pair_socket (const char *my_endpoint, void *sb)
{
    void *sc = test_context_socket (ZMQ_PAIR);
48
    int interval = -1;
49 50 51
    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_setsockopt (sc, ZMQ_RECONNECT_IVL, &interval, sizeof (int)));
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc, my_endpoint));
52 53 54

    bounce (sb, sc);

55
    TEST_ASSERT_SUCCESS_ERRNO (zmq_unbind (sb, my_endpoint));
56 57 58

    expect_bounce_fail (sb, sc);

59
    TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (sb, my_endpoint));
60 61 62

    expect_bounce_fail (sb, sc);

63
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc, my_endpoint));
64 65 66

    bounce (sb, sc);

67 68
    test_context_socket_close (sc);
}
69

70 71 72 73 74 75
#ifndef ZMQ_HAVE_WINDOWS
void test_reconnect_ivl_ipc (void)
{
    const char *ipc_endpoint = "ipc:///tmp/test_reconnect_ivl";
    void *sb = test_context_socket (ZMQ_PAIR);
    TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (sb, ipc_endpoint));
76

77 78
    test_reconnect_ivl_against_pair_socket (ipc_endpoint, sb);
    test_context_socket_close (sb);
79 80 81 82 83 84 85 86
}
#endif

void test_reconnect_ivl_tcp (const char *address)
{
    size_t len = MAX_SOCKET_STRING;
    char my_endpoint[MAX_SOCKET_STRING];

87 88 89 90
    void *sb = test_context_socket (ZMQ_PAIR);
    TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (sb, address));
    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_getsockopt (sb, ZMQ_LAST_ENDPOINT, my_endpoint, &len));
91

92 93 94
    test_reconnect_ivl_against_pair_socket (my_endpoint, sb);
    test_context_socket_close (sb);
}
95

96 97 98 99
void test_reconnect_ivl_tcp_ipv4 ()
{
    test_reconnect_ivl_tcp ("tcp://127.0.0.1:*");
}
100

101 102 103 104 105 106
void test_reconnect_ivl_tcp_ipv6 ()
{
    if (is_ipv6_available ()) {
        zmq_ctx_set (get_test_context (), ZMQ_IPV6, 1);
        test_reconnect_ivl_tcp ("tcp://[::1]:*");
    }
107 108 109 110 111 112
}

int main (void)
{
    setup_test_environment ();

113
    UNITY_BEGIN ();
114
#ifndef ZMQ_HAVE_WINDOWS
115
    RUN_TEST (test_reconnect_ivl_ipc);
116
#endif
117 118
    RUN_TEST (test_reconnect_ivl_tcp_ipv4);
    RUN_TEST (test_reconnect_ivl_tcp_ipv6);
119

120
    return UNITY_END ();
121
}