Commit d318c95b authored by Simon Giesecke's avatar Simon Giesecke

Problem: different aspects mixed in one test case

Solution: split up test case
parent dbcd42c5
...@@ -42,31 +42,52 @@ void tearDown () ...@@ -42,31 +42,52 @@ void tearDown ()
teardown_test_context (); teardown_test_context ();
} }
/** \todo this should be split up into separate test cases */ void create_inproc_client_server_pair (void **server, void **client)
void test_x ()
{ {
void *server = test_context_socket (ZMQ_SERVER); *server = test_context_socket (ZMQ_SERVER);
void *client = test_context_socket (ZMQ_CLIENT); *client = test_context_socket (ZMQ_CLIENT);
TEST_ASSERT_SUCCESS_ERRNO ( TEST_ASSERT_SUCCESS_ERRNO (
zmq_bind (server, "inproc://test-client-server")); zmq_bind (*server, "inproc://test-client-server"));
TEST_ASSERT_SUCCESS_ERRNO ( TEST_ASSERT_SUCCESS_ERRNO (
zmq_connect (client, "inproc://test-client-server")); zmq_connect (*client, "inproc://test-client-server"));
}
{ void send_sndmore_expect_failure (void *socket)
zmq_msg_t msg; {
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_init_size (&msg, 1)); int rc = zmq_send (socket, "X", 1, ZMQ_SNDMORE);
TEST_ASSERT_EQUAL_INT (-1, rc);
TEST_ASSERT_EQUAL_INT (EINVAL, errno);
}
char *data = (char *) zmq_msg_data (&msg); void test_client_sndmore_fails ()
data[0] = 1; {
void *server, *client;
create_inproc_client_server_pair (&server, &client);
int rc = zmq_msg_send (&msg, client, ZMQ_SNDMORE); send_sndmore_expect_failure (client);
TEST_ASSERT_EQUAL_INT (-1, rc);
TEST_ASSERT_EQUAL_INT (EINVAL, errno);
rc = TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_send (&msg, client, 0)); test_context_socket_close (server);
TEST_ASSERT_EQUAL_INT (1, rc); test_context_socket_close (client);
} }
void test_server_sndmore_fails ()
{
void *server, *client;
create_inproc_client_server_pair (&server, &client);
send_sndmore_expect_failure (server);
test_context_socket_close (server);
test_context_socket_close (client);
}
void test_routing_id ()
{
void *server, *client;
create_inproc_client_server_pair (&server, &client);
send_string_expect_success (client, "X", 0);
uint32_t routing_id; uint32_t routing_id;
{ {
...@@ -91,11 +112,7 @@ void test_x () ...@@ -91,11 +112,7 @@ void test_x ()
TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_set_routing_id (&msg, routing_id)); TEST_ASSERT_SUCCESS_ERRNO (zmq_msg_set_routing_id (&msg, routing_id));
int rc = zmq_msg_send (&msg, server, ZMQ_SNDMORE); int rc = zmq_msg_send (&msg, server, 0);
TEST_ASSERT_EQUAL_INT (-1, rc);
TEST_ASSERT_EQUAL_INT (EINVAL, errno);
rc = zmq_msg_send (&msg, server, 0);
TEST_ASSERT_EQUAL_INT (1, rc); TEST_ASSERT_EQUAL_INT (1, rc);
} }
...@@ -121,6 +138,8 @@ int main (void) ...@@ -121,6 +138,8 @@ int main (void)
setup_test_environment (); setup_test_environment ();
UNITY_BEGIN (); UNITY_BEGIN ();
RUN_TEST (test_x); RUN_TEST (test_client_sndmore_fails);
RUN_TEST (test_server_sndmore_fails);
RUN_TEST (test_routing_id);
return UNITY_END (); return UNITY_END ();
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment