run-10-simple-store.c 1.8 KB

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