testutil.hpp 9.27 KB
Newer Older
Guido Goldstein's avatar
Guido Goldstein committed
1
/*
2
    Copyright (c) 2007-2015 Contributors as noted in the AUTHORS file
Guido Goldstein's avatar
Guido Goldstein committed
3

4
    This file is part of libzmq, the ZeroMQ core engine in C++.
Guido Goldstein's avatar
Guido Goldstein committed
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
Guido Goldstein's avatar
Guido Goldstein committed
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.
Guido Goldstein's avatar
Guido Goldstein committed
25

26
    You should have received a copy of the GNU Lesser General Public License
Guido Goldstein's avatar
Guido Goldstein committed
27 28 29
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

30 31
#ifndef __TESTUTIL_HPP_INCLUDED__
#define __TESTUTIL_HPP_INCLUDED__
Guido Goldstein's avatar
Guido Goldstein committed
32

33
#include "../include/zmq.h"
34
#include "../src/stdint.hpp"
35
#include "platform.hpp"
36

37 38 39
//  This defines the settle time used in tests; raise this if we
//  get test failures on slower systems due to binds/connects not
//  settled. Tested to work reliably at 1 msec on a fast PC.
40
#define SETTLE_TIME 50         //  In msec
41

42
#undef NDEBUG
43
#include <time.h>
44
#include <assert.h>
45
#include <stdarg.h>
46
#include <string>
47
#include <string.h>
48

49
#if defined _WIN32
50 51 52 53
#   if defined _MSC_VER
#       include <crtdbg.h>
#       pragma warning(disable:4996)
#   endif
54 55 56 57 58
#else
#   include <unistd.h>
#   include <signal.h>
#   include <stdlib.h>
#   include <sys/wait.h>
59 60
#endif

61 62 63
//  Bounce a message from client to server and back
//  For REQ/REP or DEALER/DEALER pairs only

64
void
65
bounce (void *server, void *client)
Guido Goldstein's avatar
Guido Goldstein committed
66
{
67 68
    const char *content = "12345678ABCDEFGH12345678abcdefgh";

69 70
    //  Send message from client to server
    int rc = zmq_send (client, content, 32, ZMQ_SNDMORE);
71
    assert (rc == 32);
72
    rc = zmq_send (client, content, 32, 0);
73
    assert (rc == 32);
74

75 76 77
    //  Receive message at server side
    char buffer [32];
    rc = zmq_recv (server, buffer, 32, 0);
78
    assert (rc == 32);
79 80
    //  Check that message is still the same
    assert (memcmp (buffer, content, 32) == 0);
81 82
    int rcvmore;
    size_t sz = sizeof (rcvmore);
83
    rc = zmq_getsockopt (server, ZMQ_RCVMORE, &rcvmore, &sz);
84 85
    assert (rc == 0);
    assert (rcvmore);
86
    rc = zmq_recv (server, buffer, 32, 0);
87
    assert (rc == 32);
88 89
    //  Check that message is still the same
    assert (memcmp (buffer, content, 32) == 0);
90
    rc = zmq_getsockopt (server, ZMQ_RCVMORE, &rcvmore, &sz);
91 92
    assert (rc == 0);
    assert (!rcvmore);
93

94 95
    //  Send two parts back to client
    rc = zmq_send (server, buffer, 32, ZMQ_SNDMORE);
96
    assert (rc == 32);
97
    rc = zmq_send (server, buffer, 32, 0);
98
    assert (rc == 32);
99

100 101
    //  Receive the two parts at the client side
    rc = zmq_recv (client, buffer, 32, 0);
102
    assert (rc == 32);
103 104
    //  Check that message is still the same
    assert (memcmp (buffer, content, 32) == 0);
105
    rc = zmq_getsockopt (client, ZMQ_RCVMORE, &rcvmore, &sz);
106 107
    assert (rc == 0);
    assert (rcvmore);
108
    rc = zmq_recv (client, buffer, 32, 0);
109
    assert (rc == 32);
110 111
    //  Check that message is still the same
    assert (memcmp (buffer, content, 32) == 0);
112
    rc = zmq_getsockopt (client, ZMQ_RCVMORE, &rcvmore, &sz);
113 114
    assert (rc == 0);
    assert (!rcvmore);
Guido Goldstein's avatar
Guido Goldstein committed
115 116
}

MinRK's avatar
MinRK committed
117 118 119 120 121 122 123 124
//  Same as bounce, but expect messages to never arrive
//  for security or subscriber reasons.

void
expect_bounce_fail (void *server, void *client)
{
    const char *content = "12345678ABCDEFGH12345678abcdefgh";
    char buffer [32];
125
    int timeout = 250;
MinRK's avatar
MinRK committed
126 127

    //  Send message from client to server
128 129 130 131
    int rc = zmq_setsockopt (client, ZMQ_SNDTIMEO, &timeout, sizeof (int));
    assert (rc == 0);
    rc = zmq_send (client, content, 32, ZMQ_SNDMORE);
    assert ((rc == 32) || ((rc == -1) && (errno == EAGAIN)));
MinRK's avatar
MinRK committed
132
    rc = zmq_send (client, content, 32, 0);
133
    assert ((rc == 32) || ((rc == -1) && (errno == EAGAIN)));
MinRK's avatar
MinRK committed
134 135

    //  Receive message at server side (should not succeed)
136
    rc = zmq_setsockopt (server, ZMQ_RCVTIMEO, &timeout, sizeof (int));
MinRK's avatar
MinRK committed
137 138 139
    assert (rc == 0);
    rc = zmq_recv (server, buffer, 32, 0);
    assert (rc == -1);
140
    assert (zmq_errno () == EAGAIN);
MinRK's avatar
MinRK committed
141

142
    //  Send message from server to client to test other direction
143
    //  If connection failed, send may block, without a timeout
144 145
    rc = zmq_setsockopt (server, ZMQ_SNDTIMEO, &timeout, sizeof (int));
    assert (rc == 0);
MinRK's avatar
MinRK committed
146
    rc = zmq_send (server, content, 32, ZMQ_SNDMORE);
147
    assert (rc == 32 || (rc == -1 && zmq_errno () == EAGAIN));
MinRK's avatar
MinRK committed
148
    rc = zmq_send (server, content, 32, 0);
149
    assert (rc == 32 || (rc == -1 && zmq_errno () == EAGAIN));
MinRK's avatar
MinRK committed
150

151 152 153
    //  Receive message at client side (should not succeed)
    rc = zmq_setsockopt (client, ZMQ_RCVTIMEO, &timeout, sizeof (int));
    assert (rc == 0);
MinRK's avatar
MinRK committed
154 155
    rc = zmq_recv (client, buffer, 32, 0);
    assert (rc == -1);
156
    assert (zmq_errno () == EAGAIN);
MinRK's avatar
MinRK committed
157 158
}

159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
//  Receive 0MQ string from socket and convert into C string
//  Caller must free returned string. Returns NULL if the context
//  is being terminated.
char *
s_recv (void *socket) {
    char buffer [256];
    int size = zmq_recv (socket, buffer, 255, 0);
    if (size == -1)
        return NULL;
    if (size > 255)
        size = 255;
    buffer [size] = 0;
    return strdup (buffer);
}

//  Convert C string to 0MQ string and send to socket
int
s_send (void *socket, const char *string) {
    int size = zmq_send (socket, string, strlen (string), 0);
    return size;
}

//  Sends string as 0MQ string, as multipart non-terminal
int
s_sendmore (void *socket, const char *string) {
    int size = zmq_send (socket, string, strlen (string), ZMQ_SNDMORE);
    return size;
}

#define streq(s1,s2)    (!strcmp ((s1), (s2)))
#define strneq(s1,s2)   (strcmp ((s1), (s2)))

191
const char *SEQ_END = (const char *) 1;
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206

//  Sends a message composed of frames that are C strings or null frames.
//  The list must be terminated by SEQ_END.
//  Example: s_send_seq (req, "ABC", 0, "DEF", SEQ_END);
void s_send_seq (void *socket, ...)
{
    va_list ap;
    va_start (ap, socket);
    const char * data = va_arg (ap, const char *);
    while (true)
    {
        const char * prev = data;
        data = va_arg (ap, const char *);
        bool end = data == SEQ_END;

207
        if (!prev) {
208 209 210
            int rc = zmq_send (socket, 0, 0, end ? 0 : ZMQ_SNDMORE);
            assert (rc != -1);
        }
211
        else {
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
            int rc = zmq_send (socket, prev, strlen (prev)+1, end ? 0 : ZMQ_SNDMORE);
            assert (rc != -1);
        }
        if (end)
            break;
    }
    va_end (ap);
}

//  Receives message a number of frames long and checks that the frames have
//  the given data which can be either C strings or 0 for a null frame.
//  The list must be terminated by SEQ_END.
//  Example: s_recv_seq (rep, "ABC", 0, "DEF", SEQ_END);
void s_recv_seq (void *socket, ...)
{
    zmq_msg_t msg;
    zmq_msg_init (&msg);

    int more;
    size_t more_size = sizeof(more);

    va_list ap;
    va_start (ap, socket);
    const char * data = va_arg (ap, const char *);
236

237
    while (true) {
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
        int rc = zmq_msg_recv (&msg, socket, 0);
        assert (rc != -1);

        if (!data)
            assert (zmq_msg_size (&msg) == 0);
        else
            assert (strcmp (data, (const char *)zmq_msg_data (&msg)) == 0);

        data = va_arg (ap, const char *);
        bool end = data == SEQ_END;

        rc = zmq_getsockopt (socket, ZMQ_RCVMORE, &more, &more_size);
        assert (rc == 0);

        assert (!more == end);
        if (end)
            break;
    }
    va_end (ap);

    zmq_msg_close (&msg);
}

261

262
//  Sets a zero linger period on a socket and closes it.
263 264 265 266
void close_zero_linger (void *socket)
{
    int linger = 0;
    int rc = zmq_setsockopt (socket, ZMQ_LINGER, &linger, sizeof(linger));
267
    assert (rc == 0 || errno == ETERM);
268 269 270 271
    rc = zmq_close (socket);
    assert (rc == 0);
}

272 273 274
void setup_test_environment()
{
#if defined _WIN32
275
#   if defined _MSC_VER
276
    _set_abort_behavior( 0, _WRITE_ABORT_MSG);
277 278
    _CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_FILE );
    _CrtSetReportFile( _CRT_ASSERT, _CRTDBG_FILE_STDERR );
279
#   endif
280 281 282 283
#else
#if defined ZMQ_HAVE_CYGWIN
    // abort test after 121 seconds
    alarm(121);
284
#else
285
#   if !defined ZMQ_DISABLE_TEST_TIMEOUT
286 287
    // abort test after 60 seconds
    alarm(60);
288
#   endif
289
#endif
290
#endif
291 292 293 294 295
#if defined __MVS__
    // z/OS UNIX System Services: Ignore SIGPIPE during test runs, as a
    // workaround for no SO_NOGSIGPIPE socket option.
    signal(SIGPIPE, SIG_IGN);
#endif
296 297
}

298 299 300 301
//  Provide portable millisecond sleep
// http://www.cplusplus.com/forum/unices/60161/    http://en.cppreference.com/w/cpp/thread/sleep_for
void msleep (int milliseconds)
{
302
#ifdef ZMQ_HAVE_WINDOWS
303
    Sleep (milliseconds);
304
#else
305
    usleep (static_cast <useconds_t> (milliseconds) * 1000);
306 307 308 309
#endif
}


Guido Goldstein's avatar
Guido Goldstein committed
310
#endif