]> git.ozlabs.org Git - ccan/blob - ccan/ntdb/test/run-10-simple-store.c
Fix missing va_end()s
[ccan] / ccan / ntdb / test / run-10-simple-store.c
1 #include <ccan/failtest/failtest_override.h>
2 #include "ntdb-source.h"
3 #include "tap-interface.h"
4 #include <ccan/failtest/failtest.h>
5 #include "logging.h"
6 #include "failtest_helper.h"
7 #include "helprun-external-agent.h"
8
9 int main(int argc, char *argv[])
10 {
11         unsigned int i;
12         struct ntdb_context *ntdb;
13         int flags[] = { NTDB_INTERNAL, NTDB_DEFAULT, NTDB_NOMMAP,
14                         NTDB_INTERNAL|NTDB_CONVERT, NTDB_CONVERT,
15                         NTDB_NOMMAP|NTDB_CONVERT };
16         NTDB_DATA key = ntdb_mkdata("key", 3);
17         NTDB_DATA data = ntdb_mkdata("data", 4);
18
19         failtest_init(argc, argv);
20         failtest_hook = block_repeat_failures;
21         failtest_exit_check = exit_check_log;
22
23         failtest_suppress = true;
24         plan_tests(sizeof(flags) / sizeof(flags[0]) * 7 + 1);
25         for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
26                 ntdb = ntdb_open("run-10-simple-store.ntdb",
27                                  flags[i]|MAYBE_NOSYNC,
28                                  O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr);
29                 if (!ok1(ntdb))
30                         break;
31                 /* Modify should fail. */
32                 failtest_suppress = false;
33                 if (!ok1(ntdb_store(ntdb, key, data, NTDB_MODIFY)
34                          == NTDB_ERR_NOEXIST))
35                         goto fail;
36                 failtest_suppress = true;
37                 ok1(ntdb_check(ntdb, NULL, NULL) == 0);
38                 /* Insert should succeed. */
39                 failtest_suppress = false;
40                 if (!ok1(ntdb_store(ntdb, key, data, NTDB_INSERT) == 0))
41                         goto fail;
42                 failtest_suppress = true;
43                 ok1(ntdb_check(ntdb, NULL, NULL) == 0);
44                 /* Second insert should fail. */
45                 failtest_suppress = false;
46                 if (!ok1(ntdb_store(ntdb, key, data, NTDB_INSERT)
47                          == NTDB_ERR_EXISTS))
48                         goto fail;
49                 failtest_suppress = true;
50                 ok1(ntdb_check(ntdb, NULL, NULL) == 0);
51                 ntdb_close(ntdb);
52         }
53         ok1(tap_log_messages == 0);
54         failtest_exit(exit_status());
55
56 fail:
57         failtest_suppress = true;
58         ntdb_close(ntdb);
59         failtest_exit(exit_status());
60
61         /*
62          * We will never reach this but the compiler complains if we do not
63          * return in this function.
64          */
65         return EFAULT;
66 }