X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2Femacs;h=4e941bbd43c3becae5d3febf84d83dea9ed19866;hb=f9878f917352d8f49c44496b6a0a4ce38ef901d4;hp=77265b026430d5a30d23cca426ff72153d623c5e;hpb=3ac76816c51b6d989470ba470ba868fa2eb93b23;p=notmuch diff --git a/test/emacs b/test/emacs index 77265b02..4e941bbd 100755 --- a/test/emacs +++ b/test/emacs @@ -1,7 +1,7 @@ #!/usr/bin/env bash test_description="emacs interface" -. test-lib.sh +. ./test-lib.sh EXPECTED=$TEST_DIRECTORY/emacs.expected-output @@ -516,6 +516,32 @@ test_emacs '(let ((standard-input "\"attachment2.gz\"")) (notmuch-show-save-part "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com" 5))' test_expect_equal_file attachment2.gz "$EXPECTED/attachment" +test_begin_subtest "Save 8bit attachment from within emacs using notmuch-show-save-attachments" + +add_message '[subject]="Attachment with 8bit chars"' \ + '[header]="MIME-Version: 1.0"' \ + '[content-type]="multipart/mixed; boundary=\"abcd\""' \ + '[body]="--abcd +Content-Type: text/plain + +Attachment follows: + +--abcd +Content-Type: application/octet-stream; name=\"sample\" +Content-Transfer-Encoding: 8bit +Content-Disposition: attachment; filename=\"sample\" + +“¡ Hey ! It compiles ¡ Ship it !” + +--abcd-- +"' +test_emacs '(notmuch-show "id:'"${gen_msg_id}"'") + (delete-file "OUTPUT") + (let ((standard-input "\"OUTPUT\"")) + (notmuch-show-save-attachments))' + +test_expect_equal "$(cat OUTPUT)" '“¡ Hey ! It compiles ¡ Ship it !”' + test_begin_subtest "View raw message within emacs" test_emacs '(notmuch-show "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com") (notmuch-show-view-raw-message) @@ -809,9 +835,10 @@ test_emacs "(let ((mm-text-html-renderer (notmuch-show \"id:${gen_msg_id}\")) (test-output)" > /dev/null # Different Emacs versions and renderers give very different results, -# so just check that something reasonable showed up. +# so just check that something reasonable showed up. We first cat the +# output so the test framework will print it if the test fails. test_expect_success "Rendering HTML mail with images" \ - 'grep -q smiley OUTPUT' + 'cat OUTPUT && grep -q smiley OUTPUT' test_done