test_reqrep_tcp.cpp 7.21 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2017 Contributors as noted in the AUTHORS file
3

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

6 7 8
    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
9 10
    (at your option) any later version.

11 12 13 14 15 16 17 18 19 20 21 22 23 24
    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.
25

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

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

33 34
#include <string.h>

35
SETUP_TEARDOWN_TESTCONTEXT
36

37
void test_single_connect (int ipv6_)
38 39 40 41 42
{
    size_t len = MAX_SOCKET_STRING;
    char my_endpoint[MAX_SOCKET_STRING];

    void *sb = test_context_socket (ZMQ_REP);
43
    bind_loopback (sb, ipv6_, my_endpoint, len);
44

45 46
    void *sc = test_context_socket (ZMQ_REQ);
    TEST_ASSERT_SUCCESS_ERRNO (
47
      zmq_setsockopt (sc, ZMQ_IPV6, &ipv6_, sizeof (int)));
48
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc, my_endpoint));
49

50
    bounce (sb, sc);
51

52 53 54
    // the sockets are disconnected and unbound explicitly in this test case
    // to check that this can be done successfully with the expected
    // endpoints/addresses
55

56
    TEST_ASSERT_SUCCESS_ERRNO (zmq_disconnect (sc, my_endpoint));
57

58
    TEST_ASSERT_SUCCESS_ERRNO (zmq_unbind (sb, my_endpoint));
59

60 61
    test_context_socket_close (sc);
    test_context_socket_close (sb);
62 63
}

64 65 66 67
void make_connect_address (char *connect_address_,
                           const int ipv6_,
                           const int port_,
                           const char *bind_address_)
68
{
69 70
    sprintf (connect_address_, "tcp://%s:%i;%s", ipv6_ ? "[::1]" : "127.0.0.1",
             port_, strrchr (bind_address_, '/') + 1);
71 72
}

73
void test_multi_connect (int ipv6_)
74
{
75 76 77 78 79 80
    size_t len = MAX_SOCKET_STRING;
    char my_endpoint_0[MAX_SOCKET_STRING];
    char my_endpoint_1[MAX_SOCKET_STRING];
    char my_endpoint_2[MAX_SOCKET_STRING];
    char my_endpoint_3[MAX_SOCKET_STRING * 2];

81
    void *sb0 = test_context_socket (ZMQ_REP);
82
    bind_loopback (sb0, ipv6_, my_endpoint_0, len);
83

84
    void *sb1 = test_context_socket (ZMQ_REP);
85
    bind_loopback (sb1, ipv6_, my_endpoint_1, len);
86 87

    void *sb2 = test_context_socket (ZMQ_REP);
88
    bind_loopback (sb2, ipv6_, my_endpoint_2, len);
89 90 91

    void *sc = test_context_socket (ZMQ_REQ);
    TEST_ASSERT_SUCCESS_ERRNO (
92
      zmq_setsockopt (sc, ZMQ_IPV6, &ipv6_, sizeof (int)));
93 94
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc, my_endpoint_0));
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc, my_endpoint_1));
95
    make_connect_address (my_endpoint_3, ipv6_, 5564, my_endpoint_2);
96
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc, my_endpoint_3));
97 98 99 100 101 102 103 104 105

    bounce (sb0, sc);
    bounce (sb1, sc);
    bounce (sb2, sc);
    bounce (sb0, sc);
    bounce (sb1, sc);
    bounce (sb2, sc);
    bounce (sb0, sc);

106 107
    /// see comment on zmq_disconnect/zmq_unbind in test_single_connect

108 109 110
    TEST_ASSERT_SUCCESS_ERRNO (zmq_disconnect (sc, my_endpoint_0));
    TEST_ASSERT_SUCCESS_ERRNO (zmq_disconnect (sc, my_endpoint_3));
    TEST_ASSERT_SUCCESS_ERRNO (zmq_disconnect (sc, my_endpoint_1));
111

112 113 114
    TEST_ASSERT_SUCCESS_ERRNO (zmq_unbind (sb0, my_endpoint_0));
    TEST_ASSERT_SUCCESS_ERRNO (zmq_unbind (sb1, my_endpoint_1));
    TEST_ASSERT_SUCCESS_ERRNO (zmq_unbind (sb2, my_endpoint_2));
115

116 117 118 119
    test_context_socket_close (sc);
    test_context_socket_close (sb0);
    test_context_socket_close (sb1);
    test_context_socket_close (sb2);
