1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/lib/tdb2/test/run-seed.c
Rusty Russell 9d897b0951 lib/tdb2: adapt unit tests to SAMBA environment.
This means changing headers, implementing a simple tap-like wrapper,
and also splitting out the helpers into those which are linked with
the api* tests (which can't use non-public tdb2 functions) and those
linked with the run* tests (which can).
 
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2012-03-07 13:16:16 +11:00

62 lines
1.4 KiB
C

#include "tdb2-source.h"
#include "tap-interface.h"
#include "logging.h"
static int log_count = 0;
/* Normally we get a log when setting random seed. */
static void my_log_fn(struct tdb_context *tdb,
enum tdb_log_level level,
enum TDB_ERROR ecode,
const char *message, void *priv)
{
log_count++;
}
static union tdb_attribute log_attr = {
.log = { .base = { .attr = TDB_ATTRIBUTE_LOG },
.fn = my_log_fn }
};
int main(int argc, char *argv[])
{
unsigned int i;
struct tdb_context *tdb;
union tdb_attribute attr;
int flags[] = { TDB_INTERNAL, TDB_DEFAULT, TDB_NOMMAP,
TDB_INTERNAL|TDB_CONVERT, TDB_CONVERT,
TDB_NOMMAP|TDB_CONVERT };
attr.seed.base.attr = TDB_ATTRIBUTE_SEED;
attr.seed.base.next = &log_attr;
attr.seed.seed = 42;
plan_tests(sizeof(flags) / sizeof(flags[0]) * 4 + 4 * 3);
for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
struct tdb_header hdr;
int fd;
tdb = tdb_open("run-seed.tdb", flags[i],
O_RDWR|O_CREAT|O_TRUNC, 0600, &attr);
ok1(tdb);
if (!tdb)
continue;
ok1(tdb_check(tdb, NULL, NULL) == 0);
ok1(tdb->hash_seed == 42);
ok1(log_count == 0);
tdb_close(tdb);
if (flags[i] & TDB_INTERNAL)
continue;
fd = open("run-seed.tdb", O_RDONLY);
ok1(fd >= 0);
ok1(read(fd, &hdr, sizeof(hdr)) == sizeof(hdr));
if (flags[i] & TDB_CONVERT)
ok1(bswap_64(hdr.hash_seed) == 42);
else
ok1(hdr.hash_seed == 42);
close(fd);
}
return exit_status();
}