test_spec_router.cpp 5.49 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 30
void test_fair_queue_in (void *ctx)
{
    void *receiver = zmq_socket (ctx, ZMQ_ROUTER);
    assert (receiver);

    int timeout = 100;
31
    int rc = zmq_setsockopt (receiver, ZMQ_RCVTIMEO, &timeout, sizeof (int));
32 33
    assert (rc == 0);

34
    rc = zmq_bind (receiver, bind_address);
35 36
    assert (rc == 0);

37 38 39 40 41
    const size_t services = 5;
    void *senders [services];
    for (size_t peer = 0; peer < services; ++peer) {
        senders [peer] = zmq_socket (ctx, ZMQ_DEALER);
        assert (senders [peer]);
42

43
        rc = zmq_setsockopt (senders [peer], ZMQ_RCVTIMEO, &timeout, sizeof (int));
44 45 46
        assert (rc == 0);

        char *str = strdup("A");
47 48
        str [0] += peer;
        rc = zmq_setsockopt (senders [peer], ZMQ_IDENTITY, str, 2);
49 50 51
        assert (rc == 0);
        free (str);

52
        rc = zmq_connect (senders [peer], connect_address);
53 54 55 56 57 58 59
        assert (rc == 0);
    }

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

60
    s_send_seq (senders [0], "M", SEQ_END);
61 62
    s_recv_seq (receiver, "A", "M", SEQ_END);

63
    s_send_seq (senders [0], "M", SEQ_END);
64 65
    s_recv_seq (receiver, "A", "M", SEQ_END);

66 67
    int sum = 0;

68
    // send N requests
69 70 71
    for (size_t peer = 0; peer < services; ++peer) {
        s_send_seq (senders [peer], "M", SEQ_END);
        sum += 'A' + peer;
72 73
    }

74
    assert (sum == services * 'A' + services * (services - 1) / 2);
75

76
    // handle N requests
77
    for (size_t peer = 0; peer < services; ++peer) {
78 79 80
        rc = zmq_msg_recv (&msg, receiver, 0);
        assert (rc == 2);
        const char *id = (const char *)zmq_msg_data (&msg);
81
        sum -= id [0];
82 83

        s_recv_seq (receiver, "M", SEQ_END);
84 85
    }

86 87
    assert (sum == 0);

88 89 90
    rc = zmq_msg_close (&msg);
    assert (rc == 0);

91
    close_zero_linger (receiver);
92

93 94
    for (size_t peer = 0; peer < services; ++peer)
        close_zero_linger (senders [peer]);
95 96 97 98

    // Wait for disconnects.
    rc = zmq_poll (0, 0, 100);
    assert (rc == 0);
99 100 101 102 103 104 105 106
}

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

    int enabled = 1;
107
    int rc = zmq_setsockopt (A, ZMQ_ROUTER_MANDATORY, &enabled, sizeof (enabled));
108 109
    assert (rc == 0);

110
    rc = zmq_bind (A, bind_address);
111 112 113 114 115 116 117 118
    assert (rc == 0);

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

    rc = zmq_setsockopt (B, ZMQ_IDENTITY, "B", 2);
    assert (rc == 0);

119 120 121 122 123
    rc = zmq_connect (B, connect_address);
    assert (rc == 0);

    // Wait for connection.
    rc = zmq_poll (0, 0, 100);
124 125 126 127 128 129
    assert (rc == 0);

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

130
    rc = zmq_disconnect (B, connect_address);
131 132 133
    assert (rc == 0);

    // Disconnect may take time and need command processing.
134
    zmq_pollitem_t poller [2] = { { A, 0, 0, 0 }, { B, 0, 0, 0 } };
135 136
    rc = zmq_poll (poller, 2, 100);
    assert (rc == 0);
137 138
    rc = zmq_poll (poller, 2, 100);
    assert (rc == 0);
139 140 141 142 143 144 145 146 147 148 149 150 151 152

    // 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
153
    rc = zmq_connect (B, connect_address);
154 155 156 157 158 159 160 161 162 163 164 165 166
    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);

167 168
    close_zero_linger (A);
    close_zero_linger (B);
169

170 171
    // Wait for disconnects.
    rc = zmq_poll (0, 0, 100);
172 173 174 175
    assert (rc == 0);
}


176
int main (void)
177
{
178
    setup_test_environment();
179 180 181
    void *ctx = zmq_ctx_new ();
    assert (ctx);

182
    const char *binds [] = { "inproc://a", "tcp://127.0.0.1:5555" };
183
    const char *connects [] = { "inproc://a", "tcp://localhost:5555" };
184

185 186 187
    for (int transport = 0; transport < 2; ++transport) {
        bind_address = binds [transport];
        connect_address = connects [transport];
188

189 190 191 192 193 194 195
        // 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.
196 197
        // *** Test disabled until libzmq does this properly ***
        // test_destroy_queue_on_disconnect (ctx);
198
    }
199 200 201 202 203 204

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

    return 0 ;
}