X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2FT560-lib-error.sh;h=05d41615584b0fc6324ffc623038fda3323b3c49;hb=d284dc00dafb144065bc50242e15e84d4579e3fd;hp=68aadcdbc0137d845ea69c2ddb32505c19e39565;hpb=ef15946defec52182c59d00c23fe6167fbca8855;p=notmuch diff --git a/test/T560-lib-error.sh b/test/T560-lib-error.sh index 68aadcdb..05d41615 100755 --- a/test/T560-lib-error.sh +++ b/test/T560-lib-error.sh @@ -454,5 +454,38 @@ cat < EXPECTED EOF test_expect_equal_file EXPECTED OUTPUT +test_begin_subtest "Handle getting date from closed database" +cat c_head2 - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + time_t result; + result = notmuch_message_get_date (message); + printf("%d\n%d\n", message != NULL, result == 0); + } +EOF +cat < EXPECTED +== stdout == +1 +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + +test_begin_subtest "Handle getting tags from closed database" +test_subtest_known_broken +cat c_head2 - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + notmuch_tags_t *result; + result = notmuch_message_get_tags (message); + printf("%d\n%d\n", message != NULL, result == NULL); + } +EOF +cat < EXPECTED +== stdout == +1 +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + test_done