mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
test: error handling in _n_message_{add,remove}_filename
Use a closed database to force throwing a Xapian exception. Leave the check vague to accomodate a potential explicit check for open database.
This commit is contained in:
parent
879ec9d76a
commit
9e9d0e5ffc
1 changed files with 32 additions and 0 deletions
|
@ -342,6 +342,38 @@ cat <<EOF > EXPECTED
|
|||
EOF
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "_notmuch_message_add_filename on closed db"
|
||||
cat c_head - c_tail <<'EOF' | test_private_C ${MAIL_DIR}
|
||||
{
|
||||
notmuch_private_status_t status;
|
||||
status = _notmuch_message_add_filename (message, "some-filename");
|
||||
printf("%d\n%d\n", message != NULL, status != NOTMUCH_STATUS_SUCCESS);
|
||||
}
|
||||
EOF
|
||||
cat <<EOF > EXPECTED
|
||||
== stdout ==
|
||||
1
|
||||
1
|
||||
== stderr ==
|
||||
EOF
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "_notmuch_message_remove_filename on closed db"
|
||||
cat c_head - c_tail <<'EOF' | test_private_C ${MAIL_DIR}
|
||||
{
|
||||
notmuch_private_status_t status;
|
||||
status = _notmuch_message_remove_filename (message, "some-filename");
|
||||
printf("%d\n%d\n", message != NULL, status != NOTMUCH_STATUS_SUCCESS);
|
||||
}
|
||||
EOF
|
||||
cat <<EOF > EXPECTED
|
||||
== stdout ==
|
||||
1
|
||||
1
|
||||
== stderr ==
|
||||
EOF
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "Handle removing all tags with closed db"
|
||||
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue