]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb/test/run-nested-transactions.c
tdb: delete from CCAN.
[ccan] / ccan / tdb / test / run-nested-transactions.c
diff --git a/ccan/tdb/test/run-nested-transactions.c b/ccan/tdb/test/run-nested-transactions.c
deleted file mode 100644 (file)
index d13977c..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-#define _XOPEN_SOURCE 500
-#include <ccan/tdb/tdb.h>
-#include <ccan/tdb/io.c>
-#include <ccan/tdb/tdb.c>
-#include <ccan/tdb/lock.c>
-#include <ccan/tdb/freelist.c>
-#include <ccan/tdb/traverse.c>
-#include <ccan/tdb/transaction.c>
-#include <ccan/tdb/error.c>
-#include <ccan/tdb/open.c>
-#include <ccan/tdb/check.c>
-#include <ccan/tdb/hash.c>
-#include <ccan/tap/tap.h>
-#include <stdlib.h>
-#include <stdbool.h>
-#include <err.h>
-#include "logging.h"
-
-int main(int argc, char *argv[])
-{
-       struct tdb_context *tdb;
-       TDB_DATA key, data;
-
-       plan_tests(27);
-       key.dsize = strlen("hi");
-       key.dptr = (void *)"hi";
-
-       tdb = tdb_open_ex("run-nested-transactions.tdb",
-                         1024, TDB_CLEAR_IF_FIRST,
-                         O_CREAT|O_TRUNC|O_RDWR, 0600, &taplogctx, NULL);
-       ok1(tdb);
-
-       /* No nesting by default. */
-       ok1(tdb_transaction_start(tdb) == 0);
-       data.dptr = (void *)"world";
-       data.dsize = strlen("world");
-       ok1(tdb_store(tdb, key, data, TDB_INSERT) == 0);
-       data = tdb_fetch(tdb, key);
-       ok1(data.dsize == strlen("world"));
-       ok1(memcmp(data.dptr, "world", strlen("world")) == 0);
-       free(data.dptr);
-       ok1(tdb_transaction_start(tdb) != 0);
-       ok1(tdb_error(tdb) == TDB_ERR_NESTING);
-
-       data = tdb_fetch(tdb, key);
-       ok1(data.dsize == strlen("world"));
-       ok1(memcmp(data.dptr, "world", strlen("world")) == 0);
-       free(data.dptr);
-       ok1(tdb_transaction_commit(tdb) == 0);
-       data = tdb_fetch(tdb, key);
-       ok1(data.dsize == strlen("world"));
-       ok1(memcmp(data.dptr, "world", strlen("world")) == 0);
-       free(data.dptr);
-       tdb_close(tdb);
-
-       tdb = tdb_open_ex("run-nested-transactions.tdb",
-                         1024, TDB_ALLOW_NESTING, O_RDWR, 0, &taplogctx, NULL);
-       ok1(tdb);
-
-       ok1(tdb_transaction_start(tdb) == 0);
-       ok1(tdb_transaction_start(tdb) == 0);
-       ok1(tdb_delete(tdb, key) == 0);
-       ok1(tdb_transaction_commit(tdb) == 0);
-       ok1(!tdb_exists(tdb, key));
-       ok1(tdb_transaction_cancel(tdb) == 0);
-       /* Surprise! Kills inner "committed" transaction. */
-       ok1(tdb_exists(tdb, key));
-
-       ok1(tdb_transaction_start(tdb) == 0);
-       ok1(tdb_transaction_start(tdb) == 0);
-       ok1(tdb_delete(tdb, key) == 0);
-       ok1(tdb_transaction_commit(tdb) == 0);
-       ok1(!tdb_exists(tdb, key));
-       ok1(tdb_transaction_commit(tdb) == 0);
-       ok1(!tdb_exists(tdb, key));
-       tdb_close(tdb);
-
-       return exit_status();
-}