aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2020-07-05 10:00:16 -0300
committerDavid Bremner <david@tethera.net>2020-07-14 07:12:52 -0300
commit6eaadb43adae2cca2f8023830d498ef3164f7fe9 (patch)
treea9346f2f5490826f832e0f95b9eb84ebf3568e50 /test
parentef15946defec52182c59d00c23fe6167fbca8855 (diff)
lib: add regression test for n_m_get_date; clarify API
This function catches Xapian exceptions. The test is intended to make sure it stays 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 68aadcdb..c043e35e 100755
--- a/test/T560-lib-error.sh
+++ b/test/T560-lib-error.sh
@@ -454,5 +454,21 @@ cat <<EOF > 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 <<EOF > EXPECTED
+== stdout ==
+1
+1
+== stderr ==
+EOF
+test_expect_equal_file EXPECTED OUTPUT
+
test_done