run-expand-in-transaction.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #include "ntdb-source.h"
  2. #include "tap-interface.h"
  3. #include "logging.h"
  4. #include "helprun-external-agent.h"
  5. int main(int argc, char *argv[])
  6. {
  7. unsigned int i;
  8. struct ntdb_context *ntdb;
  9. int flags[] = { NTDB_DEFAULT, NTDB_NOMMAP,
  10. NTDB_CONVERT, NTDB_NOMMAP|NTDB_CONVERT };
  11. NTDB_DATA key = ntdb_mkdata("key", 3);
  12. NTDB_DATA data = ntdb_mkdata("data", 4);
  13. plan_tests(sizeof(flags) / sizeof(flags[0]) * 9 + 1);
  14. for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
  15. size_t size;
  16. NTDB_DATA k, d;
  17. ntdb = ntdb_open("run-expand-in-transaction.ntdb",
  18. flags[i]|MAYBE_NOSYNC,
  19. O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr);
  20. ok1(ntdb);
  21. if (!ntdb)
  22. continue;
  23. size = ntdb->file->map_size;
  24. /* Add a fake record to chew up the existing free space. */
  25. k = ntdb_mkdata("fake", 4);
  26. d.dsize = ntdb->file->map_size
  27. - NEW_DATABASE_HDR_SIZE(ntdb->hash_bits) - 8;
  28. d.dptr = malloc(d.dsize);
  29. memset(d.dptr, 0, d.dsize);
  30. ok1(ntdb_store(ntdb, k, d, NTDB_INSERT) == 0);
  31. ok1(ntdb->file->map_size == size);
  32. free(d.dptr);
  33. ok1(ntdb_transaction_start(ntdb) == 0);
  34. ok1(ntdb_store(ntdb, key, data, NTDB_INSERT) == 0);
  35. ok1(ntdb->file->map_size > size);
  36. ok1(ntdb_transaction_commit(ntdb) == 0);
  37. ok1(ntdb->file->map_size > size);
  38. ok1(ntdb_check(ntdb, NULL, NULL) == 0);
  39. ntdb_close(ntdb);
  40. }
  41. ok1(tap_log_messages == 0);
  42. return exit_status();
  43. }