X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2FT050-new.sh;h=e6c3291f786553c972e457cf5aeb749c1edca5e5;hb=2eb558fd9b369458c23b57b44281758bd17a5580;hp=ad46ee6d51b695f1144de64e406145d26f289452;hpb=44e6c52c76199f707b344b3303710a03201bee40;p=notmuch diff --git a/test/T050-new.sh b/test/T050-new.sh index ad46ee6d..e6c3291f 100755 --- a/test/T050-new.sh +++ b/test/T050-new.sh @@ -173,11 +173,7 @@ Subject: Test mbox message 1 Body. EOF output=$(NOTMUCH_NEW 2>&1) -test_expect_equal "$output" \ -"Warning: ${MAIL_DIR}/mbox_file1 is an mbox containing a single message, -likely caused by misconfigured mail delivery. Support for single-message -mboxes is deprecated and may be removed in the future. -Added 1 new message to the database." +test_expect_equal "$output" "Added 1 new message to the database." # This test requires that notmuch new has been run at least once. test_begin_subtest "Skip and report non-mail files" @@ -280,4 +276,11 @@ test_expect_code 1 "Invalid tags set exit code" \ notmuch config set new.tags $OLDCONFIG + +test_begin_subtest "Xapian exception: read only files" +chmod u-w ${MAIL_DIR}/.notmuch/xapian/*.DB +output=$(NOTMUCH_NEW 2>&1 | sed 's/: .*$//' ) +chmod u+w ${MAIL_DIR}/.notmuch/xapian/*.DB +test_expect_equal "$output" "A Xapian exception occurred opening database" + test_done