From: David Bremner Date: Sun, 19 Jul 2020 10:43:36 +0000 (-0300) Subject: lib: add regression test for n_d_find_message_by_filename X-Git-Tag: 0.31_rc0~96 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=64aa8961512b47166954d196fd2ca04b2b22cd42;hp=ce360ce4c99597946949317aa40892536c9ebc05 lib: add regression test for n_d_find_message_by_filename At least this Xapian exception is caught. Make sure it stays that way. --- diff --git a/test/T562-lib-database.sh b/test/T562-lib-database.sh index f7391d3f..745e91b3 100755 --- a/test/T562-lib-database.sh +++ b/test/T562-lib-database.sh @@ -304,4 +304,21 @@ A Xapian exception occurred finding/creating a directory: Database has been clos 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