test_reqrep_tcp.cpp 9.33 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 31
#include "testutil.hpp"

32
void test_single_connect (const char *address)
33
{
34 35
    size_t len = MAX_SOCKET_STRING;
    char my_endpoint[MAX_SOCKET_STRING];
36
    void *ctx = zmq_ctx_new ();
37 38
    assert (ctx);

39 40 41 42 43 44 45
    int ipv6;
    if (streq(address, "tcp://127.0.0.1:*"))
        ipv6 = 0;
    else if (streq(address, "tcp://[::1]:*"))
        ipv6 = 1;
    else
        assert (false);
46

47
    if (ipv6 && !is_ipv6_available ()) {
48 49 50 51 52 53 54 55
        zmq_ctx_term (ctx);
        return;
    }

    void *sb = zmq_socket (ctx, ZMQ_REP);
    assert (sb);
    int rc = zmq_setsockopt (sb, ZMQ_IPV6, &ipv6, sizeof (int));
    assert (rc == 0);
56 57 58
    rc = zmq_bind (sb, address);
    assert (rc == 0);
    rc = zmq_getsockopt (sb, ZMQ_LAST_ENDPOINT, my_endpoint, &len);
59 60 61 62 63 64
    assert (rc == 0);

    void *sc = zmq_socket (ctx, ZMQ_REQ);
    assert (sc);
    rc = zmq_setsockopt (sc, ZMQ_IPV6, &ipv6, sizeof (int));
    assert (rc == 0);
65
    rc = zmq_connect (sc, my_endpoint);
66 67 68 69
    assert (rc == 0);

    bounce (sb, sc);

70
    rc = zmq_disconnect (sc, my_endpoint);
71 72
    assert (rc == 0);

73
    rc = zmq_unbind (sb, my_endpoint);
74 75 76 77 78 79 80 81 82 83 84 85
    assert (rc == 0);

    rc = zmq_close (sc);
    assert (rc == 0);

    rc = zmq_close (sb);
    assert (rc == 0);

    rc = zmq_ctx_term (ctx);
    assert (rc == 0);
}

86
void test_multi_connect (const char *address)
87
{
88 89 90 91 92
    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];
93 94 95
    void *ctx = zmq_ctx_new ();
    assert (ctx);

96 97 98 99 100 101 102 103 104
    int ipv6;
    if (streq(address, "tcp://127.0.0.1:*"))
        ipv6 = 0;
    else if (streq(address, "tcp://[::1]:*"))
        ipv6 = 1;
    else
        assert (false);

    if (ipv6 && !is_ipv6_available ()) {
105 106 107 108 109 110 111 112
        zmq_ctx_term (ctx);
        return;
    }

    void *sb0 = zmq_socket (ctx, ZMQ_REP);
    assert (sb0);
    int rc = zmq_setsockopt (sb0, ZMQ_IPV6, &ipv6, sizeof (int));
    assert (rc == 0);
113
    rc = zmq_bind (sb0, address);
114
    assert (rc == 0);
115 116
    rc = zmq_getsockopt (sb0, ZMQ_LAST_ENDPOINT, my_endpoint_0, &len);
     assert (rc == 0);
117 118 119 120 121

    void *sb1 = zmq_socket (ctx, ZMQ_REP);
    assert (sb1);
    rc = zmq_setsockopt (sb1, ZMQ_IPV6, &ipv6, sizeof (int));
    assert (rc == 0);
122
    rc = zmq_bind (sb1, address);
123
    assert (rc == 0);
124 125 126
    len = MAX_SOCKET_STRING;
    rc = zmq_getsockopt (sb1, ZMQ_LAST_ENDPOINT, my_endpoint_1, &len);
     assert (rc == 0);
127 128 129 130 131

    void *sb2 = zmq_socket (ctx, ZMQ_REP);
    assert (sb2);
    rc = zmq_setsockopt (sb2, ZMQ_IPV6, &ipv6, sizeof (int));
    assert (rc == 0);
