]> git.notmuchmail.org Git - notmuch/commitdiff
test: add known broken test for n_m_reindex on closed db
authorDavid Bremner <david@tethera.net>
Thu, 9 Jul 2020 00:17:08 +0000 (21:17 -0300)
committerDavid Bremner <david@tethera.net>
Mon, 20 Jul 2020 11:54:42 +0000 (08:54 -0300)
This is another case where the code should not call INTERNAL_ERROR.

test/T560-lib-error.sh

index 4805368a5c9869407cdd5a75784055f48c3e9a1e..8543b5dc80445ff0f6a90fe855d2e1b09152a9ff 100755 (executable)
@@ -661,4 +661,21 @@ cat <<EOF > EXPECTED
 EOF
 test_expect_equal_file EXPECTED OUTPUT
 
+test_begin_subtest "Handle reindexing message with closed db"
+test_subtest_known_broken
+cat c_head2 - c_tail <<'EOF' | test_C ${MAIL_DIR}
+    {
+        notmuch_status_t status;
+        status = notmuch_message_reindex (message, NULL);
+        printf("%d\n%d\n", message != NULL,  status == NOTMUCH_STATUS_XAPIAN_EXCEPTION);
+    }
+EOF
+cat <<EOF > EXPECTED
+== stdout ==
+1
+1
+== stderr ==
+EOF
+test_expect_equal_file EXPECTED OUTPUT
+
 test_done