From: David Bremner Date: Thu, 9 Jul 2020 00:17:05 +0000 (-0300) Subject: test: regression tests of n_m_freeze and n_m_thaw on closed db X-Git-Tag: 0.31_rc0~121 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=9244f588608ccedeab5e82e965a86c04a22be4b7 test: regression tests of n_m_freeze and n_m_thaw on closed db Neither of these accesses the database, so should be safe. Add the tests to catch any changes in exception throwing. --- diff --git a/test/T560-lib-error.sh b/test/T560-lib-error.sh index 5b5ad765..1ee9bd06 100755 --- a/test/T560-lib-error.sh +++ b/test/T560-lib-error.sh @@ -598,4 +598,36 @@ cat < EXPECTED EOF test_expect_equal_file EXPECTED OUTPUT +test_begin_subtest "Handle freezing message with closed db" +cat c_head2 - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + notmuch_status_t status; + status = notmuch_message_freeze (message); + printf("%d\n%d\n", message != NULL, status == NOTMUCH_STATUS_SUCCESS); + } +EOF +cat < EXPECTED +== stdout == +1 +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + +test_begin_subtest "Handle thawing message with closed db" +cat c_head2 - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + notmuch_status_t status; + status = notmuch_message_thaw (message); + printf("%d\n%d\n", message != NULL, status == NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW); + } +EOF +cat < EXPECTED +== stdout == +1 +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + test_done