]> git.notmuchmail.org Git - notmuch/blob - test/T450-emacs-show.sh
emacs/show: optionally insert bodies of "deep messages" lazily
[notmuch] / test / T450-emacs-show.sh
1 #!/usr/bin/env bash
2
3 test_description="emacs notmuch-show view"
4 . $(dirname "$0")/test-lib.sh || exit 1
5 . $NOTMUCH_SRCDIR/test/test-lib-emacs.sh || exit 1
6
7 EXPECTED=$NOTMUCH_SRCDIR/test/emacs-show.expected-output
8
9 test_require_emacs
10 add_email_corpus
11
12 test_begin_subtest "Hiding Original Message region at beginning of a message"
13 message_id='OriginalMessageHiding.1@notmuchmail.org'
14 add_message \
15     [id]="$message_id" \
16     '[subject]="Hiding Original Message region at beginning of a message"' \
17     '[body]="-----Original Message-----
18 Text here."'
19
20 cat <<EOF >EXPECTED
21 Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-05) (inbox)
22 Subject: Hiding Original Message region at beginning of a message
23 To: Notmuch Test Suite <test_suite@notmuchmail.org>
24 Date: GENERATED_DATE
25
26 [ 2-line hidden original message. Click/Enter to show. ]
27 EOF
28
29 test_emacs "(notmuch-show \"id:$message_id\")
30             (test-visible-output \"OUTPUT.raw\")"
31 notmuch_date_sanitize < OUTPUT.raw > OUTPUT
32 test_expect_equal_file EXPECTED OUTPUT
33
34 test_begin_subtest "Bare subject #1"
35 output=$(test_emacs '(notmuch-show-strip-re "Re: subject")')
36 test_expect_equal "$output" '"subject"'
37
38 test_begin_subtest "Bare subject #2"
39 output=$(test_emacs '(notmuch-show-strip-re "re:Re: re:  Re:  re:subject")')
40 test_expect_equal "$output" '"subject"'
41
42 test_begin_subtest "Bare subject #3"
43 output=$(test_emacs '(notmuch-show-strip-re "the cure: fix the regexp")')
44 test_expect_equal "$output" '"the cure: fix the regexp"'
45
46 test_begin_subtest "don't process cryptographic MIME parts"
47 test_emacs '(let ((notmuch-crypto-process-mime nil))
48         (notmuch-show "id:20091117203301.GV3165@dottiness.seas.harvard.edu")
49         (test-visible-output))'
50 test_expect_equal_file $EXPECTED/notmuch-show-process-crypto-mime-parts-off OUTPUT
51
52 test_begin_subtest "process cryptographic MIME parts"
53 test_emacs '(let ((notmuch-crypto-process-mime t))
54         (notmuch-show "id:20091117203301.GV3165@dottiness.seas.harvard.edu")
55         (test-visible-output))'
56 test_expect_equal_file $EXPECTED/notmuch-show-process-crypto-mime-parts-on OUTPUT
57
58 test_begin_subtest "process cryptographic MIME parts (w/ notmuch-show-toggle-process-crypto)"
59 test_emacs '(let ((notmuch-crypto-process-mime nil))
60         (notmuch-show "id:20091117203301.GV3165@dottiness.seas.harvard.edu")
61         (notmuch-show-toggle-process-crypto)
62         (test-visible-output))'
63 test_expect_equal_file $EXPECTED/notmuch-show-process-crypto-mime-parts-on OUTPUT
64
65 test_begin_subtest "notmuch-search-show-thread returns non-nil on success"
66 test_emacs_expect_t  '(notmuch-search "id:20091117203301.GV3165@dottiness.seas.harvard.edu")
67                       (notmuch-test-wait)
68                       (and (notmuch-search-show-thread)
69                            (not (notmuch-show-next-thread)))'
70
71 test_begin_subtest "notmuch-search-show-thread returns nil when there are no messages"
72 test_emacs_expect_t  '(notmuch-search "id:non-existing-id")
73                       (notmuch-test-wait)
74                       (not (notmuch-search-show-thread))'
75
76 test_begin_subtest "notmuch-show: don't elide non-matching messages"
77 test_emacs '(let ((notmuch-show-only-matching-messages nil))
78         (notmuch-search "from:lars@seas.harvard.edu and subject:\"Maildir storage\"")
79         (notmuch-test-wait)
80         (notmuch-search-show-thread)
81         (notmuch-test-wait)
82         (test-visible-output))'
83 test_expect_equal_file $EXPECTED/notmuch-show-elide-non-matching-messages-off OUTPUT
84
85 test_begin_subtest "notmuch-show: elide non-matching messages"
86 test_emacs '(let ((notmuch-show-only-matching-messages t))
87         (notmuch-search "from:lars@seas.harvard.edu and subject:\"Maildir storage\"")
88         (notmuch-test-wait)
89         (notmuch-search-show-thread)
90         (notmuch-test-wait)
91         (test-visible-output))'
92 test_expect_equal_file $EXPECTED/notmuch-show-elide-non-matching-messages-on OUTPUT
93
94 test_begin_subtest "Hide bodies of messages by depth"
95 test_emacs '(let ((notmuch-show-depth-limit -1))
96         (notmuch-search "thread:{id:87ocn0qh6d.fsf@yoom.home.cworth.org}")
97         (notmuch-test-wait)
98         (notmuch-search-show-thread)
99         (notmuch-test-wait)
100         (test-visible-output))'
101 test_expect_equal_file $EXPECTED/notmuch-show-depth OUTPUT
102
103 test_begin_subtest "Hide bodies of messages (depth > 1)"
104 test_emacs '(let ((notmuch-show-depth-limit 1))
105         (notmuch-search "thread:{id:87ocn0qh6d.fsf@yoom.home.cworth.org}")
106         (notmuch-test-wait)
107         (notmuch-search-show-thread)
108         (notmuch-test-wait)
109         (test-visible-output))'
110 test_expect_equal_file $EXPECTED/notmuch-show-depth-1 OUTPUT
111
112 test_begin_subtest "notmuch-show: elide non-matching messages (w/ notmuch-show-toggle-elide-non-matching)"
113 test_emacs '(let ((notmuch-show-only-matching-messages nil))
114         (notmuch-search "from:lars@seas.harvard.edu and subject:\"Maildir storage\"")
115         (notmuch-test-wait)
116         (notmuch-search-show-thread)
117         (notmuch-test-wait)
118         (notmuch-show-toggle-elide-non-matching)
119         (test-visible-output))'
120 test_expect_equal_file $EXPECTED/notmuch-show-elide-non-matching-messages-on OUTPUT
121
122 test_begin_subtest "notmuch-show: elide non-matching messages (w/ prefix arg to notmuch-show)"
123 test_emacs '(let ((notmuch-show-only-matching-messages nil))
124         (notmuch-search "from:lars@seas.harvard.edu and subject:\"Maildir storage\"")
125         (notmuch-test-wait)
126         (notmuch-search-show-thread t)
127         (notmuch-test-wait)
128         (test-visible-output))'
129 test_expect_equal_file $EXPECTED/notmuch-show-elide-non-matching-messages-on OUTPUT
130
131 test_begin_subtest "notmuch-show: disable indentation of thread content (w/ notmuch-show-toggle-thread-indentation)"
132 test_emacs '(notmuch-search "from:lars@seas.harvard.edu and subject:\"Maildir storage\"")
133         (notmuch-test-wait)
134         (notmuch-search-show-thread)
135         (notmuch-test-wait)
136         (notmuch-show-toggle-thread-indentation)
137         (test-visible-output)'
138 test_expect_equal_file $EXPECTED/notmuch-show-indent-thread-content-off OUTPUT
139
140 test_begin_subtest "id buttonization"
141 add_message '[body]="
142 id:abc
143 id:abc.def. id:abc,def, id:abc;def; id:abc:def:
144 id:foo@bar.?baz? id:foo@bar!.baz!
145 (id:foo@bar.baz) [id:foo@bar.baz]
146 id:foo@bar.baz...
147 id:2+2=5
148 id:=_-:/.[]@$%+
149 id:abc)def
150 id:ab\"c def
151 id:\"abc\"def
152 id:\"ab\"\"c\"def
153 id:\"ab c\"def
154 id:\"abc\".def
155 id:\"abc
156 \"
157 id:)
158 id:
159 cid:xxx
160 mid:abc mid:abc/def
161 mid:abc%20def
162 mid:abc. mid:abc, mid:abc;"'
163 test_emacs '(notmuch-show "id:'$gen_msg_id'")
164         (notmuch-test-mark-links)
165         (test-visible-output "OUTPUT.raw")'
166 cat <<EOF >EXPECTED
167 Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-05) (inbox)
168 Subject: id buttonization
169 To: Notmuch Test Suite <test_suite@notmuchmail.org>
170 Date: GENERATED_DATE
171
172 <<id:abc>>
173 <<id:abc.def>>. <<id:abc,def>>, <<id:abc;def>>; <<id:abc:def>>:
174 <<id:foo@bar.?baz>>? <<id:foo@bar!.baz>>!
175 (<<id:foo@bar.baz>>) [<<id:foo@bar.baz>>]
176 <<id:foo@bar.baz>>...
177 <<id:2+2=5>>
178 <<id:=_-:/.[]@$%+>>
179 <<id:abc>>)def
180 <<id:ab"c>> def
181 <<id:"abc">>def
182 <<id:"ab""c">>def
183 <<id:"ab c">>def
184 <<id:"abc">>.def
185 id:"abc
186 "
187 id:)
188 id:
189 cid:xxx
190 <<mid:abc>> <<mid:abc/def>>
191 <<mid:abc%20def>>
192 <<mid:abc>>. <<mid:abc>>, <<mid:abc>>;
193 EOF
194 notmuch_date_sanitize < OUTPUT.raw > OUTPUT
195 test_expect_equal_file EXPECTED OUTPUT
196
197
198 test_begin_subtest "Show handles subprocess errors"
199 cat > notmuch_fail <<EOF
200 #!/bin/sh
201 echo This is output
202 echo This is an error >&2
203 exit 1
204 EOF
205 chmod a+x notmuch_fail
206 test_emacs "(let ((notmuch-command \"$PWD/notmuch_fail\"))
207                (with-current-buffer \"*Messages*\"
208                   (let ((inhibit-read-only t)) (erase-buffer)))
209                (condition-case err
210                    (notmuch-show \"*\")
211                  (error (message \"%s\" (cadr err))))
212                (notmuch-test-wait)
213                (with-current-buffer \"*Messages*\"
214                   (test-output \"MESSAGES\"))
215                (with-current-buffer \"*Notmuch errors*\"
216                   (test-output \"ERROR\"))
217                (test-output))"
218 test_expect_equal "$(notmuch_emacs_error_sanitize notmuch_fail OUTPUT MESSAGES ERROR)" "\
219 === OUTPUT ===
220 === MESSAGES ===
221 This is an error (see *Notmuch errors* for more details)
222 === ERROR ===
223 This is an error
224 command: YYY/notmuch_fail show --format\\=sexp --format-version\\=5 --decrypt\\=true --exclude\\=false \\' \\* \\'
225 exit status: 1
226 stderr:
227 This is an error
228 stdout:
229 This is output"
230
231 test_begin_subtest "text/enriched exploit mitigation"
232 add_message '[content-type]="text/enriched"
233              [body]="
234 <x-display><param>(when (progn (read-only-mode -1) (insert ?p ?0 ?w ?n ?e ?d)) nil)</param>test</x-display>
235 "'
236 test_emacs '(notmuch-show "id:'$gen_msg_id'")
237         (test-visible-output "OUTPUT.raw")'
238 output=$(head -1 OUTPUT.raw|cut -f1-4 -d' ')
239 test_expect_equal "$output" "Notmuch Test Suite <test_suite@notmuchmail.org>"
240
241 test_begin_subtest "multipart/alternative hides html by default"
242 test_emacs '(notmuch-show "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com")
243             (test-visible-output)'
244 test_expect_equal_file $EXPECTED/notmuch-show-multipart-alternative OUTPUT
245
246 # switching to the crypto corpus, using gpg from here on:
247 add_gnupg_home
248 add_email_corpus crypto
249
250 test_begin_subtest "show decrypted message"
251 test_emacs '(notmuch-show "id:basic-encrypted@crypto.notmuchmail.org")
252             (test-visible-output)'
253 test_expect_equal_file $EXPECTED/notmuch-show-decrypted-message OUTPUT
254
255 test_begin_subtest "show encrypted rfc822 message"
256 if ${TEST_EMACS} --quick --batch --eval '(kill-emacs (if (version< emacs-version "28") 0 1))'; then
257     test_subtest_known_broken
258 fi
259 test_emacs '(notmuch-show "id:encrypted-rfc822-attachment@crypto.notmuchmail.org")
260             (test-visible-output)'
261 test_expect_code 1 'fgrep "!!!" OUTPUT'
262
263 test_begin_subtest "show undecryptable message"
264 test_emacs '(notmuch-show "id:simple-encrypted@crypto.notmuchmail.org")
265             (test-visible-output)'
266 test_expect_equal_file $EXPECTED/notmuch-show-undecryptable-message OUTPUT
267
268 test_begin_subtest "show encrypted message when not processing crypto"
269 test_emacs '(let ((notmuch-crypto-process-mime nil))
270              (notmuch-show "id:basic-encrypted@crypto.notmuchmail.org")
271              (test-visible-output))'
272 test_expect_equal_file $EXPECTED/notmuch-show-decrypted-message-no-crypto OUTPUT
273
274 test_begin_subtest "notmuch-show with nonexistent CWD"
275 tid=$(notmuch search --limit=1 --output=threads '*' | sed s/thread://)
276 test_emacs "(test-log-error
277               (let ((default-directory \"/nonexistent\"))
278                 (notmuch-show \"$tid\")))"
279 test_expect_equal "$(cat MESSAGES)" "COMPLETE"
280
281 add_email_corpus attachment
282
283 test_begin_subtest "tar not inlined by default"
284 test_emacs '(notmuch-show "id:874llc2bkp.fsf@curie.anarc.at")
285         (test-visible-output "OUTPUT")'
286 cat <<EOF > EXPECTED
287 Antoine Beaupré <anarcat@orangeseeds.org> (2018-03-19) (attachment inbox)
288 Subject: Re: bug: "no top level messages" crash on Zen email loops
289 To: David Bremner <david@tethera.net>, notmuch@notmuchmail.org
290 Date: Mon, 19 Mar 2018 13:56:54 -0400
291
292 [ multipart/mixed ]
293 [ text/plain ]
294 And obviously I forget the frigging attachment.
295 [ zendesk-email-loop2.tgz: application/x-gtar-compressed ]
296 [ text/plain ]
297
298 PS: don't we have a "you forgot to actually attach the damn file" plugin
299 when we detect the word "attachment" and there's no attach? :p
300 EOF
301 test_expect_equal_file EXPECTED OUTPUT
302
303 test_done