test_spec_router.cpp 6.25 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 27 28 29 30 31

    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"

32
const char *bind_address = 0;
33
char connect_address[MAX_SOCKET_STRING];
34

35 36 37 38 39
void test_fair_queue_in (void *ctx)
{
    void *receiver = zmq_socket (ctx, ZMQ_ROUTER);
    assert (receiver);

40
    int timeout = 250;
41
    int rc = zmq_setsockopt (receiver, ZMQ_RCVTIMEO, &timeout, sizeof (int));
42 43
    assert (rc == 0);

44
    rc = zmq_bind (receiver, bind_address);
45
    assert (rc == 0);
46 47 48
    size_t len = MAX_SOCKET_STRING;
    rc = zmq_getsockopt (receiver, ZMQ_LAST_ENDPOINT, connect_address, &len);
    assert (rc == 0);
49

50
    const unsigned char services = 5;
51
    void *senders[services];
52
    for (unsigned char peer = 0; peer < services; ++peer) {
53 54
        senders[peer] = zmq_socket (ctx, ZMQ_DEALER);
        assert (senders[peer]);
55

56 57
        rc =
          zmq_setsockopt (senders[peer], ZMQ_RCVTIMEO, &timeout, sizeof (int));
58 59
        assert (rc == 0);

60 61 62
        char *str = strdup ("A");
        str[0] += peer;
        rc = zmq_setsockopt (senders[peer], ZMQ_ROUTING_ID, str, 2);
63 64 65
        assert (rc == 0);
        free (str);

66
        rc = zmq_connect (senders[peer], connect_address);
67 68 69
        assert (rc == 0);
    }

70 71
    msleep (SETTLE_TIME);

72 73 74 75
    zmq_msg_t msg;
    rc = zmq_msg_init (&msg);
    assert (rc == 0);

76
    s_send_seq (senders[0], "M", SEQ_END);
77 78
    s_recv_seq (receiver, "A", "M", SEQ_END);

79
    s_send_seq (senders[0], "M", SEQ_END);
80 81
    s_recv_seq (receiver, "A", "M", SEQ_END);

82 83
    int sum = 0;

84
    // send N requests
85
    for (unsigned char peer = 0; peer < services; ++peer) {
86
        s_send_seq (senders[peer], "M", SEQ_END);
87
        sum += 'A' + peer;
88 89
    }

90
    assert (sum == services * 'A' + services * (services - 1) / 2);
91

92
    // handle N requests
93
    for (unsigned char peer = 0; peer < services; ++peer) {
94 95
        rc = zmq_msg_recv (&msg, receiver, 0);
        assert (rc == 2);
96 97
        const char *id = (const char *) zmq_msg_data (&msg);
        sum -= id[0];
98 99

        s_recv_seq (receiver, "M", SEQ_END);
100 101
    }

102 103
    assert (sum == 0);

104 105 106
    rc = zmq_msg_close (&msg);
    assert (rc == 0);

107
    close_zero_linger (receiver);
108

109
    for (size_t peer = 0; peer < services; ++peer)
110
        close_zero_linger (senders[peer]);
111 112

    // Wait for disconnects.
113
    msleep (SETTLE_TIME);
114 115 116 117 118 119 120 121
}

void test_destroy_queue_on_disconnect (void *ctx)
{
    void *A = zmq_socket (ctx, ZMQ_ROUTER);
    assert (A);

    int enabled = 1;
122 123
    int rc =
      zmq_setsockopt (A, ZMQ_ROUTER_MANDATORY, &enabled, sizeof (enabled));
124 125
    assert (rc == 0);

126
    rc = zmq_bind (A, bind_address);
127
    assert (rc == 0);
128 129 130
    size_t len = MAX_SOCKET_STRING;
    rc = zmq_getsockopt (A, ZMQ_LAST_ENDPOINT, connect_address, &len);
    assert (rc == 0);
131 132 133 134

    void *B = zmq_socket (ctx, ZMQ_DEALER);
    assert (B);

135
    rc = zmq_setsockopt (B, ZMQ_ROUTING_ID, "B", 2);
136 137
    assert (rc == 0);

138 139 140 141
    rc = zmq_connect (B, connect_address);
    assert (rc == 0);

    // Wait for connection.
142
    msleep (SETTLE_TIME);
143 144 145 146 147

    // Send a message in both directions
    s_send_seq (A, "B", "ABC", SEQ_END);
    s_send_seq (B, "DEF", SEQ_END);

148
    rc = zmq_disconnect (B, connect_address);
149 150 151
    assert (rc == 0);

    // Disconnect may take time and need command processing.
152
    zmq_pollitem_t poller[2] = {{A, 0, 0, 0}, {B, 0, 0, 0}};
153 154
    rc = zmq_poll (poller, 2, 100);
    assert (rc == 0);
155 156
    rc = zmq_poll (poller, 2, 100);
    assert (rc == 0);
157 158 159 160 161 162 163 164 165 166 167 168 169 170

    // No messages should be available, sending should fail.
    zmq_msg_t msg;
    zmq_msg_init (&msg);

    rc = zmq_send (A, "B", 2, ZMQ_SNDMORE | ZMQ_DONTWAIT);
    assert (rc == -1);
    assert (errno == EHOSTUNREACH);

    rc = zmq_msg_recv (&msg, A, ZMQ_DONTWAIT);
    assert (rc == -1);
    assert (errno == EAGAIN);

    // After a reconnect of B, the messages should still be gone
171
    rc = zmq_connect (B, connect_address);
172 173 174 175 176 177 178 179 180 181 182 183 184
    assert (rc == 0);

    rc = zmq_msg_recv (&msg, A, ZMQ_DONTWAIT);
    assert (rc == -1);
    assert (errno == EAGAIN);

    rc = zmq_msg_recv (&msg, B, ZMQ_DONTWAIT);
    assert (rc == -1);
    assert (errno == EAGAIN);

    rc = zmq_msg_close (&msg);
    assert (rc == 0);

185 186
    close_zero_linger (A);
    close_zero_linger (B);
187

188
    // Wait for disconnects.
189
    msleep (SETTLE_TIME);
190 191 192
}


193
int main (void)
194
{
195
    setup_test_environment ();
196 197 198
    void *ctx = zmq_ctx_new ();
    assert (ctx);

199
    const char *binds[] = {"inproc://a", "tcp://127.0.0.1:*"};
200

201
    for (int transport = 0; transport < 2; ++transport) {
202
        bind_address = binds[transport];
203

204 205 206 207 208 209 210
        // SHALL receive incoming messages from its peers using a fair-queuing
        // strategy.
        test_fair_queue_in (ctx);

        // SHALL create a double queue when a peer connects to it. If this peer
        // disconnects, the ROUTER socket SHALL destroy its double queue and SHALL
        // discard any messages it contains.
211 212
        // *** Test disabled until libzmq does this properly ***
        // test_destroy_queue_on_disconnect (ctx);
213
    }
214 215 216 217

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

218
    return 0;
219
}