2023-06-05 00:16:05 +01:00
|
|
|
/* SPDX-License-Identifier: MPL-2.0 */
|
2016-05-13 10:30:11 -03:00
|
|
|
|
|
|
|
#include "testutil.hpp"
|
2018-12-07 07:51:30 -05:00
|
|
|
#include "testutil_unity.hpp"
|
2016-05-13 10:30:11 -03:00
|
|
|
|
2019-03-23 08:04:57 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2018-12-07 07:51:30 -05:00
|
|
|
|
2019-03-24 12:51:28 -04:00
|
|
|
SETUP_TEARDOWN_TESTCONTEXT
|
2018-12-07 07:51:30 -05:00
|
|
|
|
|
|
|
void str_send_to (void *s_, const char *content_, const char *address_)
|
|
|
|
{
|
|
|
|
send_string_expect_success (s_, address_, ZMQ_SNDMORE);
|
|
|
|
send_string_expect_success (s_, content_, 0);
|
2016-05-13 10:30:11 -03:00
|
|
|
}
|
|
|
|
|
2016-05-16 12:03:43 +03:00
|
|
|
void str_recv_from (void *s_, char **ptr_content_, char **ptr_address_)
|
2016-05-13 10:30:11 -03:00
|
|
|
{
|
2016-05-16 12:03:43 +03:00
|
|
|
*ptr_address_ = s_recv (s_);
|
2018-12-07 07:51:30 -05:00
|
|
|
TEST_ASSERT_NOT_NULL (ptr_address_);
|
2016-05-16 12:03:43 +03:00
|
|
|
|
|
|
|
*ptr_content_ = s_recv (s_);
|
2018-12-07 07:51:30 -05:00
|
|
|
TEST_ASSERT_NOT_NULL (ptr_content_);
|
2016-05-13 10:30:11 -03:00
|
|
|
}
|
|
|
|
|
2018-12-07 07:51:30 -05:00
|
|
|
static const char test_question[] = "Is someone there ?";
|
|
|
|
static const char test_answer[] = "Yes, there is !";
|
|
|
|
|
|
|
|
void test_connect_fails ()
|
2016-05-13 10:30:11 -03:00
|
|
|
{
|
2018-12-07 07:51:30 -05:00
|
|
|
void *socket = test_context_socket (ZMQ_DGRAM);
|
2016-05-16 12:03:43 +03:00
|
|
|
|
2018-12-07 07:51:30 -05:00
|
|
|
// Connecting dgram should fail
|
|
|
|
TEST_ASSERT_FAILURE_ERRNO (ENOCOMPATPROTO,
|
|
|
|
zmq_connect (socket, ENDPOINT_4));
|
|
|
|
|
|
|
|
test_context_socket_close (socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_roundtrip ()
|
|
|
|
{
|
2018-02-01 11:46:09 +01:00
|
|
|
char *message_string;
|
|
|
|
char *address;
|
2016-05-13 10:30:11 -03:00
|
|
|
|
2018-12-07 07:51:30 -05:00
|
|
|
void *sender = test_context_socket (ZMQ_DGRAM);
|
|
|
|
void *listener = test_context_socket (ZMQ_DGRAM);
|
2016-05-16 13:34:38 +03:00
|
|
|
|
2018-12-07 07:51:30 -05:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (listener, ENDPOINT_4));
|
2016-05-13 10:30:11 -03:00
|
|
|
|
2018-12-07 07:51:30 -05:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (sender, ENDPOINT_5));
|
2016-05-13 10:30:11 -03:00
|
|
|
|
2018-12-07 07:51:30 -05:00
|
|
|
str_send_to (sender, test_question, strrchr (ENDPOINT_4, '/') + 1);
|
2016-05-13 10:30:11 -03:00
|
|
|
|
2016-05-16 13:34:38 +03:00
|
|
|
str_recv_from (listener, &message_string, &address);
|
2018-12-07 07:51:30 -05:00
|
|
|
TEST_ASSERT_EQUAL_STRING (test_question, message_string);
|
|
|
|
TEST_ASSERT_EQUAL_STRING (strrchr (ENDPOINT_5, '/') + 1, address);
|
2016-05-16 12:03:43 +03:00
|
|
|
free (message_string);
|
2016-05-13 10:30:11 -03:00
|
|
|
|
2018-12-07 07:51:30 -05:00
|
|
|
str_send_to (listener, test_answer, address);
|
2016-05-16 12:03:43 +03:00
|
|
|
free (address);
|
2016-05-13 10:30:11 -03:00
|
|
|
|
2016-05-16 12:03:43 +03:00
|
|
|
str_recv_from (sender, &message_string, &address);
|
2018-12-07 07:51:30 -05:00
|
|
|
TEST_ASSERT_EQUAL_STRING (test_answer, message_string);
|
|
|
|
TEST_ASSERT_EQUAL_STRING (strrchr (ENDPOINT_4, '/') + 1, address);
|
2016-05-16 12:03:43 +03:00
|
|
|
free (message_string);
|
|
|
|
free (address);
|
2016-05-13 10:30:11 -03:00
|
|
|
|
2018-12-07 07:51:30 -05:00
|
|
|
test_context_socket_close (sender);
|
|
|
|
test_context_socket_close (listener);
|
|
|
|
}
|
2016-05-13 10:30:11 -03:00
|
|
|
|
2018-12-07 07:51:30 -05:00
|
|
|
int main (void)
|
|
|
|
{
|
|
|
|
setup_test_environment ();
|
2016-05-13 10:30:11 -03:00
|
|
|
|
2018-12-07 07:51:30 -05:00
|
|
|
UNITY_BEGIN ();
|
|
|
|
RUN_TEST (test_connect_fails);
|
|
|
|
RUN_TEST (test_roundtrip);
|
|
|
|
return UNITY_END ();
|
2016-05-13 10:30:11 -03:00
|
|
|
}
|