2023-06-05 01:16:05 +02:00
|
|
|
/* SPDX-License-Identifier: MPL-2.0 */
|
2012-02-02 14:56:51 +01:00
|
|
|
|
2013-08-17 14:43:45 +02:00
|
|
|
#include "testutil.hpp"
|
2012-02-02 14:56:51 +01:00
|
|
|
|
2018-03-14 22:29:02 +01:00
|
|
|
#include "testutil_unity.hpp"
|
2012-02-02 14:56:51 +01:00
|
|
|
|
2018-03-14 22:29:02 +01:00
|
|
|
#include <unity.h>
|
2012-02-02 14:56:51 +01:00
|
|
|
|
2018-03-14 22:29:02 +01:00
|
|
|
void *sock;
|
2015-06-23 08:54:49 +02:00
|
|
|
|
2018-03-14 22:29:02 +01:00
|
|
|
void setUp ()
|
|
|
|
{
|
|
|
|
setup_test_context ();
|
|
|
|
sock = test_context_socket (ZMQ_PUB);
|
|
|
|
}
|
2015-06-23 08:54:49 +02:00
|
|
|
|
2018-03-14 22:29:02 +01:00
|
|
|
void tearDown ()
|
|
|
|
{
|
|
|
|
test_context_socket_close (sock);
|
|
|
|
sock = NULL;
|
|
|
|
teardown_test_context ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_hostname_ipv4 ()
|
|
|
|
{
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sock, "tcp://localhost:1234"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_loopback_ipv6 ()
|
|
|
|
{
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (sock, "tcp://[::1]:1234"));
|
|
|
|
}
|
2012-02-02 14:56:51 +01:00
|
|
|
|
2018-03-14 22:29:02 +01:00
|
|
|
void test_invalid_service_fails ()
|
|
|
|
{
|
|
|
|
int rc = zmq_connect (sock, "tcp://localhost:invalid");
|
|
|
|
TEST_ASSERT_EQUAL_INT (-1, rc);
|
|
|
|
}
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2018-03-14 22:29:02 +01:00
|
|
|
void test_hostname_with_spaces_fails ()
|
|
|
|
{
|
|
|
|
int rc = zmq_connect (sock, "tcp://in val id:1234");
|
|
|
|
TEST_ASSERT_EQUAL_INT (-1, rc);
|
|
|
|
}
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2018-03-14 22:29:02 +01:00
|
|
|
void test_no_hostname_fails ()
|
|
|
|
{
|
|
|
|
int rc = zmq_connect (sock, "tcp://");
|
|
|
|
TEST_ASSERT_EQUAL_INT (-1, rc);
|
|
|
|
}
|
2014-06-24 14:31:28 +02:00
|
|
|
|
2018-03-14 22:29:02 +01:00
|
|
|
void test_x ()
|
|
|
|
{
|
|
|
|
int rc = zmq_connect (sock, "tcp://192.168.0.200:*");
|
|
|
|
TEST_ASSERT_EQUAL_INT (-1, rc);
|
|
|
|
}
|
2013-02-10 08:39:27 +01:00
|
|
|
|
2018-03-14 22:29:02 +01:00
|
|
|
void test_invalid_proto_fails ()
|
|
|
|
{
|
|
|
|
int rc = zmq_connect (sock, "invalid://localhost:1234");
|
|
|
|
TEST_ASSERT_EQUAL_INT (-1, rc);
|
|
|
|
TEST_ASSERT_EQUAL_INT (EPROTONOSUPPORT, errno);
|
|
|
|
}
|
2012-02-02 14:56:51 +01:00
|
|
|
|
2018-03-14 22:29:02 +01:00
|
|
|
int main (void)
|
|
|
|
{
|
|
|
|
setup_test_environment ();
|
2012-02-02 14:56:51 +01:00
|
|
|
|
2018-03-14 22:29:02 +01:00
|
|
|
UNITY_BEGIN ();
|
|
|
|
RUN_TEST (test_hostname_ipv4);
|
|
|
|
RUN_TEST (test_loopback_ipv6);
|
|
|
|
RUN_TEST (test_hostname_with_spaces_fails);
|
|
|
|
RUN_TEST (test_no_hostname_fails);
|
|
|
|
RUN_TEST (test_invalid_service_fails);
|
|
|
|
RUN_TEST (test_invalid_proto_fails);
|
|
|
|
return UNITY_END ();
|
2012-02-02 14:56:51 +01:00
|
|
|
}
|