diff options
| author | David Bremner <david@tethera.net> | 2020-07-17 07:51:24 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2020-07-22 19:52:55 -0300 |
| commit | 9ab3e2e77d2881004cd2fdc1035dad7052ae735c (patch) | |
| tree | c2c25017e640b4af6c23c2ac17c65a7a6da7997f /test/T562-lib-database.sh | |
| parent | 1ca805a9620c7e09cb6c4022e6ffe9b95a3fc04f (diff) | |
test: regression test for n_d_index_file closed db
Current exception handling seems OK, at least for this case.
Diffstat (limited to 'test/T562-lib-database.sh')
| -rwxr-xr-x | test/T562-lib-database.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/T562-lib-database.sh b/test/T562-lib-database.sh index eed88f46..4e5655e8 100755 --- a/test/T562-lib-database.sh +++ b/test/T562-lib-database.sh @@ -12,6 +12,7 @@ cat <<EOF > c_head #include <stdio.h> #include <notmuch.h> #include <notmuch-test.h> +#include <talloc.h> int main (int argc, char** argv) { notmuch_database_t *db; @@ -237,4 +238,23 @@ A Xapian exception occurred creating a directory: Database has been closed. EOF test_expect_equal_file EXPECTED OUTPUT +# XXX TODO: test with relative path +test_begin_subtest "index file with a closed db" +cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + notmuch_message_t *msg; + const char *path = talloc_asprintf(db, "%s/01:2,", argv[1]); + EXPECT0(notmuch_database_close (db)); + stat = notmuch_database_index_file (db, path, NULL, &msg); + printf ("%d\n", stat == NOTMUCH_STATUS_XAPIAN_EXCEPTION); + } +EOF +cat <<EOF > EXPECTED +== stdout == +1 +== stderr == +A Xapian exception occurred finding message: Database has been closed. +EOF +test_expect_equal_file EXPECTED OUTPUT + test_done |
