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

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
7
    the terms of the GNU Lesser General Public License as published by
Guido Goldstein's avatar
Guido Goldstein committed
8 9 10 11 12 13
    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
14
    GNU Lesser General Public License for more details.
Guido Goldstein's avatar
Guido Goldstein committed
15

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

20 21
#ifndef __TESTUTIL_HPP_INCLUDED__
#define __TESTUTIL_HPP_INCLUDED__
Guido Goldstein's avatar
Guido Goldstein committed
22

23
#include "../include/zmq.h"
24
#include "../include/zmq_utils.h"
25
#include "platform.hpp"
26

27
#undef NDEBUG
28
#include <time.h>
29
#include <assert.h>
30
#include <stdarg.h>
31
#include <string>
32

33
#if defined _WIN32
34 35 36 37
#   if defined _MSC_VER
#       include <crtdbg.h>
#       pragma warning(disable:4996)
#   endif
38 39 40 41 42
#else
#   include <unistd.h>
#   include <signal.h>
#   include <stdlib.h>
#   include <sys/wait.h>
43 44
#endif

45 46 47
//  Bounce a message from client to server and back
//  For REQ/REP or DEALER/DEALER pairs only

48
void
49
bounce (void *server, void *client)
Guido Goldstein's avatar
Guido Goldstein committed
50
{
51 52
    const char *content = "12345678ABCDEFGH12345678abcdefgh";

53 54
    //  Send message from client to server
    int rc = zmq_send (client, content, 32, ZMQ_SNDMORE);
55
    assert (rc == 32);
56
    rc = zmq_send (client, content, 32, 0);
57
    assert (rc == 32);
58

59 60 61
    //  Receive message at server side
    char buffer [32];
    rc = zmq_recv (server, buffer, 32, 0);
62
    assert (rc == 32);
63 64
    //  Check that message is still the same
    assert (memcmp (buffer, content, 32) == 0);
65 66
    int rcvmore;
    size_t sz = sizeof (rcvmore);
67
    rc = zmq_getsockopt (server, ZMQ_RCVMORE, &rcvmore, &sz);
68 69
    assert (rc == 0);
    assert (rcvmore);
70
    rc = zmq_recv (server, buffer, 32, 0);
71
    assert (rc == 32);
72 73
    //  Check that message is still the same
    assert (memcmp (buffer, content, 32) == 0);
74
    rc = zmq_getsockopt (server, ZMQ_RCVMORE, &rcvmore, &sz);
75 76
    assert (rc == 0);
    assert (!rcvmore);
77 78 79
    
    //  Send two parts back to client
    rc = zmq_send (server, buffer, 32, ZMQ_SNDMORE);
80
    assert (rc == 32);
81
    rc = zmq_send (server, buffer, 32, 0);
82
    assert (rc == 32);
83

84 85
    //  Receive the two parts at the client side
    rc = zmq_recv (client, buffer, 32, 0);
86
    assert (rc == 32);
87 88
    //  Check that message is still the same
    assert (memcmp (buffer, content, 32) == 0);
89
    rc = zmq_getsockopt (client, ZMQ_RCVMORE, &rcvmore, &sz);
90 91
    assert (rc == 0);
    assert (rcvmore);
92
    rc = zmq_recv (client, buffer, 32, 0);
93
    assert (rc == 32);
94 95
    //  Check that message is still the same
    assert (memcmp (buffer, content, 32) == 0);
96
    rc = zmq_getsockopt (client, ZMQ_RCVMORE, &rcvmore, &sz);
97 98
    assert (rc == 0);
    assert (!rcvmore);
Guido Goldstein's avatar
Guido Goldstein committed
99 100
}

MinRK's avatar
MinRK committed
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
//  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];

    //  Send message from client to server
    int rc = zmq_send (client, content, 32, ZMQ_SNDMORE);
    assert (rc == 32);
    rc = zmq_send (client, content, 32, 0);
    assert (rc == 32);

    //  Receive message at server side (should not succeed)
117 118
    int timeout = 150;
    rc = zmq_setsockopt (server, ZMQ_RCVTIMEO, &timeout, sizeof (int));
MinRK's avatar
MinRK committed
119 120 121
    assert (rc == 0);
    rc = zmq_recv (server, buffer, 32, 0);
    assert (rc == -1);
122
    assert (zmq_errno () == EAGAIN);
MinRK's avatar
MinRK committed
123

124
    //  Send message from server to client to test other direction
MinRK's avatar
MinRK committed
125 126 127 128 129
    rc = zmq_send (server, content, 32, ZMQ_SNDMORE);
    assert (rc == 32);
    rc = zmq_send (server, content, 32, 0);
    assert (rc == 32);

130 131 132
    //  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
133 134
    rc = zmq_recv (client, buffer, 32, 0);
    assert (rc == -1);
135
    assert (zmq_errno () == EAGAIN);
MinRK's avatar
MinRK committed
136 137
}

138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
//  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)))

170
const char *SEQ_END = (const char *) 1;
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185

//  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;

186
        if (!prev) {
187 188 189
            int rc = zmq_send (socket, 0, 0, end ? 0 : ZMQ_SNDMORE);
            assert (rc != -1);
        }
190
        else {
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
            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 *);
215 216
    
    while (true) {
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
        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);
}

240 241 242 243 244 245

// Sets a zero linger period on a socket and closes it.
void close_zero_linger (void *socket)
{
    int linger = 0;
    int rc = zmq_setsockopt (socket, ZMQ_LINGER, &linger, sizeof(linger));
246
    assert (rc == 0 || errno == ETERM);
247 248 249 250
    rc = zmq_close (socket);
    assert (rc == 0);
}

251 252 253
void setup_test_environment()
{
#if defined _WIN32
254
#   if defined _MSC_VER
255
    _set_abort_behavior( 0, _WRITE_ABORT_MSG);
256 257
    _CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_FILE );
    _CrtSetReportFile( _CRT_ASSERT, _CRTDBG_FILE_STDERR );
258
#   endif
259 260 261
#endif
}

262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
// provide portable millisecond sleep
#include <time.h>

#ifdef ZMQ_HAVE_WINDOWS
#include <windows.h>
#else
#include <unistd.h>
#endif

void msleep(int milliseconds)
{ // http://www.cplusplus.com/forum/unices/60161/    http://en.cppreference.com/w/cpp/thread/sleep_for
  #ifdef ZMQ_HAVE_WINDOWS
  Sleep(milliseconds);
  #else
  usleep(static_cast<useconds_t>(milliseconds)*1000);
  #endif
}


Guido Goldstein's avatar
Guido Goldstein committed
281
#endif