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/test_ioctl.c | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 tests/test_ioctl.c (limited to 'tests/test_ioctl.c') 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; +} -- cgit