mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
test: _notmuch_message_remove_term catches exceptions.
Unfortunately we can't differentiate between the two distinct error conditions for Document::remove_term.
This commit is contained in:
parent
f48d2e2ff8
commit
a581755fbb
1 changed files with 18 additions and 0 deletions
|
@ -324,6 +324,24 @@ cat <<EOF > EXPECTED
|
|||
EOF
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "_notmuch_message_remove_term catches exceptions"
|
||||
cat c_head0 - c_tail <<'EOF' | test_private_C ${MAIL_DIR}
|
||||
{
|
||||
notmuch_private_status_t status;
|
||||
/* Xapian throws the same exception for empty and non-existent terms;
|
||||
* error string varies between Xapian versions. */
|
||||
status = _notmuch_message_remove_term (message, "tag", "nonexistent");
|
||||
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