2023-06-05 01:16:05 +02:00
|
|
|
/* SPDX-License-Identifier: MPL-2.0 */
|
2013-07-02 15:04:31 +02:00
|
|
|
|
|
|
|
#include "testutil.hpp"
|
2018-12-07 13:51:30 +01:00
|
|
|
#include "testutil_unity.hpp"
|
|
|
|
|
2019-03-23 13:04:57 +01:00
|
|
|
#include <stdlib.h>
|
2018-12-07 13:51:30 +01:00
|
|
|
|
2019-03-24 17:51:28 +01:00
|
|
|
SETUP_TEARDOWN_TESTCONTEXT
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2017-05-01 13:11:11 +02:00
|
|
|
char connect_address[MAX_SOCKET_STRING];
|
2013-07-05 17:58:01 +02:00
|
|
|
|
2019-12-08 14:21:43 +01:00
|
|
|
void test_fair_queue_in (const char *bind_address_)
|
2013-07-02 15:04:31 +02:00
|
|
|
{
|
2018-12-07 13:51:30 +01:00
|
|
|
void *rep = test_context_socket (ZMQ_REP);
|
2019-12-08 14:21:43 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (rep, bind_address_));
|
2017-05-01 13:11:11 +02:00
|
|
|
size_t len = MAX_SOCKET_STRING;
|
2018-12-07 13:51:30 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_getsockopt (rep, ZMQ_LAST_ENDPOINT, connect_address, &len));
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2013-07-14 08:32:35 +02:00
|
|
|
const size_t services = 5;
|
|
|
|
void *reqs[services];
|
|
|
|
for (size_t peer = 0; peer < services; ++peer) {
|
2018-12-07 13:51:30 +01:00
|
|
|
reqs[peer] = test_context_socket (ZMQ_REQ);
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2018-12-07 13:51:30 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (reqs[peer], connect_address));
|
2013-07-02 15:04:31 +02:00
|
|
|
}
|
|
|
|
|
2016-02-13 15:25:57 +01:00
|
|
|
msleep (SETTLE_TIME);
|
|
|
|
|
2013-07-14 08:32:35 +02:00
|
|
|
s_send_seq (reqs[0], "A", SEQ_END);
|
2013-07-02 15:04:31 +02:00
|
|
|
s_recv_seq (rep, "A", SEQ_END);
|
|
|
|
s_send_seq (rep, "A", SEQ_END);
|
2013-07-14 08:32:35 +02:00
|
|
|
s_recv_seq (reqs[0], "A", SEQ_END);
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2013-07-14 08:32:35 +02:00
|
|
|
s_send_seq (reqs[0], "A", SEQ_END);
|
2013-07-02 15:04:31 +02:00
|
|
|
s_recv_seq (rep, "A", SEQ_END);
|
|
|
|
s_send_seq (rep, "A", SEQ_END);
|
2013-07-14 08:32:35 +02:00
|
|
|
s_recv_seq (reqs[0], "A", SEQ_END);
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2013-10-02 12:15:31 +02:00
|
|
|
// TODO: following test fails randomly on some boxes
|
|
|
|
#ifdef SOMEONE_FIXES_THIS
|
2013-07-02 15:04:31 +02:00
|
|
|
// send N requests
|
2013-07-14 08:32:35 +02:00
|
|
|
for (size_t peer = 0; peer < services; ++peer) {
|
2013-07-02 15:04:31 +02:00
|
|
|
char *str = strdup ("A");
|
2013-07-14 08:32:35 +02:00
|
|
|
str[0] += peer;
|
|
|
|
s_send_seq (reqs[peer], str, SEQ_END);
|
2013-07-02 15:04:31 +02:00
|
|
|
free (str);
|
|
|
|
}
|
|
|
|
|
|
|
|
// handle N requests
|
2013-07-14 08:32:35 +02:00
|
|
|
for (size_t peer = 0; peer < services; ++peer) {
|
2013-07-02 15:04:31 +02:00
|
|
|
char *str = strdup ("A");
|
2013-07-14 08:32:35 +02:00
|
|
|
str[0] += peer;
|
2013-10-02 12:15:31 +02:00
|
|
|
// Test fails here
|
2013-07-02 15:04:31 +02:00
|
|
|
s_recv_seq (rep, str, SEQ_END);
|
|
|
|
s_send_seq (rep, str, SEQ_END);
|
2013-07-14 08:32:35 +02:00
|
|
|
s_recv_seq (reqs[peer], str, SEQ_END);
|
2013-07-02 15:04:31 +02:00
|
|
|
free (str);
|
|
|
|
}
|
2013-10-02 12:15:31 +02:00
|
|
|
#endif
|
2018-12-07 13:51:30 +01:00
|
|
|
test_context_socket_close_zero_linger (rep);
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2013-07-14 08:32:35 +02:00
|
|
|
for (size_t peer = 0; peer < services; ++peer)
|
2018-12-07 13:51:30 +01:00
|
|
|
test_context_socket_close_zero_linger (reqs[peer]);
|
2013-07-02 15:04:31 +02:00
|
|
|
}
|
|
|
|
|
2019-12-08 14:21:43 +01:00
|
|
|
void test_envelope (const char *bind_address_)
|
2013-07-02 15:04:31 +02:00
|
|
|
{
|
2018-12-07 13:51:30 +01:00
|
|
|
void *rep = test_context_socket (ZMQ_REP);
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2019-12-08 14:21:43 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (rep, bind_address_));
|
2017-05-01 13:11:11 +02:00
|
|
|
size_t len = MAX_SOCKET_STRING;
|
2018-12-07 13:51:30 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_getsockopt (rep, ZMQ_LAST_ENDPOINT, connect_address, &len));
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2018-12-07 13:51:30 +01:00
|
|
|
void *dealer = test_context_socket (ZMQ_DEALER);
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2018-12-07 13:51:30 +01:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (dealer, connect_address));
|
2013-07-02 15:04:31 +02:00
|
|
|
|
|
|
|
// minimal envelope
|
|
|
|
s_send_seq (dealer, 0, "A", SEQ_END);
|
|
|
|
s_recv_seq (rep, "A", SEQ_END);
|
|
|
|
s_send_seq (rep, "A", SEQ_END);
|
|
|
|
s_recv_seq (dealer, 0, "A", SEQ_END);
|
|
|
|
|
|
|
|
// big envelope
|
|
|
|
s_send_seq (dealer, "X", "Y", 0, "A", SEQ_END);
|
|
|
|
s_recv_seq (rep, "A", SEQ_END);
|
|
|
|
s_send_seq (rep, "A", SEQ_END);
|
|
|
|
s_recv_seq (dealer, "X", "Y", 0, "A", SEQ_END);
|
|
|
|
|
2018-12-07 13:51:30 +01:00
|
|
|
test_context_socket_close_zero_linger (rep);
|
|
|
|
test_context_socket_close_zero_linger (dealer);
|
|
|
|
}
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2018-12-07 13:51:30 +01:00
|
|
|
const char bind_inproc[] = "inproc://a";
|
|
|
|
const char bind_tcp[] = "tcp://127.0.0.1:*";
|
|
|
|
|
|
|
|
void test_fair_queue_in_inproc ()
|
|
|
|
{
|
|
|
|
test_fair_queue_in (bind_inproc);
|
2013-07-02 15:04:31 +02:00
|
|
|
}
|
|
|
|
|
2018-12-07 13:51:30 +01:00
|
|
|
void test_fair_queue_in_tcp ()
|
2013-07-02 15:04:31 +02:00
|
|
|
{
|
2018-12-07 13:51:30 +01:00
|
|
|
test_fair_queue_in (bind_tcp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_envelope_inproc ()
|
|
|
|
{
|
|
|
|
test_envelope (bind_inproc);
|
|
|
|
}
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2018-12-07 13:51:30 +01:00
|
|
|
void test_envelope_tcp ()
|
|
|
|
{
|
|
|
|
test_envelope (bind_tcp);
|
|
|
|
}
|
2013-07-05 17:58:01 +02:00
|
|
|
|
2018-12-07 13:51:30 +01:00
|
|
|
int main ()
|
|
|
|
{
|
|
|
|
setup_test_environment ();
|
2013-07-05 17:58:01 +02:00
|
|
|
|
2018-12-07 13:51:30 +01:00
|
|
|
UNITY_BEGIN ();
|
2013-07-05 17:58:01 +02:00
|
|
|
|
2018-12-07 13:51:30 +01:00
|
|
|
// SHALL receive incoming messages from its peers using a fair-queuing
|
|
|
|
// strategy.
|
|
|
|
RUN_TEST (test_fair_queue_in_inproc);
|
|
|
|
RUN_TEST (test_fair_queue_in_tcp);
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2018-12-07 13:51:30 +01:00
|
|
|
// For an incoming message:
|
|
|
|
// SHALL remove and store the address envelope, including the delimiter.
|
|
|
|
// SHALL pass the remaining data frames to its calling application.
|
|
|
|
// SHALL wait for a single reply message from its calling application.
|
|
|
|
// SHALL prepend the address envelope and delimiter.
|
|
|
|
// SHALL deliver this message back to the originating peer.
|
|
|
|
RUN_TEST (test_envelope_inproc);
|
|
|
|
RUN_TEST (test_envelope_tcp);
|
2013-07-02 15:04:31 +02:00
|
|
|
|
2018-12-07 13:51:30 +01:00
|
|
|
return UNITY_END ();
|
2013-07-02 15:04:31 +02:00
|
|
|
}
|