summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d585f83)
raw | patch | inline | side by side (parent: d585f83)
author | Sebastian Harl <sh@tokkee.org> | |
Wed, 4 Sep 2013 08:59:49 +0000 (10:59 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Wed, 4 Sep 2013 08:59:49 +0000 (10:59 +0200) |
This might make it possible to do coverage tests.
t/utils/dbi_test.c | patch | blob | history | |
t/utils/llist_test.c | patch | blob | history |
diff --git a/t/utils/dbi_test.c b/t/utils/dbi_test.c
index 2ad1cc29b1d7bb541d4702da265565adc64ac5e7..c355e6442cf9b29eb3050d766751a683f191d3e6 100644 (file)
--- a/t/utils/dbi_test.c
+++ b/t/utils/dbi_test.c
client = NULL;
} /* teardown */
-static unsigned long long test_query_callback_called = 0;
+static unsigned long long query_callback_called = 0;
static int
-test_query_callback(sdb_dbi_client_t *c,
+query_callback(sdb_dbi_client_t *c,
size_t n, sdb_data_t *data, sdb_object_t *user_data)
{
size_t i;
- ++test_query_callback_called;
+ ++query_callback_called;
fail_unless(c == client,
"query callback received unexpected client = %p; "
}
}
return 0;
-} /* test_query_callback */
+} /* query_callback */
/*
* tests
*/
-START_TEST(test_client_connect)
+START_TEST(test_sdb_dbi_client_connect)
{
int check = sdb_dbi_client_connect(client);
fail_unless(check == 0,
}
END_TEST
-START_TEST(test_client_check_conn)
+START_TEST(test_sdb_dbi_client_check_conn)
{
int check = sdb_dbi_client_check_conn(client);
fail_unless(check == 0,
}
END_TEST
-START_TEST(test_exec_query)
+START_TEST(test_sdb_dbi_exec_query)
{
size_t i;
- int check = sdb_dbi_exec_query(client, "mockquery0", test_query_callback,
+ int check = sdb_dbi_exec_query(client, "mockquery0", query_callback,
/* user_data = */ TEST_MAGIC, /* n = */ 0);
/* not connected yet */
fail_unless(check < 0,
unsigned long long expected_callback_calls = 0;
dbi_conn_query_called = 0;
- test_query_callback_called = 0;
+ query_callback_called = 0;
dbi_result_free_called = 0;
/* sdb_dbi_exec_query will only use as many type arguments are needed,
* so we can safely pass in the maximum number of arguments required
* on each call */
- check = sdb_dbi_exec_query(client, q->name, test_query_callback,
+ check = sdb_dbi_exec_query(client, q->name, query_callback,
/* user_data = */ TEST_MAGIC, /* n = */ (int)q->nfields,
SDB_TYPE_INTEGER, SDB_TYPE_DECIMAL, SDB_TYPE_STRING,
SDB_TYPE_DATETIME, SDB_TYPE_BINARY);
if (q->nfields)
expected_callback_calls = q->nrows;
- fail_unless(test_query_callback_called == expected_callback_calls,
+ fail_unless(query_callback_called == expected_callback_calls,
"sdb_dbi_exec_query() did not call the registered callback "
"for each result row; got %i call%s; expected: 0",
- test_query_callback_called,
- (test_query_callback_called == 1) ? "" : "s");
+ query_callback_called,
+ (query_callback_called == 1) ? "" : "s");
fail_unless(dbi_result_free_called == 1,
"sdb_dbi_exec_query() did not free the query result object");
tc = tcase_create("core");
tcase_add_checked_fixture(tc, setup, teardown);
- tcase_add_test(tc, test_client_connect);
- tcase_add_test(tc, test_client_check_conn);
- tcase_add_test(tc, test_exec_query);
+ tcase_add_test(tc, test_sdb_dbi_client_connect);
+ tcase_add_test(tc, test_sdb_dbi_client_check_conn);
+ tcase_add_test(tc, test_sdb_dbi_exec_query);
suite_add_tcase(s, tc);
return s;
diff --git a/t/utils/llist_test.c b/t/utils/llist_test.c
index b01dd0eafb1171952b55f14ab4766f1e8c02e872..638d2fbdbeef1affe64e15753a7e6ca08cd7633e 100644 (file)
--- a/t/utils/llist_test.c
+++ b/t/utils/llist_test.c
}
} /* populate */
-START_TEST(test_clone)
+START_TEST(test_sdb_llist_clone)
{
sdb_llist_t *clone;
size_t i;
}
END_TEST
-START_TEST(test_destroy)
+START_TEST(test_sdb_llist_destroy)
{
size_t i;
populate();
}
END_TEST
-START_TEST(test_append)
+START_TEST(test_sdb_llist_append)
{
size_t i;
for (i = 0; i < SDB_STATIC_ARRAY_LEN(golden_data); ++i) {
}
END_TEST
-START_TEST(test_insert)
+START_TEST(test_sdb_llist_insert)
{
size_t i;
for (i = 0; i < SDB_STATIC_ARRAY_LEN(golden_data); ++i) {
}
END_TEST
-START_TEST(test_insert_invalid)
+START_TEST(test_validate_insert)
{
size_t i;
for (i = 0; i < SDB_STATIC_ARRAY_LEN(golden_data); ++i) {
}
END_TEST
-START_TEST(test_search)
+START_TEST(test_sdb_llist_search)
{
size_t i;
populate();
}
END_TEST
-START_TEST(test_shift)
+START_TEST(test_sdb_llist_shift)
{
size_t i;
populate();
}
END_TEST
-START_TEST(test_iter)
+START_TEST(test_sdb_llist_iter)
{
sdb_llist_iter_t *iter;
size_t i;
tc = tcase_create("core");
tcase_add_checked_fixture(tc, setup, teardown);
- tcase_add_test(tc, test_clone);
- tcase_add_test(tc, test_destroy);
- tcase_add_test(tc, test_append);
- tcase_add_test(tc, test_insert);
- tcase_add_test(tc, test_insert_invalid);
- tcase_add_test(tc, test_search);
- tcase_add_test(tc, test_shift);
- tcase_add_test(tc, test_iter);
+ tcase_add_test(tc, test_sdb_llist_clone);
+ tcase_add_test(tc, test_sdb_llist_destroy);
+ tcase_add_test(tc, test_sdb_llist_append);
+ tcase_add_test(tc, test_sdb_llist_insert);
+ tcase_add_test(tc, test_validate_insert);
+ tcase_add_test(tc, test_sdb_llist_search);
+ tcase_add_test(tc, test_sdb_llist_shift);
+ tcase_add_test(tc, test_sdb_llist_iter);
suite_add_tcase(s, tc);
return s;