blob: d509c6b2e22a17b98617d2e6ee3f53f298fb635d [file] [log] [blame]
/*
Copyright (c) 2012 Martin Sustrik All rights reserved.
Copyright (c) 2013 GoPivotal, Inc. All rights reserved.
Copyright 2015 Garrett D'Amore <garrett@damore.org>
Copyright 2016 Franklin "Snaipe" Mathieu <franklinmathieu@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom
the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
*/
#include "../src/nn.h"
#include "../src/reqrep.h"
#include "../src/tcp.h"
#include "../src/inproc.h"
#include "testutil.h"
#include "../src/utils/attr.h"
#include "../src/utils/thread.c"
#define SOCKET_ADDRESS_I "inproc://nobody"
static char socket_address_h[128], socket_address_j[128];
void device5 (NN_UNUSED void *arg)
{
int rc;
int dev0;
int dev1;
/* Intialise the device sockets. */
dev0 = test_socket (AF_SP_RAW, NN_REP);
test_bind (dev0, socket_address_h);
dev1 = test_socket (AF_SP_RAW, NN_REQ);
test_bind (dev1, SOCKET_ADDRESS_I);
/* Run the device. */
rc = nn_device (dev0, dev1);
nn_assert (rc < 0 && nn_errno () == EBADF);
/* Clean up. */
test_close (dev0);
test_close (dev1);
}
void device6 (NN_UNUSED void *arg)
{
int rc;
int dev2;
int dev3;
dev2 = test_socket (AF_SP_RAW, NN_REP);
test_connect (dev2, SOCKET_ADDRESS_I);
dev3 = test_socket (AF_SP_RAW, NN_REQ);
test_bind (dev3, socket_address_j);
/* Run the device. */
rc = nn_device (dev2, dev3);
nn_assert (rc < 0 && nn_errno () == EBADF);
/* Clean up. */
test_close (dev2);
test_close (dev3);
}
int main (int argc, const char *argv[])
{
int end0;
int end1;
struct nn_thread thread5;
struct nn_thread thread6;
int port = get_test_port(argc, argv);
test_addr_from(socket_address_h, "tcp", "127.0.0.1", port);
test_addr_from(socket_address_j, "tcp", "127.0.0.1", port + 1);
/* Test the bi-directional device with REQ/REP (headers). */
/* Start the devices. */
nn_thread_init (&thread5, device5, NULL);
nn_thread_init (&thread6, device6, NULL);
/* Create two sockets to connect to the device. */
end0 = test_socket (AF_SP, NN_REQ);
test_connect (end0, socket_address_h);
end1 = test_socket (AF_SP, NN_REP);
test_connect (end1, socket_address_j);
/* Wait for TCP to establish. */
nn_sleep (1000);
/* Pass a message between endpoints. */
test_send (end0, "XYZ");
test_recv (end1, "XYZ");
/* Now send a reply. */
test_send (end1, "REPLYXYZ");
test_recv (end0, "REPLYXYZ");
/* Clean up. */
test_close (end0);
test_close (end1);
/* Shut down the devices. */
nn_term ();
nn_thread_term (&thread5);
nn_thread_term (&thread6);
return 0;
}