test_hwm_pubsub.cpp 10.4 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

    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"
31 32
#include "testutil_unity.hpp"

33 34
#include <string.h>

35 36
// NOTE: on OSX the endpoint returned by ZMQ_LAST_ENDPOINT may be quite long,
//       ensure we have extra space for that:
37 38
#define SOCKET_STRING_LEN (MAX_SOCKET_STRING * 4)

39
SETUP_TEARDOWN_TESTCONTEXT
40

41
int test_defaults (int send_hwm_, int msg_cnt_, const char *endpoint)
42
{
43 44
    char pub_endpoint[SOCKET_STRING_LEN];

45 46
    // Set up and bind XPUB socket
    void *pub_socket = test_context_socket (ZMQ_XPUB);
47
    test_bind (pub_socket, endpoint, pub_endpoint, sizeof pub_endpoint);
48

49
    // Set up and connect SUB socket
50
    void *sub_socket = test_context_socket (ZMQ_SUB);
51
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sub_socket, pub_endpoint));
52 53

    //set a hwm on publisher
54
    TEST_ASSERT_SUCCESS_ERRNO (
55
      zmq_setsockopt (pub_socket, ZMQ_SNDHWM, &send_hwm_, sizeof (send_hwm_)));
56 57
    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_setsockopt (sub_socket, ZMQ_SUBSCRIBE, 0, 0));
58

59 60 61 62
    // Wait before starting TX operations till 1 subscriber has subscribed
    // (in this test there's 1 subscriber only)
    const char subscription_to_all_topics[] = {1, 0};
    recv_string_expect_success (pub_socket, subscription_to_all_topics, 0);
63 64

    // Send until we reach "mute" state
65
    int send_count = 0;
66
    while (send_count < msg_cnt_
67
           && zmq_send (pub_socket, "test message", 13, ZMQ_DONTWAIT) == 13)
68 69
        ++send_count;

70
    TEST_ASSERT_EQUAL_INT (send_hwm_, send_count);
71 72
    msleep (SETTLE_TIME);

73 74
    // Now receive all sent messages
    int recv_count = 0;
75 76
    char dummybuff[64];
    while (13 == zmq_recv (sub_socket, &dummybuff, 64, ZMQ_DONTWAIT)) {
77 78 79
        ++recv_count;
    }

80
    TEST_ASSERT_EQUAL_INT (send_hwm_, recv_count);
81 82

    // Clean up
83 84
    test_context_socket_close (sub_socket);
    test_context_socket_close (pub_socket);
85 86 87 88

    return recv_count;
}

89
int receive (void *socket_, int *is_termination)
90
{
91
    int recv_count = 0;
92 93
    *is_termination = 0;

94
    // Now receive all sent messages
95 96 97
    char buffer[255];
    int len;
    while ((len = zmq_recv (socket_, buffer, sizeof (buffer), 0)) >= 0) {
98
        ++recv_count;
99 100 101 102 103

        if (len == 3 && strncmp (buffer, "end", len) == 0) {
            *is_termination = 1;
            return recv_count;
        }
104
    }
105

106
    return recv_count;
107 108
}

109
int test_blocking (int send_hwm_, int msg_cnt_, const char *endpoint)
110
{
111 112
    char pub_endpoint[SOCKET_STRING_LEN];

113
    // Set up bind socket
114
    void *pub_socket = test_context_socket (ZMQ_XPUB);
115
    test_bind (pub_socket, endpoint, pub_endpoint, sizeof pub_endpoint);
116 117

    // Set up connect socket
118
    void *sub_socket = test_context_socket (ZMQ_SUB);
119
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sub_socket, pub_endpoint));
120 121

    //set a hwm on publisher
122
    TEST_ASSERT_SUCCESS_ERRNO (
123
      zmq_setsockopt (pub_socket, ZMQ_SNDHWM, &send_hwm_, sizeof (send_hwm_)));
