mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
9298065cef
CPR has features disabled and PCRE is fully disabled until updated to new code.
228 lines
6.9 KiB
C++
228 lines
6.9 KiB
C++
/* SPDX-License-Identifier: MPL-2.0 */
|
|
|
|
#include "testutil.hpp"
|
|
#include "testutil_unity.hpp"
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
SETUP_TEARDOWN_TESTCONTEXT
|
|
|
|
// Read one event off the monitor socket; return value and address
|
|
// by reference, if not null, and event number by value. Returns -1
|
|
// in case of error.
|
|
|
|
static int get_monitor_event (void *monitor_)
|
|
{
|
|
for (int i = 0; i < 2; i++) {
|
|
// First frame in message contains event number and value
|
|
zmq_msg_t msg;
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_init (&msg));
|
|
if (zmq_msg_recv (&msg, monitor_, ZMQ_DONTWAIT) == -1) {
|
|
msleep (SETTLE_TIME);
|
|
continue; // Interrupted, presumably
|
|
}
|
|
TEST_ASSERT_TRUE (zmq_msg_more (&msg));
|
|
|
|
uint8_t *data = static_cast<uint8_t *> (zmq_msg_data (&msg));
|
|
uint16_t event = *reinterpret_cast<uint16_t *> (data);
|
|
|
|
// Second frame in message contains event address
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_init (&msg));
|
|
if (zmq_msg_recv (&msg, monitor_, 0) == -1) {
|
|
return -1; // Interrupted, presumably
|
|
}
|
|
TEST_ASSERT_FALSE (zmq_msg_more (&msg));
|
|
|
|
return event;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
static void recv_with_retry (fd_t fd_, char *buffer_, int bytes_)
|
|
{
|
|
int received = 0;
|
|
while (true) {
|
|
int rc = TEST_ASSERT_SUCCESS_RAW_ERRNO (
|
|
recv (fd_, buffer_ + received, bytes_ - received, 0));
|
|
TEST_ASSERT_GREATER_THAN_INT (0, rc);
|
|
received += rc;
|
|
TEST_ASSERT_LESS_OR_EQUAL_INT (bytes_, received);
|
|
if (received == bytes_)
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void mock_handshake (fd_t fd_, bool sub_command, bool mock_pub)
|
|
{
|
|
char buffer[128];
|
|
memset (buffer, 0, sizeof (buffer));
|
|
memcpy (buffer, zmtp_greeting_null, sizeof (zmtp_greeting_null));
|
|
|
|
// Mock ZMTP 3.1 which uses commands
|
|
if (sub_command) {
|
|
buffer[11] = 1;
|
|
}
|
|
int rc = TEST_ASSERT_SUCCESS_RAW_ERRNO (send (fd_, buffer, 64, 0));
|
|
TEST_ASSERT_EQUAL_INT (64, rc);
|
|
|
|
recv_with_retry (fd_, buffer, 64);
|
|
|
|
if (!mock_pub) {
|
|
rc = TEST_ASSERT_SUCCESS_RAW_ERRNO (send (
|
|
fd_, (const char *) zmtp_ready_sub, sizeof (zmtp_ready_sub), 0));
|
|
TEST_ASSERT_EQUAL_INT (sizeof (zmtp_ready_sub), rc);
|
|
} else {
|
|
rc = TEST_ASSERT_SUCCESS_RAW_ERRNO (send (
|
|
fd_, (const char *) zmtp_ready_xpub, sizeof (zmtp_ready_xpub), 0));
|
|
TEST_ASSERT_EQUAL_INT (sizeof (zmtp_ready_xpub), rc);
|
|
}
|
|
|
|
// greeting - XPUB has one extra byte
|
|
memset (buffer, 0, sizeof (buffer));
|
|
recv_with_retry (fd_, buffer,
|
|
mock_pub ? sizeof (zmtp_ready_sub)
|
|
: sizeof (zmtp_ready_xpub));
|
|
}
|
|
|
|
static void prep_server_socket (void **server_out_,
|
|
void **mon_out_,
|
|
char *endpoint_,
|
|
size_t ep_length_,
|
|
int socket_type)
|
|
{
|
|
// We'll be using this socket in raw mode
|
|
void *server = test_context_socket (socket_type);
|
|
|
|
int value = 0;
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
zmq_setsockopt (server, ZMQ_LINGER, &value, sizeof (value)));
|
|
|
|
bind_loopback_ipv4 (server, endpoint_, ep_length_);
|
|
|
|
// Create and connect a socket for collecting monitor events on xpub
|
|
void *server_mon = test_context_socket (ZMQ_PAIR);
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_socket_monitor (
|
|
server, "inproc://monitor-dealer",
|
|
ZMQ_EVENT_CONNECTED | ZMQ_EVENT_DISCONNECTED | ZMQ_EVENT_ACCEPTED));
|
|
|
|
// Connect to the inproc endpoint so we'll get events
|
|
TEST_ASSERT_SUCCESS_ERRNO (
|
|
zmq_connect (server_mon, "inproc://monitor-dealer"));
|
|
|
|
*server_out_ = server;
|
|
*mon_out_ = server_mon;
|
|
}
|
|
|
|
static void test_mock_pub_sub (bool sub_command_, bool mock_pub_)
|
|
{
|
|
int rc;
|
|
char my_endpoint[MAX_SOCKET_STRING];
|
|
|
|
void *server, *server_mon;
|
|
prep_server_socket (&server, &server_mon, my_endpoint, MAX_SOCKET_STRING,
|
|
mock_pub_ ? ZMQ_SUB : ZMQ_XPUB);
|
|
|
|
fd_t s = connect_socket (my_endpoint);
|
|
|
|
// Mock a ZMTP 3 client so we can forcibly try sub commands
|
|
mock_handshake (s, sub_command_, mock_pub_);
|
|
|
|
// By now everything should report as connected
|
|
rc = get_monitor_event (server_mon);
|
|
TEST_ASSERT_EQUAL_INT (ZMQ_EVENT_ACCEPTED, rc);
|
|
|
|
char buffer[32];
|
|
memset (buffer, 0, sizeof (buffer));
|
|
|
|
if (mock_pub_) {
|
|
rc = zmq_setsockopt (server, ZMQ_SUBSCRIBE, "A", 1);
|
|
TEST_ASSERT_EQUAL_INT (0, rc);
|
|
// SUB binds, let its state machine run
|
|
// Because zeromq attach the pipe after the handshake, we need more time here before we can run the state-machine
|
|
msleep (1);
|
|
zmq_recv (server, buffer, 16, ZMQ_DONTWAIT);
|
|
|
|
if (sub_command_) {
|
|
recv_with_retry (s, buffer, 13);
|
|
TEST_ASSERT_EQUAL_INT (0,
|
|
memcmp (buffer, "\4\xb\x9SUBSCRIBEA", 13));
|
|
} else {
|
|
recv_with_retry (s, buffer, 4);
|
|
TEST_ASSERT_EQUAL_INT (0, memcmp (buffer, "\0\2\1A", 4));
|
|
}
|
|
|
|
memcpy (buffer, "\0\4ALOL", 6);
|
|
rc = TEST_ASSERT_SUCCESS_RAW_ERRNO (send (s, buffer, 6, 0));
|
|
TEST_ASSERT_EQUAL_INT (6, rc);
|
|
|
|
memset (buffer, 0, sizeof (buffer));
|
|
rc = zmq_recv (server, buffer, 4, 0);
|
|
TEST_ASSERT_EQUAL_INT (4, rc);
|
|
TEST_ASSERT_EQUAL_INT (0, memcmp (buffer, "ALOL", 4));
|
|
} else {
|
|
if (sub_command_) {
|
|
const uint8_t sub[13] = {4, 11, 9, 'S', 'U', 'B', 'S',
|
|
'C', 'R', 'I', 'B', 'E', 'A'};
|
|
rc = TEST_ASSERT_SUCCESS_RAW_ERRNO (
|
|
send (s, (const char *) sub, 13, 0));
|
|
TEST_ASSERT_EQUAL_INT (13, rc);
|
|
} else {
|
|
const uint8_t sub[4] = {0, 2, 1, 'A'};
|
|
rc = TEST_ASSERT_SUCCESS_RAW_ERRNO (
|
|
send (s, (const char *) sub, 4, 0));
|
|
TEST_ASSERT_EQUAL_INT (4, rc);
|
|
}
|
|
rc = zmq_recv (server, buffer, 2, 0);
|
|
TEST_ASSERT_EQUAL_INT (2, rc);
|
|
TEST_ASSERT_EQUAL_INT (0, memcmp (buffer, "\1A", 2));
|
|
|
|
rc = zmq_send (server, "ALOL", 4, 0);
|
|
TEST_ASSERT_EQUAL_INT (4, rc);
|
|
|
|
memset (buffer, 0, sizeof (buffer));
|
|
recv_with_retry (s, buffer, 6);
|
|
TEST_ASSERT_EQUAL_INT (0, memcmp (buffer, "\0\4ALOL", 6));
|
|
}
|
|
|
|
close (s);
|
|
|
|
test_context_socket_close (server);
|
|
test_context_socket_close (server_mon);
|
|
}
|
|
|
|
void test_mock_sub_command ()
|
|
{
|
|
test_mock_pub_sub (true, false);
|
|
}
|
|
|
|
void test_mock_sub_legacy ()
|
|
{
|
|
test_mock_pub_sub (false, false);
|
|
}
|
|
|
|
void test_mock_pub_command ()
|
|
{
|
|
test_mock_pub_sub (true, true);
|
|
}
|
|
|
|
void test_mock_pub_legacy ()
|
|
{
|
|
test_mock_pub_sub (false, true);
|
|
}
|
|
|
|
int main (void)
|
|
{
|
|
setup_test_environment ();
|
|
|
|
UNITY_BEGIN ();
|
|
|
|
RUN_TEST (test_mock_sub_command);
|
|
RUN_TEST (test_mock_sub_legacy);
|
|
RUN_TEST (test_mock_pub_command);
|
|
RUN_TEST (test_mock_pub_legacy);
|
|
|
|
return UNITY_END ();
|
|
}
|