]> git.ozlabs.org Git - ccan/blob - ccan/ntdb/test/api-missing-entries.c
ntdb: fix up tests.
[ccan] / ccan / ntdb / test / api-missing-entries.c
1 /* Another test revealed that we lost an entry.  This reproduces it. */
2 #include "config.h"
3 #include "../ntdb.h"
4 #include "../private.h"
5 #include <ccan/hash/hash.h>
6 #include "tap-interface.h"
7 #include "logging.h"
8 #include "helpapi-external-agent.h"
9
10 #define NUM_RECORDS 1189
11
12 /* We use the same seed which we saw this failure on. */
13 static uint32_t failhash(const void *key, size_t len, uint32_t seed, void *p)
14 {
15         return hash64_stable((const unsigned char *)key, len,
16                              699537674708983027ULL);
17 }
18
19 int main(int argc, char *argv[])
20 {
21         int i;
22         struct ntdb_context *ntdb;
23         NTDB_DATA key = { (unsigned char *)&i, sizeof(i) };
24         NTDB_DATA data = { (unsigned char *)&i, sizeof(i) };
25         union ntdb_attribute hattr = { .hash = { .base = { NTDB_ATTRIBUTE_HASH },
26                                                 .fn = failhash } };
27
28         hattr.base.next = &tap_log_attr;
29         plan_tests(1 + NUM_RECORDS + 2);
30
31         ntdb = ntdb_open("run-missing-entries.ntdb", NTDB_INTERNAL,
32                          O_RDWR|O_CREAT|O_TRUNC, 0600, &hattr);
33         if (ok1(ntdb)) {
34                 for (i = 0; i < NUM_RECORDS; i++) {
35                         ok1(ntdb_store(ntdb, key, data, NTDB_REPLACE) == 0);
36                 }
37                 ok1(ntdb_check(ntdb, NULL, NULL) == 0);
38                 ntdb_close(ntdb);
39         }
40
41         ok1(tap_log_messages == 0);
42         return exit_status();
43 }