test_spec_dealer.cpp 7.51 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_round_robin_out (void *ctx)
{
    void *dealer = zmq_socket (ctx, ZMQ_DEALER);
    assert (dealer);

40
    int rc = zmq_bind (dealer, bind_address);
41
    assert (rc == 0);
42 43 44
    size_t len = MAX_SOCKET_STRING;
    rc = zmq_getsockopt (dealer, ZMQ_LAST_ENDPOINT, connect_address, &len);
    assert (rc == 0);
45

46 47
    const size_t services = 5;
    void *rep [services];
48 49 50
    for (size_t peer = 0; peer < services; ++peer) {
        rep [peer] = zmq_socket (ctx, ZMQ_REP);
        assert (rep [peer]);
51

52
        int timeout = 250;
53
        rc = zmq_setsockopt (rep [peer], ZMQ_RCVTIMEO, &timeout, sizeof (int));
54 55
        assert (rc == 0);

56
        rc = zmq_connect (rep [peer], connect_address);
57 58 59
        assert (rc == 0);
    }

60
    // Wait for connections.
61
    msleep (SETTLE_TIME);
62

63 64
    // Send all requests
    for (size_t i = 0; i < services; ++i)
65 66 67 68 69 70
        s_send_seq (dealer, 0, "ABC", SEQ_END);

    // Expect every REP got one message
    zmq_msg_t msg;
    zmq_msg_init (&msg);

71 72
    for (size_t peer = 0; peer < services; ++peer)
        s_recv_seq (rep [peer], "ABC", SEQ_END);
73 74 75 76

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

77
    close_zero_linger (dealer);
78

79 80
    for (size_t peer = 0; peer < services; ++peer)
        close_zero_linger (rep [peer]);
81 82

    // Wait for disconnects.
83
    msleep (SETTLE_TIME);
84 85 86 87 88 89 90
}

void test_fair_queue_in (void *ctx)
{
    void *receiver = zmq_socket (ctx, ZMQ_DEALER);
    assert (receiver);

91
    int timeout = 250;
92
    int rc = zmq_setsockopt (receiver, ZMQ_RCVTIMEO, &timeout, sizeof (int));
93 94
    assert (rc == 0);

95
    rc = zmq_bind (receiver, bind_address);
96
    assert (rc == 0);
97 98 99
    size_t len = MAX_SOCKET_STRING;
    rc = zmq_getsockopt (receiver, ZMQ_LAST_ENDPOINT, connect_address, &len);
    assert (rc == 0);
100

101 102
    const size_t services = 5;
    void *senders [services];
103 104 105
    for (size_t peer = 0; peer < services; ++peer) {
        senders [peer] = zmq_socket (ctx, ZMQ_DEALER);
        assert (senders [peer]);
106

107
        rc = zmq_setsockopt (senders [peer], ZMQ_RCVTIMEO, &timeout, sizeof (int));
108 109
        assert (rc == 0);

110
        rc = zmq_connect (senders [peer], connect_address);
111 112 113 114 115 116 117
        assert (rc == 0);
    }

    zmq_msg_t msg;
    rc = zmq_msg_init (&msg);
    assert (rc == 0);

118
    s_send_seq (senders [0], "A", SEQ_END);
119 120
    s_recv_seq (receiver, "A", SEQ_END);

121
    s_send_seq (senders [0], "A", SEQ_END);
122 123
    s_recv_seq (receiver, "A", SEQ_END);

124
    // send our requests
125 126
    for (size_t peer = 0; peer < services; ++peer)
        s_send_seq (senders [peer], "B", SEQ_END);
127

128
    // Wait for data.
129
    msleep (SETTLE_TIME);
130

131
    // handle the requests
132
    for (size_t peer = 0; peer < services; ++peer)
133
        s_recv_seq (receiver, "B", SEQ_END);
134 135 136 137

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

138
    close_zero_linger (receiver);
139

140 141
    for (size_t peer = 0; peer < services; ++peer)
        close_zero_linger (senders [peer]);
142 143

    // Wait for disconnects.
144
    msleep (SETTLE_TIME);
145 146 147 148 149 150 151
}

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

152
    int rc = zmq_bind (A, bind_address);
153
    assert (rc == 0);
154 155 156
    size_t len = MAX_SOCKET_STRING;
    rc = zmq_getsockopt (A, ZMQ_LAST_ENDPOINT, connect_address, &len);
    assert (rc == 0);
157 158 159 160

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

161
    rc = zmq_connect (B, connect_address);
162 163 164 165 166 167
    assert (rc == 0);

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

168
    rc = zmq_disconnect (B, connect_address);
169 170 171
    assert (rc == 0);

    // Disconnect may take time and need command processing.
172
    zmq_pollitem_t poller [2] = { { A, 0, 0, 0 }, { B, 0, 0, 0 } };
173 174
    rc = zmq_poll (poller, 2, 100);
    assert (rc == 0);
175 176
    rc = zmq_poll (poller, 2, 100);
    assert (rc == 0);
177 178 179 180 181 182 183 184 185 186 187 188 189 190

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

    rc = zmq_send (A, 0, 0, ZMQ_DONTWAIT);
    assert (rc == -1);
    assert (errno == EAGAIN);

    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
191
    rc = zmq_connect (B, connect_address);
192 193 194 195 196 197 198 199 200 201 202 203 204
    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);

205 206
    close_zero_linger (A);
    close_zero_linger (B);
207

208
    // Wait for disconnects.
209
    msleep (SETTLE_TIME);
210 211 212 213 214 215 216
}

void test_block_on_send_no_peers (void *ctx)
{
    void *sc = zmq_socket (ctx, ZMQ_DEALER);
    assert (sc);

217
    int timeout = 250;
218
    int rc = zmq_setsockopt (sc, ZMQ_SNDTIMEO, &timeout, sizeof (timeout));
219 220 221 222 223 224 225 226 227 228 229 230 231 232
    assert (rc == 0);

    rc = zmq_send (sc, 0, 0, ZMQ_DONTWAIT);
    assert (rc == -1);
    assert (errno == EAGAIN);

    rc = zmq_send (sc, 0, 0, 0);
    assert (rc == -1);
    assert (errno == EAGAIN);

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

233
int main (void)
234
{
235
    setup_test_environment();
236 237 238
    void *ctx = zmq_ctx_new ();
    assert (ctx);

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

241 242
    for (int transports = 0; transports < 2; ++transports) {
        bind_address = binds [transports];
243

244 245 246
        // SHALL route outgoing messages to available peers using a round-robin
        // strategy.
        test_round_robin_out (ctx);
247

248 249 250
        // SHALL receive incoming messages from its peers using a fair-queuing
        // strategy.
        test_fair_queue_in (ctx);
251

252 253 254 255 256 257
        // SHALL block on sending, or return a suitable error, when it has no connected peers.
        test_block_on_send_no_peers (ctx);

        // SHALL create a double queue when a peer connects to it. If this peer
        // disconnects, the DEALER socket SHALL destroy its double queue and SHALL
        // discard any messages it contains.
258 259
        // *** Test disabled until libzmq does this properly ***
        // test_destroy_queue_on_disconnect (ctx);
260
    }
261 262 263 264 265 266

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

    return 0 ;
}