124
    int wait = 1;
125 126
    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_setsockopt (pub_socket, ZMQ_XPUB_NODROP, &wait, sizeof (wait)));
127 128 129
    int timeout_ms = 10;
    TEST_ASSERT_SUCCESS_ERRNO (zmq_setsockopt (
      sub_socket, ZMQ_RCVTIMEO, &timeout_ms, sizeof (timeout_ms)));
130 131
    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_setsockopt (sub_socket, ZMQ_SUBSCRIBE, 0, 0));
132

133 134
    // Wait before starting TX operations till 1 subscriber has subscribed
    // (in this test there's 1 subscriber only)
135 136
    const uint8_t subscription_to_all_topics[] = {1};
    recv_array_expect_success (pub_socket, subscription_to_all_topics, 0);
137

138 139 140
    // Send until we block
    int send_count = 0;
    int recv_count = 0;
141 142
    int blocked_count = 0;
    int is_termination = 0;
143
    while (send_count < msg_cnt_) {
144
        const int rc = zmq_send (pub_socket, NULL, 0, ZMQ_DONTWAIT);
145
        if (rc == 0) {
146
            ++send_count;
147
        } else if (-1 == rc) {
148
            // if the PUB socket blocks due to HWM, errno should be EAGAIN:
149
            blocked_count++;
150
            TEST_ASSERT_FAILURE_ERRNO (EAGAIN, -1);
151
            recv_count += receive (sub_socket, &is_termination);
152 153 154
        }
    }

155
    // if send_hwm_ < msg_cnt_, we should block at least once:
156 157 158 159
    char counts_string[128];
    snprintf (counts_string, sizeof counts_string - 1,
              "sent = %i, received = %i", send_count, recv_count);
    TEST_ASSERT_GREATER_THAN_INT_MESSAGE (0, blocked_count, counts_string);
160 161 162 163 164 165 166 167 168 169 170 171 172 173

    // dequeue SUB socket again, to make sure XPUB has space to send the termination message
    recv_count += receive (sub_socket, &is_termination);

    // send termination message
    send_string_expect_success (pub_socket, "end", 0);

    // now block on the SUB side till we get the termination message
    while (is_termination == 0)
        recv_count += receive (sub_socket, &is_termination);

    // remove termination message from the count:
    recv_count--;

174
    TEST_ASSERT_EQUAL_INT (send_count, recv_count);
175 176

    // Clean up
177 178
    test_context_socket_close (sub_socket);
    test_context_socket_close (pub_socket);
179 180 181 182

    return recv_count;
}

183
// hwm should apply to the messages that have already been received
184 185 186
// with hwm 11024: send 9999 msg, receive 9999, send 1100, receive 1100
void test_reset_hwm ()
{
187 188
    const int first_count = 9999;
    const int second_count = 1100;
189
    int hwm = 11024;
190
    char my_endpoint[SOCKET_STRING_LEN];
191 192

    // Set up bind socket
193 194 195 196
    void *pub_socket = test_context_socket (ZMQ_PUB);
    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_setsockopt (pub_socket, ZMQ_SNDHWM, &hwm, sizeof (hwm)));
    bind_loopback_ipv4 (pub_socket, my_endpoint, MAX_SOCKET_STRING);
197 198

    // Set up connect socket
199 200 201 202 203 204
    void *sub_socket = test_context_socket (ZMQ_SUB);
    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_setsockopt (sub_socket, ZMQ_RCVHWM, &hwm, sizeof (hwm)));
    TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sub_socket, my_endpoint));
    TEST_ASSERT_SUCCESS_ERRNO (
      zmq_setsockopt (sub_socket, ZMQ_SUBSCRIBE, 0, 0));
205

206
    msleep (SETTLE_TIME);
207 208 209

    // Send messages
    int send_count = 0;
