2013-07-26 21:13:43 +02:00
|
|
|
/*
|
2017-05-01 13:11:11 +02:00
|
|
|
Copyright (c) 2007-2017 Contributors as noted in the AUTHORS file
|
2013-07-26 21:13:43 +02:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
This file is part of libzmq, the ZeroMQ core engine in C++.
|
2013-07-26 21:13:43 +02:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
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
|
2013-07-26 21:13:43 +02:00
|
|
|
(at your option) any later version.
|
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
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.
|
2013-07-26 21:13:43 +02:00
|
|
|
|
|
|
|
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"
|
2018-08-20 11:44:53 +02:00
|
|
|
#include "testutil_unity.hpp"
|
2013-07-26 21:13:43 +02:00
|
|
|
|
2019-03-24 17:51:28 +01:00
|
|
|
SETUP_TEARDOWN_TESTCONTEXT
|
2013-07-26 21:13:43 +02:00
|
|
|
|
2018-08-20 11:44:53 +02:00
|
|
|
void test_req_correlate ()
|
|
|
|
{
|
|
|
|
void *req = test_context_socket (ZMQ_REQ);
|
|
|
|
void *router = test_context_socket (ZMQ_ROUTER);
|
2013-07-26 21:13:43 +02:00
|
|
|
|
|
|
|
int enabled = 1;
|
2018-08-20 11:44:53 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_setsockopt (req, ZMQ_REQ_CORRELATE, &enabled, sizeof (int)));
|
2013-07-26 21:13:43 +02:00
|
|
|
|
|
|
|
int rcvtimeo = 100;
|
2018-08-20 11:44:53 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_setsockopt (req, ZMQ_RCVTIMEO, &rcvtimeo, sizeof (int)));
|
2013-07-26 21:13:43 +02:00
|
|
|
|
2018-08-20 11:44:53 +02:00
|
|
|
char my_endpoint[MAX_SOCKET_STRING];
|
|
|
|
bind_loopback_ipv4 (router, my_endpoint, sizeof my_endpoint);
|
2013-07-26 21:13:43 +02:00
|
|
|
|
2018-08-20 11:44:53 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (req, my_endpoint));
|
2013-07-26 21:13:43 +02:00
|
|
|
|
|
|
|
// Send a multi-part request.
|
|
|
|
s_send_seq (req, "ABC", "DEF", SEQ_END);
|
|
|
|
|
|
|
|
zmq_msg_t msg;
|
|
|
|
zmq_msg_init (&msg);
|
|
|
|
|
2017-09-07 11:21:13 +02:00
|
|
|
// Receive peer routing id
|
2018-08-20 11:44:53 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_recv (&msg, router, 0));
|
|
|
|
TEST_ASSERT_GREATER_THAN_INT (0, zmq_msg_size (&msg));
|
2013-07-26 21:13:43 +02:00
|
|
|
zmq_msg_t peer_id_msg;
|
|
|
|
zmq_msg_init (&peer_id_msg);
|
|
|
|
zmq_msg_copy (&peer_id_msg, &msg);
|
|
|
|
|
|
|
|
int more = 0;
|
|
|
|
size_t more_size = sizeof (more);
|
2018-08-20 11:44:53 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_getsockopt (router, ZMQ_RCVMORE, &more, &more_size));
|
|
|
|
TEST_ASSERT_TRUE (more);
|
2013-07-26 21:13:43 +02:00
|
|
|
|
|
|
|
// Receive request id 1
|
2018-08-20 11:44:53 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_recv (&msg, router, 0));
|
2019-03-23 12:53:38 +01:00
|
|
|
TEST_ASSERT_EQUAL_UINT (sizeof (uint32_t), zmq_msg_size (&msg));
|
2018-08-20 11:44:53 +02:00
|
|
|
const uint32_t req_id = *static_cast<uint32_t *> (zmq_msg_data (&msg));
|
2013-07-26 21:13:43 +02:00
|
|
|
zmq_msg_t req_id_msg;
|
|
|
|
zmq_msg_init (&req_id_msg);
|
|
|
|
zmq_msg_copy (&req_id_msg, &msg);
|
|
|
|
|
|
|
|
more = 0;
|
|
|
|
more_size = sizeof (more);
|
2018-08-20 11:44:53 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_getsockopt (router, ZMQ_RCVMORE, &more, &more_size));
|
|
|
|
TEST_ASSERT_TRUE (more);
|
2013-07-26 21:13:43 +02:00
|
|
|
|
|
|
|
// Receive the rest.
|
|
|
|
s_recv_seq (router, 0, "ABC", "DEF", SEQ_END);
|
|
|
|
|
|
|
|
uint32_t bad_req_id = req_id + 1;
|
|
|
|
|
|
|
|
// Send back a bad reply: wrong req id, 0, data
|
|
|
|
zmq_msg_copy (&msg, &peer_id_msg);
|
2018-08-20 11:44:53 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_send (&msg, router, ZMQ_SNDMORE));
|
2013-07-26 21:13:43 +02:00
|
|
|
zmq_msg_init_data (&msg, &bad_req_id, sizeof (uint32_t), NULL, NULL);
|
2018-08-20 11:44:53 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_send (&msg, router, ZMQ_SNDMORE));
|
2013-07-26 21:13:43 +02:00
|
|
|
s_send_seq (router, 0, "DATA", SEQ_END);
|
|
|
|
|
2016-04-02 18:30:35 +02:00
|
|
|
// Send back a good reply: good req id, 0, data
|
2013-07-26 21:13:43 +02:00
|
|
|
zmq_msg_copy (&msg, &peer_id_msg);
|
2018-08-20 11:44:53 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_send (&msg, router, ZMQ_SNDMORE));
|
2013-07-26 21:13:43 +02:00
|
|
|
zmq_msg_copy (&msg, &req_id_msg);
|
2018-08-20 11:44:53 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_send (&msg, router, ZMQ_SNDMORE));
|
2013-07-26 21:13:43 +02:00
|
|
|
s_send_seq (router, 0, "GHI", SEQ_END);
|
|
|
|
|
2016-04-02 18:30:35 +02:00
|
|
|
// Receive reply. If bad reply got through, we wouldn't see
|
2013-07-26 21:13:43 +02:00
|
|
|
// this particular data.
|
|
|
|
s_recv_seq (req, "GHI", SEQ_END);
|
|
|
|
|
2018-08-20 11:44:53 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_close (&msg));
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_close (&peer_id_msg));
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_close (&req_id_msg));
|
2013-07-26 21:13:43 +02:00
|
|
|
|
2018-08-20 11:44:53 +02:00
|
|
|
test_context_socket_close_zero_linger (req);
|
|
|
|
test_context_socket_close_zero_linger (router);
|
|
|
|
}
|
2013-07-26 21:13:43 +02:00
|
|
|
|
2018-08-20 11:44:53 +02:00
|
|
|
int main ()
|
|
|
|
{
|
|
|
|
setup_test_environment ();
|
2013-07-26 21:13:43 +02:00
|
|
|
|
2018-08-20 11:44:53 +02:00
|
|
|
UNITY_BEGIN ();
|
|
|
|
RUN_TEST (test_req_correlate);
|
|
|
|
return UNITY_END ();
|
2013-07-26 21:13:43 +02:00
|
|
|
}
|