120 121
}

122
void test_multi_connect_same_port (int ipv6_)
123
{
124 125 126 127 128 129 130 131
    size_t len = MAX_SOCKET_STRING;
    char my_endpoint_0[MAX_SOCKET_STRING];
    char my_endpoint_1[MAX_SOCKET_STRING];
    char my_endpoint_2[MAX_SOCKET_STRING * 2];
    char my_endpoint_3[MAX_SOCKET_STRING * 2];
    char my_endpoint_4[MAX_SOCKET_STRING * 2];
    char my_endpoint_5[MAX_SOCKET_STRING * 2];

132
    void *sb0 = test_context_socket (ZMQ_REP);
133
    bind_loopback (sb0, ipv6_, my_endpoint_0, len);
134

135
    void *sb1 = test_context_socket (ZMQ_REP);
136
    bind_loopback (sb1, ipv6_, my_endpoint_1, len);
137

138 139
    void *sc0 = test_context_socket (ZMQ_REQ);
    TEST_ASSERT_SUCCESS_ERRNO (
140 141
      zmq_setsockopt (sc0, ZMQ_IPV6, &ipv6_, sizeof (int)));
    make_connect_address (my_endpoint_2, ipv6_, 5564, my_endpoint_0);
142
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc0, my_endpoint_2));
143
    make_connect_address (my_endpoint_3, ipv6_, 5565, my_endpoint_1);
144
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc0, my_endpoint_3));
145

146 147
    void *sc1 = test_context_socket (ZMQ_REQ);
    TEST_ASSERT_SUCCESS_ERRNO (
148 149
      zmq_setsockopt (sc1, ZMQ_IPV6, &ipv6_, sizeof (int)));
    make_connect_address (my_endpoint_4, ipv6_, 5565, my_endpoint_0);
150
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc1, my_endpoint_4));
151
    make_connect_address (my_endpoint_5, ipv6_, 5564, my_endpoint_1);
152
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sc1, my_endpoint_5));
153 154 155 156 157 158 159 160

    bounce (sb0, sc0);
    bounce (sb1, sc0);
    bounce (sb0, sc1);
    bounce (sb1, sc1);
    bounce (sb0, sc0);
    bounce (sb1, sc0);

161 162
    /// see comment on zmq_disconnect/zmq_unbind in test_single_connect

163 164 165 166
    TEST_ASSERT_SUCCESS_ERRNO (zmq_disconnect (sc1, my_endpoint_4));
    TEST_ASSERT_SUCCESS_ERRNO (zmq_disconnect (sc1, my_endpoint_5));
    TEST_ASSERT_SUCCESS_ERRNO (zmq_disconnect (sc0, my_endpoint_2));
    TEST_ASSERT_SUCCESS_ERRNO (zmq_disconnect (sc0, my_endpoint_3));
167

168 169
    TEST_ASSERT_SUCCESS_ERRNO (zmq_unbind (sb0, my_endpoint_0));
    TEST_ASSERT_SUCCESS_ERRNO (zmq_unbind (sb1, my_endpoint_1));
170

171 172 173 174 175
    test_context_socket_close (sc0);
    test_context_socket_close (sc1);
    test_context_socket_close (sb0);
    test_context_socket_close (sb1);
}
176

177 178 179 180
void test_single_connect_ipv4 ()
{
    test_single_connect (false);
}
181

182 183 184 185
void test_multi_connect_ipv4 ()
{
    test_multi_connect (false);
}
186

187 188 189 190 191 192 193 194 195
void test_multi_connect_same_port_ipv4 ()
{
    test_multi_connect_same_port (false);
}

void test_single_connect_ipv6 ()
{
    test_single_connect (true);
}
196

197 198 199 200
void test_multi_connect_ipv6 ()
{
    test_multi_connect (true);
}
201

202 203 204
void test_multi_connect_same_port_ipv6 ()
{
    test_multi_connect_same_port (true);
205 206
}

207 208 209 210
int main (void)
{
    setup_test_environment ();

211 212 213 214 215 216 217
    UNITY_BEGIN ();
    RUN_TEST (test_single_connect_ipv4);
    RUN_TEST (test_multi_connect_ipv4);
    RUN_TEST (test_multi_connect_same_port_ipv4);
    RUN_TEST (test_single_connect_ipv6);
    RUN_TEST (test_multi_connect_ipv6);
    RUN_TEST (test_multi_connect_same_port_ipv6);
218

219
    return UNITY_END ();
220
}