]> git.ozlabs.org Git - ccan/blob - ccan/tdb2/test/run-10-simple-store.c
tdb2: test: import tdb1's tests.
[ccan] / ccan / tdb2 / test / run-10-simple-store.c
1 #include <ccan/failtest/failtest_override.h>
2 #include "tdb2-source.h"
3 #include <ccan/tap/tap.h>
4 #include <ccan/failtest/failtest.h>
5 #include "logging.h"
6 #include "failtest_helper.h"
7
8 static bool failtest_suppress = false;
9
10 /* Don't need to test everything here, just want expand testing. */
11 static enum failtest_result
12 suppress_failure(struct failtest_call *history, unsigned num)
13 {
14         if (failtest_suppress)
15                 return FAIL_DONT_FAIL;
16         return block_repeat_failures(history, num);
17 }
18
19 int main(int argc, char *argv[])
20 {
21         unsigned int i;
22         struct tdb_context *tdb;
23         int flags[] = { TDB_INTERNAL, TDB_DEFAULT, TDB_NOMMAP,
24                         TDB_INTERNAL|TDB_CONVERT, TDB_CONVERT, 
25                         TDB_NOMMAP|TDB_CONVERT };
26         struct tdb_data key = tdb_mkdata("key", 3);
27         struct tdb_data data = tdb_mkdata("data", 4);
28
29         failtest_init(argc, argv);
30         failtest_hook = suppress_failure;
31         failtest_exit_check = exit_check_log;
32
33         failtest_suppress = true;
34         plan_tests(sizeof(flags) / sizeof(flags[0]) * 7 + 1);
35         for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
36                 tdb = tdb_open("run-10-simple-store.tdb", flags[i],
37                                O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr);
38                 if (!ok1(tdb))
39                         break;
40                 /* Modify should fail. */
41                 failtest_suppress = false;
42                 if (!ok1(tdb_store(tdb, key, data, TDB_MODIFY)
43                          == TDB_ERR_NOEXIST))
44                         goto fail;
45                 failtest_suppress = true;
46                 ok1(tdb_check(tdb, NULL, NULL) == 0);
47                 /* Insert should succeed. */
48                 failtest_suppress = false;
49                 if (!ok1(tdb_store(tdb, key, data, TDB_INSERT) == 0))
50                         goto fail;
51                 failtest_suppress = true;
52                 ok1(tdb_check(tdb, NULL, NULL) == 0);
53                 /* Second insert should fail. */
54                 failtest_suppress = false;
55                 if (!ok1(tdb_store(tdb, key, data, TDB_INSERT)
56                          == TDB_ERR_EXISTS))
57                         goto fail;
58                 failtest_suppress = true;
59                 ok1(tdb_check(tdb, NULL, NULL) == 0);
60                 tdb_close(tdb);
61         }
62         ok1(tap_log_messages == 0);
63         failtest_exit(exit_status());
64
65 fail:
66         failtest_suppress = true;
67         tdb_close(tdb);
68         failtest_exit(exit_status());
69 }