132
    rc = zmq_bind (sb2, address);
133
    assert (rc == 0);
134 135 136
    len = MAX_SOCKET_STRING;
    rc = zmq_getsockopt (sb2, ZMQ_LAST_ENDPOINT, my_endpoint_2, &len);
     assert (rc == 0);
137 138 139 140 141

    void *sc = zmq_socket (ctx, ZMQ_REQ);
    assert (sc);
    rc = zmq_setsockopt (sc, ZMQ_IPV6, &ipv6, sizeof (int));
    assert (rc == 0);
142
    rc = zmq_connect (sc, my_endpoint_0);
143
    assert (rc == 0);
144
    rc = zmq_connect (sc, my_endpoint_1);
145
    assert (rc == 0);
146 147 148 149 150 151 152
    if (!ipv6)
        sprintf (my_endpoint_3, "tcp://127.0.0.1:5564;%s",
                strrchr(my_endpoint_2, '/') + 1);
    else
        sprintf (my_endpoint_3, "tcp://[::1]:5564;%s",
                strrchr(my_endpoint_2, '/') + 1);
    rc = zmq_connect (sc, my_endpoint_3);
153 154 155 156 157 158 159 160 161 162
    assert (rc == 0);

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

163
    rc = zmq_disconnect (sc, my_endpoint_0);
164
    assert (rc == 0);
165
    rc = zmq_disconnect (sc, my_endpoint_3);
166
    assert (rc == 0);
167
    rc = zmq_disconnect (sc, my_endpoint_1);
168 169
    assert (rc == 0);

170
    rc = zmq_unbind (sb0, my_endpoint_0);
171 172
    assert (rc == 0);

173
    rc = zmq_unbind (sb1, my_endpoint_1);
174 175
    assert (rc == 0);

176
    rc = zmq_unbind (sb2, my_endpoint_2);
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
    assert (rc == 0);

    rc = zmq_close (sc);
    assert (rc == 0);

    rc = zmq_close (sb0);
    assert (rc == 0);

    rc = zmq_close (sb1);
    assert (rc == 0);

    rc = zmq_close (sb2);
    assert (rc == 0);

    rc = zmq_ctx_term (ctx);
    assert (rc == 0);
}

195
void test_multi_connect_same_port (const char *address)
196
{
197 198 199 200 201 202 203
    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];
204 205 206
    void *ctx = zmq_ctx_new ();
    assert (ctx);

207 208 209 210 211 212 213 214 215
    int ipv6;
    if (streq(address, "tcp://127.0.0.1:*"))
        ipv6 = 0;
    else if (streq(address, "tcp://[::1]:*"))
        ipv6 = 1;
    else
        assert (false);

    if (ipv6 && !is_ipv6_available ()) {
216 217 218 219 220 221 222 223
        zmq_ctx_term (ctx);
        return;
    }

    void *sb0 = zmq_socket (ctx, ZMQ_REP);
    assert (sb0);
    int rc = zmq_setsockopt (sb0, ZMQ_IPV6, &ipv6, sizeof (int));
    assert (rc == 0);
224
    rc = zmq_bind (sb0, address);
225
    assert (rc == 0);
226 227
    rc = zmq_getsockopt (sb0, ZMQ_LAST_ENDPOINT, my_endpoint_0, &len);
     assert (rc == 0);
228 229 230 231 232

    void *sb1 = zmq_socket (ctx, ZMQ_REP);
    assert (sb1);
    rc = zmq_setsockopt (sb1, ZMQ_IPV6, &ipv6, sizeof (int));
    assert (rc == 0);
233
    rc = zmq_bind (sb1, address);
234
    assert (rc == 0);
235 236 237
    len = MAX_SOCKET_STRING;
    rc = zmq_getsockopt (sb1, ZMQ_LAST_ENDPOINT, my_endpoint_1, &len);
     assert (rc == 0);
