diff options
| author | David Bremner <david@tethera.net> | 2021-07-03 17:11:31 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-08-30 16:29:04 -0700 |
| commit | 06b536dae09fea5e956db9e13169f7cdf9bdb3ba (patch) | |
| tree | 9feaa6ebc424ac6d76b0f852389554840711afbc | |
| parent | e1c56f49deb71a9a1b419331a5df38ce3cb4fb4a (diff) | |
test: known broken test for emacs display of message/rfc822 parts
There are at least 3 bugs present.
1) notmuch-show-insert-part-message/rfc822 assumes that message/rfc822
parts will have a ":content" property, but that turns out not to be
the case.
2) something deep in gnus wants gnus-newsgroup-charset, but that is
defined in gnus-sum, which is not loaded by default.
3) If gnus-sum is loaded, then the display of the message/rfc822 part
succeeds, but the buffer gets put into gnus-article-mode, which means
that, inter alia, notmuch text properties and keybindings get wiped.
| -rwxr-xr-x | test/T450-emacs-show.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/T450-emacs-show.sh b/test/T450-emacs-show.sh index a750cc4d..5bb5b201 100755 --- a/test/T450-emacs-show.sh +++ b/test/T450-emacs-show.sh @@ -219,6 +219,12 @@ test_emacs '(notmuch-show "id:basic-encrypted@crypto.notmuchmail.org") (test-visible-output)' test_expect_equal_file $EXPECTED/notmuch-show-decrypted-message OUTPUT +test_begin_subtest "show encrypted rfc822 message" +test_subtest_known_broken +test_emacs '(notmuch-show "id:encrypted-rfc822-attachment@crypto.notmuchmail.org") + (test-visible-output)' +test_expect_code 1 'fgrep "!!!" OUTPUT' + test_begin_subtest "show undecryptable message" test_emacs '(notmuch-show "id:simple-encrypted@crypto.notmuchmail.org") (test-visible-output)' |
