From: David Bremner Date: Wed, 22 Jul 2020 10:51:23 +0000 (-0300) Subject: test: add regression test for n_q_add_tag_exclude X-Git-Tag: 0.31_rc0~78 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=4130b4e514e9ad16b420db2736f9cbb79d829fa9;hp=d5c84c8289ff57e5ea5745f126f9c0377cb8f413 test: add regression test for n_q_add_tag_exclude This relies on the change to not tear down the auxilary Xapian objects, in particular the query parser, when the database is closed. --- diff --git a/test/T564-lib-query.sh b/test/T564-lib-query.sh index 14e47cfb..a2f5d731 100755 --- a/test/T564-lib-query.sh +++ b/test/T564-lib-query.sh @@ -120,4 +120,23 @@ cat < EXPECTED EOF test_expect_equal_file EXPECTED OUTPUT +test_begin_subtest "add tag_exclude on closed db" +cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + notmuch_query_t *query; + const char *str = "id:1258471718-6781-1-git-send-email-dottedmag@dottedmag.net"; + + query = notmuch_query_create (db, str); + EXPECT0(notmuch_database_close (db)); + stat = notmuch_query_add_tag_exclude (query, "spam"); + printf("%d\n", stat == NOTMUCH_STATUS_SUCCESS); + } +EOF +cat < EXPECTED +== stdout == +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + test_done