From bfeac80c3ca82acd9fba6fafcf92f6201b1be906 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 12 Dec 2013 21:26:15 +0100 Subject: tests: Rename testsuite to test_ioctl. --- tests/CMakeLists.txt | 2 +- tests/test_ioctl.c | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++ tests/testsuite.c | 99 ---------------------------------------------------- 3 files changed, 100 insertions(+), 100 deletions(-) create mode 100644 tests/test_ioctl.c delete mode 100644 tests/testsuite.c (limited to 'tests') diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9de698e..cce34a2 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -17,7 +17,7 @@ target_link_libraries(${TORTURE_LIBRARY} ${CMOCKA_LIBRARY} ${SWRAP_REQUIRED_LIBRARIES}) -set(SWRAP_TESTS testsuite test_echo_udp_sendto_recvfrom) +set(SWRAP_TESTS test_ioctl test_echo_udp_sendto_recvfrom) foreach(_SWRAP_TEST ${SWRAP_TESTS}) add_cmocka_test(${_SWRAP_TEST} ${_SWRAP_TEST}.c ${TORTURE_LIBRARY}) diff --git a/tests/test_ioctl.c b/tests/test_ioctl.c new file mode 100644 index 0000000..0c9bfc6 --- /dev/null +++ b/tests/test_ioctl.c @@ -0,0 +1,99 @@ +#include +#include +#include +#include + +#include +#include +#include + +#include +#include +#include +#include +#include + +static void setup(void **state) +{ + char test_tmpdir[256]; + const char *p; + + (void) state; /* unused */ + + snprintf(test_tmpdir, sizeof(test_tmpdir), "/tmp/test_socket_wrapper_XXXXXX"); + + p = mkdtemp(test_tmpdir); + assert_non_null(p); + + setenv("SOCKET_WRAPPER_DIR", p, 1); + setenv("SOCKET_WRAPPER_DEFAULT_IFACE", "11", 1); +} + +static void teardown(void **state) +{ + char remove_cmd[256] = {0}; + const char *swrap_dir = getenv("SOCKET_WRAPPER_DIR"); + int rc; + + (void) state; /* unused */ + + if (swrap_dir != NULL) { + snprintf(remove_cmd, sizeof(remove_cmd), "rm -rf %s", swrap_dir); + } + + rc = system(remove_cmd); + if (rc < 0) { + fprintf(stderr, "%s failed: %s", remove_cmd, strerror(errno)); + } +} + +static void test_swrap_socket(void **state) +{ + int rc; + + (void) state; /* unused */ + + rc = socket(1337, 1337, 0); + assert_int_equal(rc, -1); + assert_int_equal(errno, EAFNOSUPPORT); + + rc = socket(AF_INET, 1337, 0); + assert_int_equal(rc, -1); + assert_int_equal(errno, EPROTONOSUPPORT); + + rc = socket(AF_INET, SOCK_DGRAM, 10); + assert_int_equal(rc, -1); + assert_int_equal(errno, EPROTONOSUPPORT); +} + +static void test_swrap_ioctl_sock(void **state) +{ + int fd; + int rc; + int grp = -127; + + (void) state; /* unused */ + + fd = socket(AF_INET, SOCK_DGRAM, 0); + assert_int_not_equal(fd, -1); + +#ifdef SIOCGPGRP + rc = ioctl(fd, SIOCGPGRP, &grp); + assert_int_equal(rc, 0); + + assert_int_not_equal(grp, -127); +#endif +} + +int main(void) { + int rc; + + const UnitTest tests[] = { + unit_test_setup_teardown(test_swrap_socket, setup, teardown), + unit_test_setup_teardown(test_swrap_ioctl_sock, setup, teardown), + }; + + rc = run_tests(tests); + + return rc; +} diff --git a/tests/testsuite.c b/tests/testsuite.c deleted file mode 100644 index 0c9bfc6..0000000 --- a/tests/testsuite.c +++ /dev/null @@ -1,99 +0,0 @@ -#include -#include -#include -#include - -#include -#include -#include - -#include -#include -#include -#include -#include - -static void setup(void **state) -{ - char test_tmpdir[256]; - const char *p; - - (void) state; /* unused */ - - snprintf(test_tmpdir, sizeof(test_tmpdir), "/tmp/test_socket_wrapper_XXXXXX"); - - p = mkdtemp(test_tmpdir); - assert_non_null(p); - - setenv("SOCKET_WRAPPER_DIR", p, 1); - setenv("SOCKET_WRAPPER_DEFAULT_IFACE", "11", 1); -} - -static void teardown(void **state) -{ - char remove_cmd[256] = {0}; - const char *swrap_dir = getenv("SOCKET_WRAPPER_DIR"); - int rc; - - (void) state; /* unused */ - - if (swrap_dir != NULL) { - snprintf(remove_cmd, sizeof(remove_cmd), "rm -rf %s", swrap_dir); - } - - rc = system(remove_cmd); - if (rc < 0) { - fprintf(stderr, "%s failed: %s", remove_cmd, strerror(errno)); - } -} - -static void test_swrap_socket(void **state) -{ - int rc; - - (void) state; /* unused */ - - rc = socket(1337, 1337, 0); - assert_int_equal(rc, -1); - assert_int_equal(errno, EAFNOSUPPORT); - - rc = socket(AF_INET, 1337, 0); - assert_int_equal(rc, -1); - assert_int_equal(errno, EPROTONOSUPPORT); - - rc = socket(AF_INET, SOCK_DGRAM, 10); - assert_int_equal(rc, -1); - assert_int_equal(errno, EPROTONOSUPPORT); -} - -static void test_swrap_ioctl_sock(void **state) -{ - int fd; - int rc; - int grp = -127; - - (void) state; /* unused */ - - fd = socket(AF_INET, SOCK_DGRAM, 0); - assert_int_not_equal(fd, -1); - -#ifdef SIOCGPGRP - rc = ioctl(fd, SIOCGPGRP, &grp); - assert_int_equal(rc, 0); - - assert_int_not_equal(grp, -127); -#endif -} - -int main(void) { - int rc; - - const UnitTest tests[] = { - unit_test_setup_teardown(test_swrap_socket, setup, teardown), - unit_test_setup_teardown(test_swrap_ioctl_sock, setup, teardown), - }; - - rc = run_tests(tests); - - return rc; -} -- cgit