test: regression test for n_q_search_threads

At least this exception is caught.
This commit is contained in:
David Bremner 2020-07-22 07:51:24 -03:00
parent 4130b4e514
commit 25fc8662ed

View file

@ -139,4 +139,27 @@ cat <<EOF > EXPECTED
EOF
test_expect_equal_file EXPECTED OUTPUT
test_begin_subtest "search threads 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";
notmuch_threads_t *threads;
query = notmuch_query_create (db, str);
EXPECT0(notmuch_database_close (db));
stat = notmuch_query_search_threads (query, &threads);
printf("%d\n", stat == NOTMUCH_STATUS_XAPIAN_EXCEPTION);
}
EOF
cat <<EOF > EXPECTED
== stdout ==
1
== stderr ==
A Xapian exception occurred performing query: Database has been closed
Query string was: id:1258471718-6781-1-git-send-email-dottedmag@dottedmag.net
EOF
test_expect_equal_file EXPECTED OUTPUT
test_done