210 211
    while (send_count < first_count
           && zmq_send (pub_socket, NULL, 0, ZMQ_DONTWAIT) == 0)
212
        ++send_count;
213
    TEST_ASSERT_EQUAL_INT (first_count, send_count);
214

215
    msleep (SETTLE_TIME);
216 217 218

    // Now receive all sent messages
    int recv_count = 0;
219
    while (0 == zmq_recv (sub_socket, NULL, 0, ZMQ_DONTWAIT)) {
220 221
        ++recv_count;
    }
222
    TEST_ASSERT_EQUAL_INT (first_count, recv_count);
223

224
    msleep (SETTLE_TIME);
225 226 227

    // Send messages
    send_count = 0;
228 229
    while (send_count < second_count
           && zmq_send (pub_socket, NULL, 0, ZMQ_DONTWAIT) == 0)
230
        ++send_count;
231
    TEST_ASSERT_EQUAL_INT (second_count, send_count);
232

233
    msleep (SETTLE_TIME);
234 235 236

    // Now receive all sent messages
    recv_count = 0;
237
    while (0 == zmq_recv (sub_socket, NULL, 0, ZMQ_DONTWAIT)) {
238 239
        ++recv_count;
    }
240
    TEST_ASSERT_EQUAL_INT (second_count, recv_count);
241

242
    // Clean up
243 244
    test_context_socket_close (sub_socket);
    test_context_socket_close (pub_socket);
245
}
246

247
void test_defaults_large (const char *bind_endpoint_)
248
{
249 250
    // send 1000 msg on hwm 1000, receive 1000
    TEST_ASSERT_EQUAL_INT (1000, test_defaults (1000, 1000, bind_endpoint_));
251 252
}

253
void test_defaults_small (const char *bind_endpoint_)
254
{
255 256
    // send 1000 msg on hwm 100, receive 100
    TEST_ASSERT_EQUAL_INT (100, test_defaults (100, 100, bind_endpoint_));
257
}
258

259
void test_blocking (const char *bind_endpoint_)
260
{
261 262
    // send 6000 msg on hwm 2000, drops above hwm, only receive hwm:
    TEST_ASSERT_EQUAL_INT (6000, test_blocking (2000, 6000, bind_endpoint_));
263
}
264

265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
#define DEFINE_REGULAR_TEST_CASES(name, bind_endpoint)                         \
    void test_defaults_large_##name ()                                         \
    {                                                                          \
        test_defaults_large (bind_endpoint);                                   \
    }                                                                          \
                                                                               \
    void test_defaults_small_##name ()                                         \
    {                                                                          \
        test_defaults_small (bind_endpoint);                                   \
    }                                                                          \
                                                                               \
    void test_blocking_##name () { test_blocking (bind_endpoint); }

#define RUN_REGULAR_TEST_CASES(name)                                           \
    RUN_TEST (test_defaults_large_##name);                                     \
    RUN_TEST (test_defaults_small_##name);                                     \
    RUN_TEST (test_blocking_##name)

DEFINE_REGULAR_TEST_CASES (tcp, "tcp://127.0.0.1:*")
DEFINE_REGULAR_TEST_CASES (inproc, "inproc://a")

#if !defined(ZMQ_HAVE_WINDOWS) && !defined(ZMQ_HAVE_GNU)
DEFINE_REGULAR_TEST_CASES (ipc, "ipc://*")
288 289
#endif

290 291 292
int main ()
{
    setup_test_environment ();
293

294
    UNITY_BEGIN ();
295

296 297
    RUN_REGULAR_TEST_CASES (tcp);
    RUN_REGULAR_TEST_CASES (inproc);
298

299
#if !defined(ZMQ_HAVE_WINDOWS) && !defined(ZMQ_HAVE_GNU)
300
    RUN_REGULAR_TEST_CASES (ipc);
301
#endif
302 303
    RUN_TEST (test_reset_hwm);
    return UNITY_END ();
304
}