mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-27 15:41:05 +08:00
Problem: test_connect_resolve not yet using unity
Solution: migrate to unity
This commit is contained in:
parent
6f9459e3fb
commit
9553a1f33e
@ -29,42 +29,76 @@
|
|||||||
|
|
||||||
#include "testutil.hpp"
|
#include "testutil.hpp"
|
||||||
|
|
||||||
|
#include "testutil_unity.hpp"
|
||||||
|
|
||||||
|
#include <unity.h>
|
||||||
|
|
||||||
|
void *sock;
|
||||||
|
|
||||||
|
void setUp ()
|
||||||
|
{
|
||||||
|
setup_test_context ();
|
||||||
|
sock = test_context_socket (ZMQ_PUB);
|
||||||
|
}
|
||||||
|
|
||||||
|
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"));
|
||||||
|
}
|
||||||
|
|
||||||
|
void test_invalid_service_fails ()
|
||||||
|
{
|
||||||
|
int rc = zmq_connect (sock, "tcp://localhost:invalid");
|
||||||
|
TEST_ASSERT_EQUAL_INT (-1, rc);
|
||||||
|
}
|
||||||
|
|
||||||
|
void test_hostname_with_spaces_fails ()
|
||||||
|
{
|
||||||
|
int rc = zmq_connect (sock, "tcp://in val id:1234");
|
||||||
|
TEST_ASSERT_EQUAL_INT (-1, rc);
|
||||||
|
}
|
||||||
|
|
||||||
|
void test_no_hostname_fails ()
|
||||||
|
{
|
||||||
|
int rc = zmq_connect (sock, "tcp://");
|
||||||
|
TEST_ASSERT_EQUAL_INT (-1, rc);
|
||||||
|
}
|
||||||
|
|
||||||
|
void test_x ()
|
||||||
|
{
|
||||||
|
int rc = zmq_connect (sock, "tcp://192.168.0.200:*");
|
||||||
|
TEST_ASSERT_EQUAL_INT (-1, rc);
|
||||||
|
}
|
||||||
|
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
int main (void)
|
int main (void)
|
||||||
{
|
{
|
||||||
setup_test_environment ();
|
setup_test_environment ();
|
||||||
void *ctx = zmq_ctx_new ();
|
|
||||||
assert (ctx);
|
|
||||||
|
|
||||||
void *sock = zmq_socket (ctx, ZMQ_PUB);
|
UNITY_BEGIN ();
|
||||||
assert (sock);
|
RUN_TEST (test_hostname_ipv4);
|
||||||
|
RUN_TEST (test_loopback_ipv6);
|
||||||
int rc = zmq_connect (sock, "tcp://localhost:1234");
|
RUN_TEST (test_hostname_with_spaces_fails);
|
||||||
assert (rc == 0);
|
RUN_TEST (test_no_hostname_fails);
|
||||||
|
RUN_TEST (test_invalid_service_fails);
|
||||||
rc = zmq_connect (sock, "tcp://[::1]:1234");
|
RUN_TEST (test_invalid_proto_fails);
|
||||||
assert (rc == 0);
|
return UNITY_END ();
|
||||||
|
|
||||||
rc = zmq_connect (sock, "tcp://localhost:invalid");
|
|
||||||
assert (rc == -1);
|
|
||||||
|
|
||||||
rc = zmq_connect (sock, "tcp://in val id:1234");
|
|
||||||
assert (rc == -1);
|
|
||||||
|
|
||||||
rc = zmq_connect (sock, "tcp://");
|
|
||||||
assert (rc == -1);
|
|
||||||
|
|
||||||
rc = zmq_connect (sock, "tcp://192.168.0.200:*");
|
|
||||||
assert (rc == -1);
|
|
||||||
|
|
||||||
rc = zmq_connect (sock, "invalid://localhost:1234");
|
|
||||||
assert (rc == -1);
|
|
||||||
assert (errno == EPROTONOSUPPORT);
|
|
||||||
|
|
||||||
rc = zmq_close (sock);
|
|
||||||
assert (rc == 0);
|
|
||||||
|
|
||||||
rc = zmq_ctx_term (ctx);
|
|
||||||
assert (rc == 0);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user