X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2FT562-lib-database.sh;h=745e91b31b21e0456dc30ccaf1974d13d468a45a;hb=64aa8961512b47166954d196fd2ca04b2b22cd42;hp=4e5655e814dbb62b6595001c66499b93851ef17f;hpb=9ab3e2e77d2881004cd2fdc1035dad7052ae735c;p=notmuch diff --git a/test/T562-lib-database.sh b/test/T562-lib-database.sh index 4e5655e8..745e91b3 100755 --- a/test/T562-lib-database.sh +++ b/test/T562-lib-database.sh @@ -234,11 +234,10 @@ cat < EXPECTED == stdout == 1 == stderr == -A Xapian exception occurred creating a directory: Database has been closed. +A Xapian exception occurred finding/creating a directory: Database has been closed. EOF test_expect_equal_file EXPECTED OUTPUT -# XXX TODO: test with relative path test_begin_subtest "index file with a closed db" cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR} { @@ -257,4 +256,69 @@ A Xapian exception occurred finding message: Database has been closed. EOF test_expect_equal_file EXPECTED OUTPUT +generate_message '[filename]=relative_path' +test_begin_subtest "index file (relative path)" +cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + notmuch_message_t *msg; + stat = notmuch_database_index_file (db, "relative_path", NULL, &msg); + printf ("%d\n", stat == NOTMUCH_STATUS_SUCCESS); + } +EOF +cat < EXPECTED +== stdout == +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + +test_begin_subtest "index file (absolute path outside mail root)" +cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + notmuch_message_t *msg; + stat = notmuch_database_index_file (db, "/dev/zero", NULL, &msg); + printf ("%d\n", stat == NOTMUCH_STATUS_FILE_ERROR); + } +EOF +cat < EXPECTED +== stdout == +1 +== stderr == +Error opening /dev/zero: path outside mail root +EOF +test_expect_equal_file EXPECTED OUTPUT + +test_begin_subtest "remove message file with a closed db" +cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + EXPECT0(notmuch_database_close (db)); + stat = notmuch_database_remove_message (db, "01:2,"); + printf ("%d\n", stat == NOTMUCH_STATUS_XAPIAN_EXCEPTION); + } +EOF +cat < EXPECTED +== stdout == +1 +== stderr == +A Xapian exception occurred finding/creating a directory: Database has been closed. +EOF +test_expect_equal_file EXPECTED OUTPUT + +test_begin_subtest "find message by filename with a closed db" +cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + notmuch_message_t *msg; + EXPECT0(notmuch_database_close (db)); + stat = notmuch_database_find_message_by_filename (db, "01:2,", &msg); + printf ("%d\n", stat == NOTMUCH_STATUS_XAPIAN_EXCEPTION); + } +EOF +cat < EXPECTED +== stdout == +1 +== stderr == +A Xapian exception occurred finding/creating a directory: Database has been closed. +EOF +test_expect_equal_file EXPECTED OUTPUT + test_done