X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftdb2%2Ftest%2Frun-tdb1-check.c;h=e939d04036fefeb1461adb3faf73024ac9347565;hb=c4ca9f54301c0367891be6330f59fdd5dcdd51d1;hp=f05608feaadc1929a4804f219b456ce1ae66fc58;hpb=22d0e0dc59fc9d7e0046fec6971ef478c2d604fd;p=ccan diff --git a/ccan/tdb2/test/run-tdb1-check.c b/ccan/tdb2/test/run-tdb1-check.c index f05608fe..e939d040 100644 --- a/ccan/tdb2/test/run-tdb1-check.c +++ b/ccan/tdb2/test/run-tdb1-check.c @@ -2,54 +2,58 @@ #include #include #include -#include "tdb1-logging.h" +#include "logging.h" int main(int argc, char *argv[]) { - struct tdb1_context *tdb; + struct tdb_context *tdb; TDB_DATA key, data; + union tdb_attribute hsize; + + hsize.base.attr = TDB_ATTRIBUTE_TDB1_HASHSIZE; + hsize.base.next = &tap_log_attr; + hsize.tdb1_hashsize.hsize = 1; plan_tests(13); - tdb = tdb1_open_ex("run-check.tdb", 1, TDB_DEFAULT, - O_CREAT|O_TRUNC|O_RDWR, 0600, &taplogctx, NULL); + tdb = tdb_open("run-check.tdb1", TDB_VERSION1, + O_CREAT|O_TRUNC|O_RDWR, 0600, &hsize); ok1(tdb); - ok1(tdb1_check(tdb, NULL, NULL) == 0); + ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS); key.dsize = strlen("hi"); key.dptr = (void *)"hi"; data.dsize = strlen("world"); data.dptr = (void *)"world"; - ok1(tdb1_store(tdb, key, data, TDB_INSERT) == 0); - ok1(tdb1_check(tdb, NULL, NULL) == 0); - tdb1_close(tdb); + ok1(tdb_store(tdb, key, data, TDB_INSERT) == TDB_SUCCESS); + ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS); + tdb_close(tdb); - tdb = tdb1_open_ex("run-check.tdb", 1024, 0, O_RDWR, 0, - &taplogctx, NULL); + tdb = tdb_open("run-check.tdb1", TDB_VERSION1, O_RDWR, 0, &tap_log_attr); ok1(tdb); - ok1(tdb1_check(tdb, NULL, NULL) == 0); - tdb1_close(tdb); + ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS); + tdb_close(tdb); - tdb = tdb1_open_ex("test/tdb1.corrupt", 1024, 0, O_RDWR, 0, - &taplogctx, NULL); + tdb = tdb_open("test/tdb1.corrupt", TDB_VERSION1, O_RDWR, 0, + &tap_log_attr); ok1(tdb); - ok1(tdb1_check(tdb, NULL, NULL) == -1); + ok1(tdb_check(tdb, NULL, NULL) == TDB_ERR_CORRUPT); ok1(tdb_error(tdb) == TDB_ERR_CORRUPT); - tdb1_close(tdb); + tdb_close(tdb); /* Big and little endian should work! */ - tdb = tdb1_open_ex("test/old-nohash-le.tdb1", 1024, 0, O_RDWR, 0, - &taplogctx, NULL); + tdb = tdb_open("test/old-nohash-le.tdb1", TDB_VERSION1, O_RDWR, 0, + &tap_log_attr); ok1(tdb); - ok1(tdb1_check(tdb, NULL, NULL) == 0); - tdb1_close(tdb); + ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS); + tdb_close(tdb); - tdb = tdb1_open_ex("test/old-nohash-be.tdb1", 1024, 0, O_RDWR, 0, - &taplogctx, NULL); + tdb = tdb_open("test/old-nohash-be.tdb1", TDB_VERSION1, O_RDWR, 0, + &tap_log_attr); ok1(tdb); - ok1(tdb1_check(tdb, NULL, NULL) == 0); - tdb1_close(tdb); + ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS); + tdb_close(tdb); return exit_status(); }