lib: add regresion test for n_d_get_all_tags

Existing error handling seems adequate, if not ideal.
This commit is contained in:
David Bremner 2020-07-19 07:57:39 -03:00
parent 64aa896151
commit dfab190a40

View file

@ -321,4 +321,22 @@ A Xapian exception occurred finding/creating a directory: Database has been clos
EOF
test_expect_equal_file EXPECTED OUTPUT
test_begin_subtest "Handle getting tags from closed database"
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
{
notmuch_tags_t *result;
EXPECT0(notmuch_database_close (db));
result = notmuch_database_get_all_tags (db);
printf("%d\n", result == NULL);
stat = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
}
EOF
cat <<EOF > EXPECTED
== stdout ==
1
== stderr ==
A Xapian exception occurred getting tags: Database has been closed.
EOF
test_expect_equal_file EXPECTED OUTPUT
test_done