aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2020-07-08 21:17:02 -0300
committerDavid Bremner <david@tethera.net>2020-07-20 08:54:42 -0300
commite32f66d0e30b6bd0ddb225f06785f7689349fcb9 (patch)
tree87fe8b69a83797e9a48cb8e422bc8cad590dbb8a /test
parent485c32b1f30ef74baccaf40777891f6ef9974634 (diff)
test: add regression test for n_m_maildir_flags_to_tags
This function currently catches at least the obvious Xapian exceptions and we want to keep it that way.
Diffstat (limited to 'test')
-rwxr-xr-xtest/T560-lib-error.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/T560-lib-error.sh b/test/T560-lib-error.sh
index 84ea6ccf..2aee132b 100755
--- a/test/T560-lib-error.sh
+++ b/test/T560-lib-error.sh
@@ -566,4 +566,20 @@ cat <<EOF > EXPECTED
EOF
test_expect_equal_file EXPECTED OUTPUT
+test_begin_subtest "Handle converting maildir flags to tags with closed db"
+cat c_head2 - c_tail <<'EOF' | test_C ${MAIL_DIR}
+ {
+ notmuch_status_t status;
+ status = notmuch_message_maildir_flags_to_tags (message);
+ 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