238 239 240 241 242

    void *sc0 = zmq_socket (ctx, ZMQ_REQ);
    assert (sc0);
    rc = zmq_setsockopt (sc0, ZMQ_IPV6, &ipv6, sizeof (int));
    assert (rc == 0);
243 244 245 246 247 248 249
    if (!ipv6)
        sprintf (my_endpoint_2, "tcp://127.0.0.1:5564;%s",
                strrchr(my_endpoint_0, '/') + 1);
    else
        sprintf (my_endpoint_2, "tcp://[::1]:5564;%s",
                strrchr(my_endpoint_0, '/') + 1);
    rc = zmq_connect (sc0, my_endpoint_2);
250
    assert (rc == 0);
251 252 253 254 255 256 257
    if (!ipv6)
        sprintf (my_endpoint_3, "tcp://127.0.0.1:5565;%s",
                strrchr(my_endpoint_1, '/') + 1);
    else
        sprintf (my_endpoint_3, "tcp://[::1]:5565;%s",
                strrchr(my_endpoint_1, '/') + 1);
    rc = zmq_connect (sc0, my_endpoint_3);
258 259 260 261 262 263
    assert (rc == 0);

    void *sc1 = zmq_socket (ctx, ZMQ_REQ);
    assert (sc1);
    rc = zmq_setsockopt (sc1, ZMQ_IPV6, &ipv6, sizeof (int));
    assert (rc == 0);
264 265 266 267 268 269 270
    if (!ipv6)
        sprintf (my_endpoint_4, "tcp://127.0.0.1:5565;%s",
                strrchr(my_endpoint_0, '/') + 1);
    else
        sprintf (my_endpoint_4, "tcp://[::1]:5565;%s",
                strrchr(my_endpoint_0, '/') + 1);
    rc = zmq_connect (sc1, my_endpoint_4);
271
    assert (rc == 0);
272 273 274 275 276 277 278
    if (!ipv6)
        sprintf (my_endpoint_5, "tcp://127.0.0.1:5564;%s",
                strrchr(my_endpoint_1, '/') + 1);
    else
        sprintf (my_endpoint_5, "tcp://[::1]:5564;%s",
                strrchr(my_endpoint_1, '/') + 1);
    rc = zmq_connect (sc1, my_endpoint_5);
279 280 281 282 283 284 285 286 287
    assert (rc == 0);

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

288
    rc = zmq_disconnect (sc1, my_endpoint_4);
289
    assert (rc == 0);
290
    rc = zmq_disconnect (sc1, my_endpoint_5);
291
    assert (rc == 0);
292
    rc = zmq_disconnect (sc0, my_endpoint_2);
293
    assert (rc == 0);
294
    rc = zmq_disconnect (sc0, my_endpoint_3);
295 296
    assert (rc == 0);

297
    rc = zmq_unbind (sb0, my_endpoint_0);
298 299
    assert (rc == 0);

300
    rc = zmq_unbind (sb1, my_endpoint_1);
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
    assert (rc == 0);

    rc = zmq_close (sc0);
    assert (rc == 0);

    rc = zmq_close (sc1);
    assert (rc == 0);

    rc = zmq_close (sb0);
    assert (rc == 0);

    rc = zmq_close (sb1);
    assert (rc == 0);

    rc = zmq_ctx_term (ctx);
    assert (rc == 0);
}

319 320 321 322
int main (void)
{
    setup_test_environment ();

323
    test_single_connect ("tcp://127.0.0.1:*");
324

325
    test_multi_connect ("tcp://127.0.0.1:*");
326

327
    test_multi_connect_same_port ("tcp://127.0.0.1:*");
328

329
    test_single_connect ("tcp://[::1]:*");
330

331
    test_multi_connect ("tcp://[::1]:*");
332

333
    test_multi_connect_same_port ("tcp://[::1]:*");
334

335
    return 0 ;
336
}