test_spec_dealer.cpp 6.73 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2014 Contributors as noted in the AUTHORS file
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

    This file is part of 0MQ.

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

    0MQ 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"

22 23 24
const char *bind_address = 0;
const char *connect_address = 0;

25 26 27 28 29
void test_round_robin_out (void *ctx)
{
    void *dealer = zmq_socket (ctx, ZMQ_DEALER);
    assert (dealer);

30
    int rc = zmq_bind (dealer, bind_address);
31 32
    assert (rc == 0);

33 34
    const size_t services = 5;
    void *rep [services];
35 36 37
    for (size_t peer = 0; peer < services; ++peer) {
        rep [peer] = zmq_socket (ctx, ZMQ_REP);
        assert (rep [peer]);
38 39

        int timeout = 100;
40
        rc = zmq_setsockopt (rep [peer], ZMQ_RCVTIMEO, &timeout, sizeof (int));
41 42
        assert (rc == 0);

43
        rc = zmq_connect (rep [peer], connect_address);
44 45 46
        assert (rc == 0);
    }

47 48 49 50
    // Wait for connections.
    rc = zmq_poll (0, 0, 100);
    assert (rc == 0);

51 52
    // Send all requests
    for (size_t i = 0; i < services; ++i)
53 54 55 56 57 58
        s_send_seq (dealer, 0, "ABC", SEQ_END);

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

59 60
    for (size_t peer = 0; peer < services; ++peer)
        s_recv_seq (rep [peer], "ABC", SEQ_END);
61 62 63 64

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

65
    close_zero_linger (dealer);
66

67 68
    for (size_t peer = 0; peer < services; ++peer)
        close_zero_linger (rep [peer]);
69 70 71 72

    // Wait for disconnects.
    rc = zmq_poll (0, 0, 100);
    assert (rc == 0);
73 74 75 76 77 78 79 80
}

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

    int timeout = 100;
81
    int rc = zmq_setsockopt (receiver, ZMQ_RCVTIMEO, &timeout, sizeof (int));
82 83
    assert (rc == 0);

84
    rc = zmq_bind (receiver, bind_address);
85 86
    assert (rc == 0);

87 88
    const size_t services = 5;
    void *senders [services];
89 90 91
    for (size_t peer = 0; peer < services; ++peer) {
        senders [peer] = zmq_socket (ctx, ZMQ_DEALER);
        assert (senders [peer]);
92

93
        rc = zmq_setsockopt (senders [peer], ZMQ_RCVTIMEO, &timeout, sizeof (int));
94 95
        assert (rc == 0);

96
        rc = zmq_connect (senders [peer], connect_address);
97 98 99 100 101 102 103
        assert (rc == 0);
    }

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

104
    s_send_seq (senders [0], "A", SEQ_END);
105 106
    s_recv_seq (receiver, "A", SEQ_END);

107
    s_send_seq (senders [0], "A", SEQ_END);
108 109
    s_recv_seq (receiver, "A", SEQ_END);

110
    // send our requests
111 112
    for (size_t peer = 0; peer < services; ++peer)
        s_send_seq (senders [peer], "B", SEQ_END);
113

114 115 116 117
    // Wait for data.
    rc = zmq_poll (0, 0, 50);
    assert (rc == 0);

118
    // handle the requests
119
    for (size_t peer = 0; peer < services; ++peer)
120
        s_recv_seq (receiver, "B", SEQ_END);
121 122 123 124

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

125
    close_zero_linger (receiver);
126

127 128
    for (size_t peer = 0; peer < services; ++peer)
        close_zero_linger (senders [peer]);
129 130 131 132

    // Wait for disconnects.
    rc = zmq_poll (0, 0, 100);
    assert (rc == 0);
133 134 135 136 137 138 139
}

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

140
    int rc = zmq_bind (A, bind_address);
141 142 143 144 145
    assert (rc == 0);

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

146
    rc = zmq_connect (B, connect_address);
147 148 149 150 151 152
    assert (rc == 0);

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

153
    rc = zmq_disconnect (B, connect_address);
154 155 156
    assert (rc == 0);

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

    // 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
176
    rc = zmq_connect (B, connect_address);
177 178 179 180 181 182 183 184 185 186 187 188 189
    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);

190 191
    close_zero_linger (A);
    close_zero_linger (B);
192

193 194
    // Wait for disconnects.
    rc = zmq_poll (0, 0, 100);
195 196 197 198 199 200 201 202 203
    assert (rc == 0);
}

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

    int timeout = 100;
204
    int rc = zmq_setsockopt (sc, ZMQ_SNDTIMEO, &timeout, sizeof (timeout));
205 206 207 208 209 210 211 212 213 214 215 216 217 218
    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);
}

219
int main (void)
220
{
221
    setup_test_environment();
222 223 224
    void *ctx = zmq_ctx_new ();
    assert (ctx);

225
    const char *binds [] = { "inproc://a", "tcp://127.0.0.1:5555" };
226
    const char *connects [] = { "inproc://a", "tcp://localhost:5555" };
227

228 229 230
    for (int transports = 0; transports < 2; ++transports) {
        bind_address = binds [transports];
        connect_address = connects [transports];
231

232 233 234
        // SHALL route outgoing messages to available peers using a round-robin
        // strategy.
        test_round_robin_out (ctx);
235

236 237 238
        // SHALL receive incoming messages from its peers using a fair-queuing
        // strategy.
        test_fair_queue_in (ctx);
239

240 241 242 243 244 245
        // 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.
246 247
        // *** Test disabled until libzmq does this properly ***
        // test_destroy_queue_on_disconnect (ctx);
248
    }
249 250 251 252 253 254

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

    return 0 ;
}