mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
test: Test search's handling of subprocess errors
This commit is contained in:
parent
19e5b2d912
commit
1e12b91b3c
1 changed files with 23 additions and 0 deletions
23
test/emacs
23
test/emacs
|
@ -853,4 +853,27 @@ test_expect_success "Rendering HTML mail with images" \
|
||||||
'cat OUTPUT && grep -q smiley OUTPUT'
|
'cat OUTPUT && grep -q smiley OUTPUT'
|
||||||
|
|
||||||
|
|
||||||
|
test_begin_subtest "Search handles subprocess errors"
|
||||||
|
cat > notmuch_fail <<EOF
|
||||||
|
#!/bin/sh
|
||||||
|
echo This is output
|
||||||
|
echo This is an error >&2
|
||||||
|
exit 1
|
||||||
|
EOF
|
||||||
|
chmod a+x notmuch_fail
|
||||||
|
test_emacs "(let ((notmuch-command \"$PWD/notmuch_fail\"))
|
||||||
|
(notmuch-search \"tag:inbox\")
|
||||||
|
(notmuch-test-wait)
|
||||||
|
(test-output)
|
||||||
|
(with-current-buffer \"*Notmuch errors*\"
|
||||||
|
(test-output \"ERROR\")))"
|
||||||
|
test_expect_equal "$(cat OUTPUT ERROR)" "\
|
||||||
|
Error: Unexpected output from notmuch search:
|
||||||
|
This is output
|
||||||
|
Error: Unexpected output from notmuch search:
|
||||||
|
This is an error
|
||||||
|
End of search results.
|
||||||
|
Error invoking notmuch. $PWD/notmuch_fail search --format=json --sort=newest-first tag:inbox exited with status 1."
|
||||||
|
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
|
Loading…
Reference in a new issue