summaryrefslogtreecommitdiff
path: root/tests/wireformat.cpp
blob: f12f5aa0079a5c84c0d0083195e0e400d104b546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
    Copyright (c) 2012 250bpm s.r.o.
    Copyright (c) 2012 Paul Colomiets
    Copyright (c) 2012 Other contributors as noted in the AUTHORS file

    This file is part of Crossroads I/O project.

    Crossroads I/O 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.

    Crossroads 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"

#if defined XS_HAVE_WINDOWS
#include <winsock2.h>
#else
#include <sys/socket.h>
#include <netinet/tcp.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#endif

int XS_TEST_MAIN ()
{
    fprintf (stderr, "wire format test running...\n");

#if defined XS_HAVE_WINDOWS
    WSADATA info;
    int wsarc = WSAStartup (MAKEWORD(1,1), &info);
    assert (wsarc == 0);
#endif

    //  Create the basic infrastructure.
    void *ctx = xs_init ();
    assert (ctx);
    void *push = xs_socket (ctx, XS_PUSH);
    assert (push);
    void *pull = xs_socket (ctx, XS_PULL);
    assert (push);

    //  Bind the peer and get the message.
    int service_id = 0x1234;
    int rc = xs_setsockopt (pull, XS_SERVICE_ID, &service_id,
        sizeof service_id);
    assert (rc == 0);
    rc = xs_bind (pull, "tcp://127.0.0.1:5560");
    assert (rc != -1);
    rc = xs_bind (push, "tcp://127.0.0.1:5561");
    assert (rc != -1);

    // Connect to the peer using raw sockets.
    int rpush = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
    struct sockaddr_in address;
    address.sin_family = AF_INET;
    address.sin_addr.s_addr = inet_addr ("127.0.0.1");
    address.sin_port = htons (5560);
    rc = connect(rpush, (struct sockaddr*) &address, sizeof (address));
    assert (rc == 0);

    int rpull = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP);
    address.sin_family = AF_INET;
    address.sin_addr.s_addr = inet_addr ("127.0.0.1");
    address.sin_port = htons (5561);
    rc = connect (rpull, (struct sockaddr*) &address, sizeof (address));
    assert (rc == 0);

    // Let's send some data and check if it arrived
    rc = send (rpush, "\0SP\0\x12\x34\x04\x31\x04\0abc", 13, 0);
    assert (rc == 13);
    unsigned char buf [3];
    unsigned char buf2 [8];
    rc = xs_recv (pull, buf, sizeof (buf), 0);
    assert (rc == 3);
    assert (!memcmp (buf, "abc", 3));

    // Let's push this data into another socket
    rc = xs_send (push, buf, sizeof (buf), 0);
    assert (rc == 3);
    rc = recv (rpull, (char*) buf2, sizeof (buf2), 0);
    assert (rc == 8);
    assert (!memcmp (buf2, "\0SP\0\0\0\x04\x31", 8));
    rc = recv (rpull, (char*) buf2, 5, 0);
    assert (rc == 5);
    assert (!memcmp (buf2, "\x04\0abc", 5));

#if defined XS_HAVE_WINDOWS
    rc = closesocket (rpush);
    assert (rc != SOCKET_ERROR);
    rc = closesocket(rpull);
    assert (rc != SOCKET_ERROR);
    WSACleanup ();
#else
    rc = close (rpush);
    assert (rc == 0);
    rc = close (rpull);
    assert (rc == 0);
#endif
    rc = xs_close (pull);
    assert (rc == 0);
    rc = xs_close (push);
    assert (rc == 0);

    rc = xs_term (ctx);
    assert (rc == 0);

    return 0 ;
}