summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 19ab20f)
raw | patch | inline | side by side (parent: 19ab20f)
author | Sebastian Harl <sh@tokkee.org> | |
Sat, 19 Oct 2013 08:52:48 +0000 (10:52 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Sat, 19 Oct 2013 08:52:48 +0000 (10:52 +0200) |
t/Makefile.am | patch | blob | history | |
t/libsysdb_test.c | patch | blob | history | |
t/libsysdb_test.h | patch | blob | history | |
t/utils/channel_test.c | [new file with mode: 0644] | patch | blob |
diff --git a/t/Makefile.am b/t/Makefile.am
index e4cc8036641c6ac221dd2e80318812077f0681b7..1e4419dd7fcf053fae573e60278ce82520397ece 100644 (file)
--- a/t/Makefile.am
+++ b/t/Makefile.am
libsysdb_test_SOURCES = \
libsysdb_test.c libsysdb_test.h \
+ utils/channel_test.c \
utils/dbi_test.c \
utils/llist_test.c \
utils/strbuf_test.c
diff --git a/t/libsysdb_test.c b/t/libsysdb_test.c
index 3241aba495796d1b24261f317d8dbf271e25bcf4..7ce41247c679a8b9a2f636d5e9def467d8c1e311 100644 (file)
--- a/t/libsysdb_test.c
+++ b/t/libsysdb_test.c
size_t i;
suite_creator_t creators[] = {
- { util_llist_suite, NULL },
+ { util_channel_suite, NULL },
{ util_dbi_suite, NULL },
+ { util_llist_suite, NULL },
{ util_strbuf_suite, NULL },
};
diff --git a/t/libsysdb_test.h b/t/libsysdb_test.h
index 9e4be80d0a22b84e2210891cf9cfe517dfdfda40..da57246fe8f7e5fad93db503dea004b26fc5baf0 100644 (file)
--- a/t/libsysdb_test.h
+++ b/t/libsysdb_test.h
* test suites
*/
+/* t/utils/channel_test */
+Suite *
+util_channel_suite(void);
+
/* t/utils/dbi_test */
Suite *
util_dbi_suite(void);
diff --git a/t/utils/channel_test.c b/t/utils/channel_test.c
--- /dev/null
+++ b/t/utils/channel_test.c
@@ -0,0 +1,248 @@
+/*
+ * SysDB - t/utils/channel_test.c
+ * Copyright (C) 2013 Sebastian 'tokkee' Harl <sh@tokkee.org>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+ * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "utils/channel.h"
+#include "libsysdb_test.h"
+
+#include <check.h>
+#include <limits.h>
+
+static struct {
+ int data;
+ int expected_write;
+ int expected_read;
+} golden_data_int[] = {
+ { 5, 0, 0 },
+ { 15, 0, 0 },
+ { -3, 0, 0 },
+ { INT_MAX, 0, 0 },
+ { 27, 0, 0 },
+ { 42, 0, 0 },
+ { 6, 0, 0 },
+ { 2854, 0, 0 },
+ { 10562, 0, 0 },
+ { 0, 0, 0 },
+
+ /* exceeding buffer size */
+ { 20, -1, -1 },
+ { 42, -1, -1 },
+};
+
+static struct {
+ char *data;
+ int expected_write;
+ int expected_read;
+} golden_data_string[] = {
+ { "c", 0, 0 },
+ { "", 0, 0 },
+ { "abc", 0, 0 },
+ { "foobar", 0, 0 },
+ { "qux", 0, 0 },
+ { "a b c", 0, 0 },
+ { "123", 0, 0 },
+ { "xyz", 0, 0 },
+ { "b", 0, 0 },
+ { "a", 0, 0 },
+
+ /* exceeding buffer size */
+ { "err1", -1, -1 },
+ { "err2", -1, -1 },
+};
+
+static sdb_channel_t *chan;
+
+static void
+setup_int(void)
+{
+ chan = sdb_channel_create(10, sizeof(int));
+ fail_unless(chan != NULL,
+ "sdb_channel_create(10, sizeof(int)) = NULL; "
+ "expected list object");
+} /* setup_int */
+
+static void
+setup_string(void)
+{
+ chan = sdb_channel_create(10, sizeof(char *));
+ fail_unless(chan != NULL,
+ "sdb_chan_create(10, sizeof(char *))) = NULL; "
+ "expected channel object");
+} /* setup_string */
+
+static void
+teardown(void)
+{
+ sdb_channel_destroy(chan);
+ chan = NULL;
+} /* teardown */
+
+START_TEST(test_create)
+{
+ chan = sdb_channel_create(0, 0);
+ fail_unless(chan == NULL,
+ "sdb_channel_create(0, 0) = %p; expected: NULL", chan);
+
+ chan = sdb_channel_create(0, 1);
+ fail_unless(chan != NULL,
+ "sdb_channel_create(0, 1) = NULL; expected: channel object");
+ sdb_channel_destroy(chan);
+
+ chan = sdb_channel_create(42, 23);
+ fail_unless(chan != NULL,
+ "sdb_channel_create(32, 23) = NULL; expected: channel object");
+ sdb_channel_destroy(chan);
+}
+END_TEST
+
+START_TEST(test_write_int)
+{
+ size_t i;
+ for (i = 0; i < SDB_STATIC_ARRAY_LEN(golden_data_int); ++i) {
+ int data = golden_data_int[i].data;
+ int expected = golden_data_int[i].expected_write;
+
+ int check = sdb_channel_write(chan, &data);
+ fail_unless(check == expected,
+ "sdb_channel_write(chan, %i) = %i; expected: %i",
+ data, check, expected);
+ }
+}
+END_TEST
+
+START_TEST(test_read_int)
+{
+ size_t i;
+
+ /* populate */
+ for (i = 0; i < SDB_STATIC_ARRAY_LEN(golden_data_int); ++i) {
+ int data = golden_data_int[i].data;
+ int expected = golden_data_int[i].expected_write;
+
+ int check = sdb_channel_write(chan, &data);
+ fail_unless(check == expected,
+ "sdb_channel_write(chan, %i) = %i; expected: %i",
+ data, check, expected);
+ }
+
+ for (i = 0; i < SDB_STATIC_ARRAY_LEN(golden_data_int); ++i) {
+ int data = (int)i;
+ int expected = golden_data_int[i].expected_read;
+
+ int check = sdb_channel_read(chan, &data);
+ fail_unless(check == expected,
+ "sdb_channel_read(chan, %i) = %i; expected: %i",
+ data, check, expected);
+ if (! check) {
+ fail_unless(data == golden_data_int[i].data,
+ "sdb_channel_read() returned data %i; expected: %i",
+ data, golden_data_int[i].data);
+ }
+ }
+}
+END_TEST
+
+START_TEST(test_write_string)
+{
+ size_t i;
+ for (i = 0; i < SDB_STATIC_ARRAY_LEN(golden_data_string); ++i) {
+ char *data = golden_data_string[i].data;
+ int expected = golden_data_string[i].expected_write;
+
+ int check = sdb_channel_write(chan, &data);
+ fail_unless(check == expected,
+ "sdb_channel_write(chan, '%s') = %i; expected: %i",
+ data, check, expected);
+ }
+}
+END_TEST
+
+START_TEST(test_read_string)
+{
+ size_t i;
+
+ /* populate */
+ for (i = 0; i < SDB_STATIC_ARRAY_LEN(golden_data_string); ++i) {
+ char *data = golden_data_string[i].data;
+ int expected = golden_data_string[i].expected_write;
+
+ int check = sdb_channel_write(chan, &data);
+ fail_unless(check == expected,
+ "sdb_channel_write(chan, '%s') = %i; expected: %i",
+ data, check, expected);
+ }
+
+ for (i = 0; i < SDB_STATIC_ARRAY_LEN(golden_data_string); ++i) {
+ char *data = NULL;
+ int expected = golden_data_string[i].expected_read;
+
+ int check = sdb_channel_read(chan, &data);
+ fail_unless(check == expected,
+ "sdb_channel_read(chan, '') = %i; expected: %i",
+ check, expected);
+ if (check) {
+ fail_unless(data == NULL,
+ "sdb_channel_read() returned data '%s'; expected: none",
+ data);
+ }
+ else {
+ fail_unless(data != NULL,
+ "sdb_channel_read() did not return any data");
+ fail_unless(!strcmp(data, golden_data_string[i].data),
+ "sdb_channel_read() returned data '%s'; expected: '%s'",
+ data, golden_data_string[i].data);
+ }
+ }
+}
+END_TEST
+
+Suite *
+util_channel_suite(void)
+{
+ Suite *s = suite_create("utils::channel");
+ TCase *tc;
+
+ tc = tcase_create("core");
+ tcase_add_test(tc, test_create);
+ suite_add_tcase(s, tc);
+
+ tc = tcase_create("integer");
+ tcase_add_checked_fixture(tc, setup_int, teardown);
+ tcase_add_test(tc, test_write_int);
+ tcase_add_test(tc, test_read_int);
+ suite_add_tcase(s, tc);
+
+ tc = tcase_create("string");
+ tcase_add_checked_fixture(tc, setup_string, teardown);
+ tcase_add_test(tc, test_write_string);
+ tcase_add_test(tc, test_read_string);
+ suite_add_tcase(s, tc);
+
+ return s;
+} /* util_llist_suite */
+
+/* vim: set tw=78 sw=4 ts=4 noexpandtab : */
+