test_spec_rep.cpp 5.03 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2016 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 33 34
const char *bind_address = 0;
const char *connect_address = 0;

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

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

44
    rc = zmq_bind (rep, bind_address);
45 46
    assert (rc == 0);

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

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

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

60 61
    msleep (SETTLE_TIME);

62
    s_send_seq (reqs [0], "A", SEQ_END);
63 64
    s_recv_seq (rep, "A", SEQ_END);
    s_send_seq (rep, "A", SEQ_END);
65
    s_recv_seq (reqs [0], "A", SEQ_END);
66

67
    s_send_seq (reqs [0], "A", SEQ_END);
68 69
    s_recv_seq (rep, "A", SEQ_END);
    s_send_seq (rep, "A", SEQ_END);
70
    s_recv_seq (reqs [0], "A", SEQ_END);
71

72 73
    // TODO: following test fails randomly on some boxes
#ifdef SOMEONE_FIXES_THIS
74
    // send N requests
75
    for (size_t peer = 0; peer < services; ++peer) {
76
        char * str = strdup("A");
77 78
        str [0] += peer;
        s_send_seq (reqs [peer], str, SEQ_END);
79 80 81 82
        free (str);
    }

    // handle N requests
83
    for (size_t peer = 0; peer < services; ++peer) {
84
        char * str = strdup("A");
85
        str [0] += peer;
86
        //  Test fails here
87 88
        s_recv_seq (rep, str, SEQ_END);
        s_send_seq (rep, str, SEQ_END);
89
        s_recv_seq (reqs [peer], str, SEQ_END);
90 91
        free (str);
    }
92
#endif
93
    close_zero_linger (rep);
94

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

    // Wait for disconnects.
99
    msleep (SETTLE_TIME);
100 101 102 103 104 105 106
}

void test_envelope (void *ctx)
{
    void *rep = zmq_socket (ctx, ZMQ_REP);
    assert (rep);

107
    int rc = zmq_bind (rep, bind_address);
108 109 110 111 112
    assert (rc == 0);

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

113
    rc = zmq_connect (dealer, connect_address);
114 115 116 117 118 119 120 121 122 123 124 125 126 127
    assert (rc == 0);

    // minimal envelope
    s_send_seq (dealer, 0, "A", SEQ_END);
    s_recv_seq (rep, "A", SEQ_END);
    s_send_seq (rep, "A", SEQ_END);
    s_recv_seq (dealer, 0, "A", SEQ_END);

    // big envelope
    s_send_seq (dealer, "X", "Y", 0, "A", SEQ_END);
    s_recv_seq (rep, "A", SEQ_END);
    s_send_seq (rep, "A", SEQ_END);
    s_recv_seq (dealer, "X", "Y", 0, "A", SEQ_END);

128 129
    close_zero_linger (rep);
    close_zero_linger (dealer);
130

131
    // Wait for disconnects.
132
    msleep (SETTLE_TIME);
133 134
}

135
int main (void)
136
{
137
    setup_test_environment();
138 139 140
    void *ctx = zmq_ctx_new ();
    assert (ctx);

141
    const char *binds [] = { "inproc://a", "tcp://127.0.0.1:5555" };
142
    const char *connects [] = { "inproc://a", "tcp://localhost:5555" };
143

144 145 146
    for (int transport = 0; transport < 2; ++transport) {
        bind_address = binds [transport];
        connect_address = connects [transport];
147 148 149 150 151 152 153 154 155 156 157 158 159

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

        // For an incoming message:
        // SHALL remove and store the address envelope, including the delimiter.
        // SHALL pass the remaining data frames to its calling application.
        // SHALL wait for a single reply message from its calling application.
        // SHALL prepend the address envelope and delimiter.
        // SHALL deliver this message back to the originating peer.
        test_envelope (ctx);
    }
160 161 162 163 164 165

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

    return 0 ;
}