X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Funit%2Fcore%2Fstore_test.c;h=defa6fcfc45d9aaeb021e3ddffdfe9cadd2dc147;hb=6fbccd38ba921b0f08b4a38ef3568bd9ca12fcd5;hp=6715a5b0868a49714b3a9e3664ff586e6455166c;hpb=0a17f3d9f23b988420acbf5669bda4f2a0936c6b;p=sysdb.git diff --git a/t/unit/core/store_test.c b/t/unit/core/store_test.c index 6715a5b..defa6fc 100644 --- a/t/unit/core/store_test.c +++ b/t/unit/core/store_test.c @@ -38,18 +38,33 @@ populate(void) sdb_data_t datum; sdb_store_host("h1", 1); - sdb_store_host("h2", 1); + sdb_store_host("h2", 3); datum.type = SDB_TYPE_STRING; datum.data.string = "v1"; sdb_store_attribute("h1", "k1", &datum, 1); datum.data.string = "v2"; - sdb_store_attribute("h1", "k2", &datum, 1); + sdb_store_attribute("h1", "k2", &datum, 2); datum.data.string = "v3"; - sdb_store_attribute("h1", "k3", &datum, 1); + sdb_store_attribute("h1", "k3", &datum, 2); + + /* make sure that older updates don't overwrite existing values */ + datum.data.string = "fail"; + sdb_store_attribute("h1", "k2", &datum, 1); + sdb_store_attribute("h1", "k3", &datum, 2); sdb_store_service("h2", "s1", 1); - sdb_store_service("h2", "s2", 1); + sdb_store_service("h2", "s2", 2); + + datum.type = SDB_TYPE_INTEGER; + datum.data.integer = 123; + sdb_store_service_attr("h2", "s2", "k1", &datum, 2); + datum.data.integer = 4711; + sdb_store_service_attr("h2", "s2", "k2", &datum, 1); + + /* don't overwrite k1 */ + datum.data.integer = 666; + sdb_store_service_attr("h2", "s2", "k1", &datum, 2); } /* populate */ START_TEST(test_store_host) @@ -321,10 +336,16 @@ START_TEST(test_store_tojson) size_t i; struct { + struct { + sdb_store_matcher_t *(*m)(sdb_store_cond_t *); + int field; + sdb_data_t value; + } filter; int flags; const char *expected; } golden_data[] = { - { 0, "{\"hosts\":[" + { { NULL, 0, SDB_DATA_INIT }, 0, + "{\"hosts\":[" "{\"name\": \"h1\", \"last_update\": \"1970-01-01 00:00:00 +0000\", " "\"update_interval\": \"0s\", \"backends\": [], " "\"attributes\": [" @@ -345,13 +366,22 @@ START_TEST(test_store_tojson) "\"services\": [" "{\"name\": \"s1\", " "\"last_update\": \"1970-01-01 00:00:00 +0000\", " - "\"update_interval\": \"0s\", \"backends\": []}," + "\"update_interval\": \"0s\", \"backends\": [], " + "\"attributes\": []}," "{\"name\": \"s2\", " "\"last_update\": \"1970-01-01 00:00:00 +0000\", " - "\"update_interval\": \"0s\", \"backends\": []}" + "\"update_interval\": \"0s\", \"backends\": [], " + "\"attributes\": [" + "{\"name\": \"k1\", \"value\": 123, " + "\"last_update\": \"1970-01-01 00:00:00 +0000\", " + "\"update_interval\": \"0s\", \"backends\": []}," + "{\"name\": \"k2\", \"value\": 4711, " + "\"last_update\": \"1970-01-01 00:00:00 +0000\", " + "\"update_interval\": \"0s\", \"backends\": []}" + "]}" "]}" "]}" }, - { SDB_SKIP_SERVICES, + { { NULL, 0, SDB_DATA_INIT }, SDB_SKIP_SERVICES, "{\"hosts\":[" "{\"name\": \"h1\", \"last_update\": \"1970-01-01 00:00:00 +0000\", " "\"update_interval\": \"0s\", \"backends\": [], " @@ -370,7 +400,7 @@ START_TEST(test_store_tojson) "\"update_interval\": \"0s\", \"backends\": [], " "\"attributes\": []}" "]}" }, - { SDB_SKIP_ATTRIBUTES, + { { NULL, 0, SDB_DATA_INIT }, SDB_SKIP_ATTRIBUTES, "{\"hosts\":[" "{\"name\": \"h1\", \"last_update\": \"1970-01-01 00:00:00 +0000\", " "\"update_interval\": \"0s\", \"backends\": [], " @@ -386,13 +416,50 @@ START_TEST(test_store_tojson) "\"update_interval\": \"0s\", \"backends\": []}" "]}" "]}" }, - { SDB_SKIP_SERVICES | SDB_SKIP_ATTRIBUTES, + { { NULL, 0, SDB_DATA_INIT }, SDB_SKIP_SERVICES | SDB_SKIP_ATTRIBUTES, "{\"hosts\":[" "{\"name\": \"h1\", \"last_update\": \"1970-01-01 00:00:00 +0000\", " "\"update_interval\": \"0s\", \"backends\": []}," "{\"name\": \"h2\", \"last_update\": \"1970-01-01 00:00:00 +0000\", " "\"update_interval\": \"0s\", \"backends\": []}" "]}" }, + { { sdb_store_gt_matcher, SDB_FIELD_LAST_UPDATE, + { SDB_TYPE_DATETIME, { .datetime = 1 } } }, 0, + "{\"hosts\":[" + "{\"name\": \"h2\", \"last_update\": \"1970-01-01 00:00:00 +0000\", " + "\"update_interval\": \"0s\", \"backends\": [], " + "\"attributes\": [], " + "\"services\": [" + "{\"name\": \"s2\", " + "\"last_update\": \"1970-01-01 00:00:00 +0000\", " + "\"update_interval\": \"0s\", \"backends\": [], " + "\"attributes\": [" + "{\"name\": \"k1\", \"value\": 123, " + "\"last_update\": \"1970-01-01 00:00:00 +0000\", " + "\"update_interval\": \"0s\", \"backends\": []}," + "]}" + "]}" + "]}" }, + { { sdb_store_le_matcher, SDB_FIELD_LAST_UPDATE, + { SDB_TYPE_DATETIME, { .datetime = 1 } } }, 0, + "{\"hosts\":[" + "{\"name\": \"h1\", \"last_update\": \"1970-01-01 00:00:00 +0000\", " + "\"update_interval\": \"0s\", \"backends\": [], " + "\"attributes\": [" + "{\"name\": \"k1\", \"value\": \"v1\", " + "\"last_update\": \"1970-01-01 00:00:00 +0000\", " + "\"update_interval\": \"0s\", \"backends\": []}," + "], " + "\"services\": []}" + "]}" }, + { { sdb_store_ge_matcher, SDB_FIELD_LAST_UPDATE, + { SDB_TYPE_DATETIME, { .datetime = 3 } } }, 0, + "{\"hosts\":[" + "{\"name\": \"h2\", \"last_update\": \"1970-01-01 00:00:00 +0000\", " + "\"update_interval\": \"0s\", \"backends\": [], " + "\"attributes\": [], " + "\"services\": []}" + "]}" }, }; buf = sdb_strbuf_create(0); @@ -400,21 +467,103 @@ START_TEST(test_store_tojson) populate(); for (i = 0; i < SDB_STATIC_ARRAY_LEN(golden_data); ++i) { + sdb_store_matcher_t *filter = NULL; int status; sdb_strbuf_clear(buf); - status = sdb_store_tojson(buf, golden_data[i].flags); + if (golden_data[i].filter.m) { + sdb_store_expr_t *expr; + sdb_store_cond_t *c = NULL; + + expr = sdb_store_expr_constvalue(&golden_data[i].filter.value); + fail_unless(expr != NULL, + "INTERNAL ERROR: sdb_store_expr_constvalue() = NULL"); + c = sdb_store_obj_cond(golden_data[i].filter.field, expr); + sdb_object_deref(SDB_OBJ(expr)); + fail_unless(c != NULL, + "INTERNAL ERROR: sdb_store_obj_cond() = NULL"); + filter = golden_data[i].filter.m(c); + sdb_object_deref(SDB_OBJ(c)); + fail_unless(filter != NULL, + "INTERNAL ERROR: sdb_store_*_matcher() = NULL"); + } + + status = sdb_store_tojson(buf, filter, golden_data[i].flags); fail_unless(status == 0, "sdb_store_tojson(%x) = %d; expected: 0", golden_data[i].flags, status); verify_json_output(buf, golden_data[i].expected, golden_data[i].flags); + sdb_object_deref(SDB_OBJ(filter)); } sdb_strbuf_destroy(buf); } END_TEST +START_TEST(test_get_field) +{ + sdb_store_obj_t *host; + sdb_data_t value = SDB_DATA_INIT; + int check; + + sdb_store_host("host", 10); + sdb_store_host("host", 20); + + host = sdb_store_get_host("host"); + fail_unless(host != NULL, + "INTERNAL ERROR: store doesn't have host after adding it"); + + check = sdb_store_get_field(NULL, 0, NULL); + fail_unless(check < 0, + "sdb_store_get_field(NULL, 0, NULL) = %d; expected: <0"); + check = sdb_store_get_field(NULL, SDB_FIELD_LAST_UPDATE, NULL); + fail_unless(check < 0, + "sdb_store_get_field(NULL, SDB_FIELD_LAST_UPDATE, NULL) = %d; " + "expected: <0"); + check = sdb_store_get_field(host, SDB_FIELD_LAST_UPDATE, NULL); + fail_unless(check < 0, + "sdb_store_get_field(, SDB_FIELD_LAST_UPDATE, NULL) = %d; " + "expected: <0"); + check = sdb_store_get_field(NULL, SDB_FIELD_LAST_UPDATE, &value); + fail_unless(check < 0, + "sdb_store_get_field(NULL, SDB_FIELD_LAST_UPDATE, ) = %d; " + "expected: <0"); + + check = sdb_store_get_field(host, SDB_FIELD_LAST_UPDATE, &value); + fail_unless(check == 0, + "sdb_store_get_field(, SDB_FIELD_LAST_UPDATE, ) = " + "%d; expected: 0"); + fail_unless((value.type == SDB_TYPE_DATETIME) + && (value.data.datetime == 20), + "sdb_store_get_field(, SDB_FIELD_LAST_UPDATE, ) " + "returned value {%d, %lu}; expected {%d, 20}", + value.type, value.data.datetime, SDB_TYPE_DATETIME); + + check = sdb_store_get_field(host, SDB_FIELD_AGE, &value); + fail_unless(check == 0, + "sdb_store_get_field(, SDB_FIELD_AGE, ) = " + "%d; expected: 0"); + /* let's assume we're at least in year 1980 ;-) */ + fail_unless((value.type == SDB_TYPE_DATETIME) + && (value.data.datetime > 10L * SDB_INTERVAL_YEAR), + "sdb_store_get_field(, SDB_FIELD_AGE, ) " + "returned value {%d, %lu}; expected {%d, >%lu}", + value.type, value.data.datetime, + SDB_TYPE_DATETIME, 10L * SDB_INTERVAL_YEAR); + + check = sdb_store_get_field(host, SDB_FIELD_INTERVAL, &value); + fail_unless(check == 0, + "sdb_store_get_field(, SDB_FIELD_INTERVAL, ) = " + "%d; expected: 0"); + fail_unless((value.type == SDB_TYPE_DATETIME) + && (value.data.datetime == 10), + "sdb_store_get_field(, SDB_FIELD_INTERVAL, ) " + "returned value {%d, %lu}; expected {%d, 10}", + value.type, value.data.datetime, SDB_TYPE_DATETIME); +} +END_TEST + START_TEST(test_interval) { sdb_store_obj_t *host; @@ -431,7 +580,7 @@ START_TEST(test_interval) fail_unless(host->interval == 10, "sdb_store_host() did not calculate interval correctly: " - "got: %"PRIscTIME"; expected: %"PRIscTIME, host->interval, 10); + "got: %"PRIsdbTIME"; expected: %"PRIsdbTIME, host->interval, 10); /* multiple updates for the same timestamp don't modify the interval */ sdb_store_host("host", 40); @@ -441,8 +590,8 @@ START_TEST(test_interval) fail_unless(host->interval == 10, "sdb_store_host() changed interval when doing multiple updates " - "using the same timestamp; got: %"PRIscTIME"; " - "expected: %"PRIscTIME, host->interval, 10); + "using the same timestamp; got: %"PRIsdbTIME"; " + "expected: %"PRIsdbTIME, host->interval, 10); /* multiple updates using an timestamp don't modify the interval */ sdb_store_host("host", 20); @@ -452,20 +601,20 @@ START_TEST(test_interval) fail_unless(host->interval == 10, "sdb_store_host() changed interval when doing multiple updates " - "using an old timestamp; got: %"PRIscTIME"; expected: %"PRIscTIME, + "using an old timestamp; got: %"PRIsdbTIME"; expected: %"PRIsdbTIME, host->interval, 10); /* new interval: 20 us */ sdb_store_host("host", 60); fail_unless(host->interval == 11, "sdb_store_host() did not calculate interval correctly: " - "got: %"PRIscTIME"; expected: %"PRIscTIME, host->interval, 11); + "got: %"PRIsdbTIME"; expected: %"PRIsdbTIME, host->interval, 11); /* new interval: 40 us */ sdb_store_host("host", 100); fail_unless(host->interval == 13, "sdb_store_host() did not calculate interval correctly: " - "got: %"PRIscTIME"; expected: %"PRIscTIME, host->interval, 11); + "got: %"PRIsdbTIME"; expected: %"PRIsdbTIME, host->interval, 11); sdb_object_deref(SDB_OBJ(host)); } @@ -546,6 +695,7 @@ core_store_suite(void) tcase_add_test(tc, test_store_attr); tcase_add_test(tc, test_store_service); tcase_add_test(tc, test_store_service_attr); + tcase_add_test(tc, test_get_field); tcase_add_test(tc, test_interval); tcase_add_test(tc, test_iterate); tcase_add_unchecked_fixture(tc, NULL, sdb_store_clear);