]> git.notmuchmail.org Git - notmuch/blob - test/emacs
emacs: Escape all message ID queries
[notmuch] / test / emacs
1 #!/usr/bin/env bash
2
3 test_description="emacs interface"
4 . test-lib.sh
5
6 EXPECTED=$TEST_DIRECTORY/emacs.expected-output
7
8 add_email_corpus
9
10 test_begin_subtest "Basic notmuch-hello view in emacs"
11 test_emacs '(notmuch-hello)
12             (test-output)'
13 test_expect_equal_file OUTPUT $EXPECTED/notmuch-hello
14
15 test_begin_subtest "Saved search with 0 results"
16 test_emacs '(let ((notmuch-show-empty-saved-searches t)
17                   (notmuch-saved-searches
18                    '\''(("inbox" . "tag:inbox")
19                         ("unread" . "tag:unread")
20                         ("empty" . "tag:doesnotexist"))))
21               (notmuch-hello)
22               (test-output))'
23 test_expect_equal_file OUTPUT $EXPECTED/notmuch-hello-with-empty
24
25 test_begin_subtest "No saved searches displayed (all with 0 results)"
26 test_emacs '(let ((notmuch-saved-searches
27                    '\''(("empty" . "tag:doesnotexist"))))
28               (notmuch-hello)
29               (test-output))'
30 test_expect_equal_file OUTPUT $EXPECTED/notmuch-hello-no-saved-searches
31
32 test_begin_subtest "Basic notmuch-search view in emacs"
33 test_emacs '(notmuch-search "tag:inbox")
34             (notmuch-test-wait)
35             (test-output)'
36 test_expect_equal_file OUTPUT $EXPECTED/notmuch-search-tag-inbox
37
38 test_begin_subtest "Navigation of notmuch-hello to search results"
39 test_emacs '(notmuch-hello)
40             (goto-char (point-min))
41             (re-search-forward "inbox")
42             (widget-button-press (point))
43             (notmuch-test-wait)
44             (test-output)'
45 test_expect_equal_file OUTPUT $EXPECTED/notmuch-hello-view-inbox
46
47 test_begin_subtest "Basic notmuch-show view in emacs"
48 maildir_storage_thread=$(notmuch search --output=threads id:20091117190054.GU3165@dottiness.seas.harvard.edu)
49 test_emacs "(notmuch-show \"$maildir_storage_thread\")
50             (test-output)"
51 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-maildir-storage
52
53 test_begin_subtest "Basic notmuch-show view in emacs default indentation"
54 maildir_storage_thread=$(notmuch search --output=threads id:20091117190054.GU3165@dottiness.seas.harvard.edu)
55 test_emacs "(let ((notmuch-show-indent-messages-width 1))
56               (notmuch-show \"$maildir_storage_thread\")
57               (test-output))"
58 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-maildir-storage
59
60 test_begin_subtest "Basic notmuch-show view in emacs without indentation"
61 maildir_storage_thread=$(notmuch search --output=threads id:20091117190054.GU3165@dottiness.seas.harvard.edu)
62 test_emacs "(let ((notmuch-show-indent-messages-width 0))
63               (notmuch-show \"$maildir_storage_thread\")
64               (test-output))"
65 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-maildir-storage-without-indentation
66
67 test_begin_subtest "Basic notmuch-show view in emacs with fourfold indentation"
68 maildir_storage_thread=$(notmuch search --output=threads id:20091117190054.GU3165@dottiness.seas.harvard.edu)
69 test_emacs "(let ((notmuch-show-indent-messages-width 4))
70               (notmuch-show \"$maildir_storage_thread\")
71               (test-output))"
72 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-maildir-storage-with-fourfold-indentation
73
74 test_begin_subtest "notmuch-show for message with invalid From"
75 add_message "[subject]=\"message-with-invalid-from\"" \
76             "[from]=\"\\\"Invalid \\\" From\\\" <test_suite@notmuchmail.org>\""
77 thread=$(notmuch search --output=threads subject:message-with-invalid-from)
78 test_emacs "(notmuch-show \"$thread\")
79             (test-output)"
80 cat <<EOF >EXPECTED
81 "Invalid " (2001-01-05) (inbox)
82 Subject: message-with-invalid-from
83 To: Notmuch Test Suite <test_suite@notmuchmail.org>
84 Date: Fri, 05 Jan 2001 15:43:57 +0000
85
86 This is just a test message (#1)
87 EOF
88 test_expect_equal_file OUTPUT EXPECTED
89
90 test_begin_subtest "Navigation of notmuch-search to thread view"
91 test_emacs '(notmuch-search "tag:inbox")
92             (notmuch-test-wait)
93             (goto-char (point-min))
94             (re-search-forward "Working with Maildir")
95             (notmuch-search-show-thread)
96             (notmuch-test-wait)
97             (test-output)'
98 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-maildir-storage
99
100 test_begin_subtest "Add tag from search view"
101 os_x_darwin_thread=$(notmuch search --output=threads id:ddd65cda0911171950o4eea4389v86de9525e46052d3@mail.gmail.com)
102 test_emacs "(notmuch-search \"$os_x_darwin_thread\")
103             (notmuch-test-wait)
104             (execute-kbd-macro \"+tag-from-search-view\")"
105 output=$(notmuch search $os_x_darwin_thread | notmuch_search_sanitize)
106 test_expect_equal "$output" "thread:XXX   2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox tag-from-search-view unread)"
107
108 test_begin_subtest "Remove tag from search view"
109 test_emacs "(notmuch-search \"$os_x_darwin_thread\")
110             (notmuch-test-wait)
111             (execute-kbd-macro \"-tag-from-search-view\")"
112 output=$(notmuch search $os_x_darwin_thread | notmuch_search_sanitize)
113 test_expect_equal "$output" "thread:XXX   2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox unread)"
114
115 test_begin_subtest "Add tag from notmuch-show view"
116 test_emacs "(notmuch-show \"$os_x_darwin_thread\")
117             (execute-kbd-macro \"+tag-from-show-view\")"
118 output=$(notmuch search $os_x_darwin_thread | notmuch_search_sanitize)
119 test_expect_equal "$output" "thread:XXX   2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox tag-from-show-view unread)"
120
121 test_begin_subtest "Remove tag from notmuch-show view"
122 test_emacs "(notmuch-show \"$os_x_darwin_thread\")
123             (execute-kbd-macro \"-tag-from-show-view\")"
124 output=$(notmuch search $os_x_darwin_thread | notmuch_search_sanitize)
125 test_expect_equal "$output" "thread:XXX   2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox unread)"
126
127 test_begin_subtest "Message with .. in Message-Id:"
128 add_message [id]=123..456@example '[subject]="Message with .. in Message-Id"'
129 test_emacs '(notmuch-search "id:\"123..456@example\"")
130             (notmuch-test-wait)
131             (execute-kbd-macro "+search-add")
132             (execute-kbd-macro "+search-remove")
133             (execute-kbd-macro "-search-remove")
134             (notmuch-show "id:\"123..456@example\"")
135             (notmuch-test-wait)
136             (execute-kbd-macro "+show-add")
137             (execute-kbd-macro "+show-remove")
138             (execute-kbd-macro "-show-remove")'
139 output=$(notmuch search 'id:"123..456@example"' | notmuch_search_sanitize)
140 test_expect_equal "$output" "thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Message with .. in Message-Id (inbox search-add show-add)"
141
142 test_begin_subtest "Message with quote in Message-Id:"
143 add_message '[id]="\"quote\"@example"' '[subject]="Message with quote in Message-Id"'
144 test_emacs '(notmuch-search "subject:\"Message with quote\"")
145             (notmuch-test-wait)
146             (execute-kbd-macro "+search-add")
147             (notmuch-search-show-thread)
148             (notmuch-test-wait)
149             (execute-kbd-macro "+show-add")'
150 output=$(notmuch search 'id:"""quote""@example"' | notmuch_search_sanitize)
151 test_expect_equal "$output" "thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Message with quote in Message-Id (inbox search-add show-add)"
152
153 test_begin_subtest "Sending a message via (fake) SMTP"
154 emacs_deliver_message \
155     'Testing message sent via SMTP' \
156     'This is a test that messages are sent via SMTP' \
157     '(message-goto-to)
158      (kill-whole-line)
159      (insert "To: user@example.com\n")'
160 sed \
161     -e s',^User-Agent: Notmuch/.* Emacs/.*,User-Agent: Notmuch/XXX Emacs/XXX,' \
162     -e s',^Message-ID: <.*>$,Message-ID: <XXX>,' < sent_message >OUTPUT
163 cat <<EOF >EXPECTED
164 From: Notmuch Test Suite <test_suite@notmuchmail.org>
165 To: user@example.com
166 Subject: Testing message sent via SMTP
167 Date: 01 Jan 2000 12:00:00 -0000
168 User-Agent: Notmuch/XXX Emacs/XXX
169 Message-ID: <XXX>
170 MIME-Version: 1.0
171 Content-Type: text/plain; charset=us-ascii
172
173 This is a test that messages are sent via SMTP
174 EOF
175 test_expect_equal_file OUTPUT EXPECTED
176
177 test_begin_subtest "Verify that sent messages are saved/searchable (via FCC)"
178 notmuch new > /dev/null
179 output=$(notmuch search 'subject:"testing message sent via SMTP"' | notmuch_search_sanitize)
180 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; Testing message sent via SMTP (inbox)"
181
182 test_begin_subtest "notmuch-fcc-dirs set to nil"
183 test_emacs "(let ((notmuch-fcc-dirs nil))
184               (notmuch-mua-mail)
185               (test-output))"
186 cat <<EOF >EXPECTED
187 From: Notmuch Test Suite <test_suite@notmuchmail.org>
188 To: 
189 Subject: 
190 --text follows this line--
191 EOF
192 test_expect_equal_file OUTPUT EXPECTED
193
194 # Make another FCC maildir specific for the next test
195 mkdir -p mail/sent-string/cur
196 mkdir -p mail/sent-string/new
197 mkdir -p mail/sent-string/tmp
198
199 test_begin_subtest "notmuch-fcc-dirs set to a string"
200 test_emacs "(let ((notmuch-fcc-dirs \"sent-string\"))
201               (notmuch-mua-mail)
202               (test-output))"
203 cat <<EOF >EXPECTED
204 From: Notmuch Test Suite <test_suite@notmuchmail.org>
205 To: 
206 Subject: 
207 Fcc: ${MAIL_DIR}/sent-string
208 --text follows this line--
209 EOF
210 test_expect_equal_file OUTPUT EXPECTED
211
212 # Make more FCC maildirs specific for the next test
213 mkdir -p mail/sent-list-match/cur
214 mkdir -p mail/sent-list-match/new
215 mkdir -p mail/sent-list-match/tmp
216 mkdir -p mail/failure/cur
217 mkdir -p mail/failure/new
218 mkdir -p mail/failure/tmp
219
220 test_begin_subtest "notmuch-fcc-dirs set to a list (with match)"
221 test_emacs "(let ((notmuch-fcc-dirs
222                    '((\"notmuchmail.org\" . \"sent-list-match\")
223                      (\".*\" . \"failure\"))))
224               (notmuch-mua-mail)
225               (test-output))"
226 cat <<EOF >EXPECTED
227 From: Notmuch Test Suite <test_suite@notmuchmail.org>
228 To: 
229 Subject: 
230 Fcc: ${MAIL_DIR}/sent-list-match
231 --text follows this line--
232 EOF
233 test_expect_equal_file OUTPUT EXPECTED
234
235 # Make another FCC maildir specific for the next test
236 mkdir -p mail/sent-list-catch-all/cur
237 mkdir -p mail/sent-list-catch-all/new
238 mkdir -p mail/sent-list-catch-all/tmp
239
240 test_begin_subtest "notmuch-fcc-dirs set to a list (catch-all)"
241 test_emacs "(let ((notmuch-fcc-dirs
242                    '((\"example.com\" . \"failure\")
243                      (\".*\" . \"sent-list-catch-all\"))))
244               (notmuch-mua-mail)
245               (test-output))"
246 cat <<EOF >EXPECTED
247 From: Notmuch Test Suite <test_suite@notmuchmail.org>
248 To: 
249 Subject: 
250 Fcc: ${MAIL_DIR}/sent-list-catch-all
251 --text follows this line--
252 EOF
253 test_expect_equal_file OUTPUT EXPECTED
254
255 test_begin_subtest "notmuch-fcc-dirs set to a list (no match)"
256 test_emacs "(let ((notmuch-fcc-dirs
257                    '((\"example.com\" . \"failure\")
258                      (\"nomatchhere.net\" . \"failure\"))))
259               (notmuch-mua-mail)
260               (test-output))"
261 cat <<EOF >EXPECTED
262 From: Notmuch Test Suite <test_suite@notmuchmail.org>
263 To: 
264 Subject: 
265 --text follows this line--
266 EOF
267 test_expect_equal_file OUTPUT EXPECTED
268
269 test_begin_subtest "Reply within emacs"
270 test_emacs '(notmuch-search "subject:\"testing message sent via SMTP\"")
271             (notmuch-test-wait)
272             (notmuch-search-reply-to-thread)
273             (test-output)'
274 sed -i -e 's/^In-Reply-To: <.*>$/In-Reply-To: <XXX>/' OUTPUT
275 cat <<EOF >EXPECTED
276 From: Notmuch Test Suite <test_suite@notmuchmail.org>
277 To: user@example.com
278 Subject: Re: Testing message sent via SMTP
279 In-Reply-To: <XXX>
280 Fcc: ${MAIL_DIR}/sent
281 --text follows this line--
282 Notmuch Test Suite <test_suite@notmuchmail.org> writes:
283
284 > This is a test that messages are sent via SMTP
285 EOF
286 test_expect_equal_file OUTPUT EXPECTED
287
288 test_begin_subtest "Reply within emacs to a multipart/mixed message"
289 test_emacs '(notmuch-show "id:20091118002059.067214ed@hikari")
290                 (notmuch-show-reply)
291                 (test-output)'
292 cat <<EOF >EXPECTED
293 From: Notmuch Test Suite <test_suite@notmuchmail.org>
294 To: Adrian Perez de Castro <aperez@igalia.com>, notmuch@notmuchmail.org
295 Subject: Re: [notmuch] Introducing myself
296 In-Reply-To: <20091118002059.067214ed@hikari>
297 Fcc: ${MAIL_DIR}/sent
298 --text follows this line--
299 Adrian Perez de Castro <aperez@igalia.com> writes:
300
301 > Hello to all,
302 >
303 > I have just heard about Not Much today in some random Linux-related news
304 > site (LWN?), my name is Adrian Perez and I work as systems administrator
305 > (although I can do some code as well :P). I have always thought that the
306 > ideas behind Sup were great, but after some time using it, I got tired of
307 > the oddities that it has. I also do not like doing things like having to
308 > install Ruby just for reading and sorting mails. Some time ago I thought
309 > about doing something like Not Much and in fact I played a bit with the
310 > Python+Xapian and the Python+Whoosh combinations, because I find relaxing
311 > to code things in Python when I am not working and also it is installed
312 > by default on most distribution. I got to have some mailboxes indexed and
313 > basic searching working a couple of months ago. Lately I have been very
314 > busy and had no time for coding, and them... boom! Not Much appears -- and
315 > it is almost exactly what I was trying to do, but faster. I have been
316 > playing a bit with Not Much today, and I think it has potential.
317 >
318 > Also, I would like to share one idea I had in mind, that you might find
319 > interesting: One thing I have found very annoying is having to re-tag my
320 > mail when the indexes get b0rked (it happened a couple of times to me while
321 > using Sup), so I was planning to mails as read/unread and adding the tags
322 > not just to the index, but to the mail text itself, e.g. by adding a
323 > "X-Tags" header field or by reusing the "Keywords" one. This way, the index
324 > could be totally recreated by re-reading the mail directories, and this
325 > would also allow to a tools like OfflineIMAP [1] to get the mails into a
326 > local maildir, tagging and indexing the mails with the e-mail reader and
327 > then syncing back the messages with the "X-Tags" header to the IMAP server.
328 > This would allow to use the mail reader from a different computer and still
329 > have everything tagged finely.
330 >
331 > Best regards,
332 >
333 >
334 > ---
335 > [1] http://software.complete.org/software/projects/show/offlineimap
336 >
337 > -- 
338 > Adrian Perez de Castro <aperez@igalia.com>
339 > Igalia - Free Software Engineering
340 > _______________________________________________
341 > notmuch mailing list
342 > notmuch@notmuchmail.org
343 > http://notmuchmail.org/mailman/listinfo/notmuch
344 EOF
345 test_expect_equal_file OUTPUT EXPECTED
346
347 test_begin_subtest "Reply within emacs to a multipart/alternative message"
348 test_emacs '(notmuch-show "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com")
349                 (notmuch-show-reply)
350                 (test-output)'
351 cat <<EOF >EXPECTED
352 From: Notmuch Test Suite <test_suite@notmuchmail.org>
353 To: Alex Botero-Lowry <alex.boterolowry@gmail.com>, notmuch@notmuchmail.org
354 Subject: Re: [notmuch] preliminary FreeBSD support
355 In-Reply-To: <cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com>
356 Fcc: ${MAIL_DIR}/sent
357 --text follows this line--
358 Alex Botero-Lowry <alex.boterolowry@gmail.com> writes:
359
360 > I saw the announcement this morning, and was very excited, as I had been
361 > hoping sup would be turned into a library,
362 > since I like the concept more than the UI (I'd rather an emacs interface).
363 >
364 > I did a preliminary compile which worked out fine, but
365 > sysconf(_SC_SC_GETPW_R_SIZE_MAX) returns -1 on
366 > FreeBSD, so notmuch_config_open segfaulted.
367 >
368 > Attached is a patch that supplies a default buffer size of 64 in cases where
369 > -1 is returned.
370 >
371 > http://www.opengroup.org/austin/docs/austin_328.txt - seems to indicate this
372 > is acceptable behavior,
373 > and http://mail-index.netbsd.org/pkgsrc-bugs/2006/06/07/msg016808.htmlspecifically
374 > uses 64 as the
375 > buffer size.
376 > _______________________________________________
377 > notmuch mailing list
378 > notmuch@notmuchmail.org
379 > http://notmuchmail.org/mailman/listinfo/notmuch
380 EOF
381 test_expect_equal_file OUTPUT EXPECTED
382
383 test_begin_subtest "Quote MML tags in reply"
384 message_id='test-emacs-mml-quoting@message.id'
385 add_message [id]="$message_id" \
386             "[subject]='$test_subtest_name'" \
387             '[body]="<#part disposition=inline>"'
388 test_emacs "(notmuch-show \"id:$message_id\")
389               (notmuch-show-reply)
390               (test-output)"
391 cat <<EOF >EXPECTED
392 From: Notmuch Test Suite <test_suite@notmuchmail.org>
393 To: 
394 Subject: Re: Quote MML tags in reply
395 In-Reply-To: <test-emacs-mml-quoting@message.id>
396 Fcc: ${MAIL_DIR}/sent
397 --text follows this line--
398 Notmuch Test Suite <test_suite@notmuchmail.org> writes:
399
400 > <#!part disposition=inline>
401 EOF
402 test_expect_equal_file OUTPUT EXPECTED
403
404 test_begin_subtest "Save attachment from within emacs using notmuch-show-save-attachments"
405 # save as archive to test that Emacs does not re-compress .gz
406 test_emacs '(let ((standard-input "\"attachment1.gz\""))
407               (notmuch-show "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com")
408               (notmuch-show-save-attachments))'
409 test_expect_equal_file attachment1.gz "$EXPECTED/attachment"
410
411 test_begin_subtest "Save attachment from within emacs using notmuch-show-save-part"
412 # save as archive to test that Emacs does not re-compress .gz
413 test_emacs '(let ((standard-input "\"attachment2.gz\""))
414               (notmuch-show-save-part "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com" 5))'
415 test_expect_equal_file attachment2.gz "$EXPECTED/attachment"
416
417 test_begin_subtest "View raw message within emacs"
418 test_emacs '(notmuch-show "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com")
419             (notmuch-show-view-raw-message)
420             (test-output)'
421 test_expect_equal_file OUTPUT $EXPECTED/raw-message-cf0c4d-52ad0a
422
423 test_begin_subtest "Hiding/showing signature in notmuch-show view"
424 maildir_storage_thread=$(notmuch search --output=threads id:20091117190054.GU3165@dottiness.seas.harvard.edu)
425 test_emacs "(notmuch-show \"$maildir_storage_thread\")
426             (search-forward \"Click/Enter to show.\")
427             (button-activate (button-at (point)))
428             (search-backward \"Click/Enter to hide.\")
429             (button-activate (button-at (point)))
430             (test-output)"
431 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-maildir-storage
432
433 test_begin_subtest "Detection and hiding of top-post quoting of message"
434 add_message '[subject]="The problem with top-posting"' \
435             [id]=top-post-target \
436             '[body]="A: Because it messes up the order in which people normally read text.
437 Q: Why is top-posting such a bad thing?
438 A: Top-posting.
439 Q: What is the most annoying thing in e-mail?"'
440 add_message '[from]="Top Poster <top@poster.com>"' \
441             [in-reply-to]=top-post-target \
442             [references]=top-post-target \
443             '[subject]="Re: The problem with top-posting"' \
444             '[body]="Thanks for the advice! I will be sure to put it to good use.
445
446 -Top Poster
447
448 ----- Original Message -----
449 From: Notmuch Test Suite <test_suite@notmuchmail.org>
450 To: Notmuch Test Suite <test_suite@notmuchmai.org>
451 Sent: Fri, 05 Jan 2001 15:43:57 +0000
452 Subject: The problem with top-posting
453
454 Q: Why is top-posting such a bad thing?
455 A: Top-posting.
456 Q: What is the most annoying thing in e-mail?"'
457 test_emacs "(notmuch-show \"top-posting\")
458             (test-visible-output)"
459 echo "Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-05) (inbox)
460 Subject: The problem with top-posting
461 To: Notmuch Test Suite <test_suite@notmuchmail.org>
462 Date: Fri, 05 Jan 2001 15:43:57 +0000
463
464 A: Because it messes up the order in which people normally read text.
465 Q: Why is top-posting such a bad thing?
466 A: Top-posting.
467 Q: What is the most annoying thing in e-mail?
468 Top Poster <top@poster.com> (2001-01-05) (inbox unread)
469 Subject: Re: The problem with top-posting
470 To: Notmuch Test Suite <test_suite@notmuchmail.org>
471 Date: Fri, 05 Jan 2001 15:43:57 +0000
472
473 Thanks for the advice! I will be sure to put it to good use.
474
475 -Top Poster
476
477 [ 9-line hidden original message. Click/Enter to show. ]" > EXPECTED
478 test_expect_equal_file OUTPUT EXPECTED
479
480 test_begin_subtest "Hiding message in notmuch-show view"
481 test_emacs '(notmuch-show "id:f35dbb950911171438k5df6eb56k77b6c0944e2e79ae@mail.gmail.com")
482             (notmuch-show-toggle-message)
483             (test-visible-output)'
484 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-with-hidden-messages
485
486 test_begin_subtest "Hiding message with visible citation in notmuch-show view"
487 test_emacs '(notmuch-show "id:f35dbb950911171438k5df6eb56k77b6c0944e2e79ae@mail.gmail.com")
488             (search-forward "Click/Enter to show.")
489             (button-activate (button-at (point)))
490             (notmuch-show-toggle-message)
491             (test-visible-output)'
492 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-with-hidden-messages
493
494 test_begin_subtest "Stashing in notmuch-show"
495 add_message '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' \
496     '[from]="Some One <someone@somewhere.org>"' \
497     '[to]="Some One Else <notsomeone@somewhere.org>"' \
498     '[cc]="Notmuch <notmuch@notmuchmail.org>"' \
499     '[subject]="Stash my stashables"' \
500     '[id]="bought"' \
501     '[body]="Unable to stash body. Where did you get it in the first place?!?"'
502 notmuch tag +stashtest id:${gen_msg_id}
503 test_emacs '(notmuch-show "id:\"bought\"")
504         (notmuch-show-stash-date)
505         (notmuch-show-stash-from)
506         (notmuch-show-stash-to)
507         (notmuch-show-stash-cc)
508         (notmuch-show-stash-subject)
509         (notmuch-show-stash-message-id)
510         (notmuch-show-stash-message-id-stripped)
511         (notmuch-show-stash-tags)
512         (notmuch-show-stash-filename)
513         (notmuch-show-stash-mlarchive-link "Gmane")
514         (notmuch-show-stash-mlarchive-link "MARC")
515         (notmuch-show-stash-mlarchive-link "Mail Archive, The")
516         (switch-to-buffer
517           (generate-new-buffer "*test-stashing*"))
518         (dotimes (i 12)
519           (yank)
520           (insert "\n")
521           (rotate-yank-pointer 1))
522         (reverse-region (point-min) (point-max))
523             (test-output)'
524 cat <<EOF >EXPECTED
525 Sat, 01 Jan 2000 12:00:00 +0000
526 Some One <someone@somewhere.org>
527 Some One Else <notsomeone@somewhere.org>
528 Notmuch <notmuch@notmuchmail.org>
529 Stash my stashables
530 id:"bought"
531 bought
532 inbox,stashtest
533 ${gen_msg_filename}
534 http://mid.gmane.org/bought
535 http://marc.info/?i=bought
536 http://mail-archive.com/search?l=mid&q=bought
537 EOF
538 test_expect_equal_file OUTPUT EXPECTED
539
540 test_begin_subtest "Stashing in notmuch-search"
541 test_emacs '(notmuch-search "id:\"bought\"")
542         (notmuch-test-wait)
543         (notmuch-search-stash-thread-id)
544         (switch-to-buffer
545           (generate-new-buffer "*test-stashing*"))
546         (yank)
547             (test-output)'
548 sed -i -e 's/^thread:.*$/thread:XXX/' OUTPUT
549 test_expect_equal "$(cat OUTPUT)" "thread:XXX"
550
551 test_begin_subtest 'notmuch-show-advance-and-archive with invisible signature'
552 message1='id:20091118010116.GC25380@dottiness.seas.harvard.edu'
553 message2='id:1258491078-29658-1-git-send-email-dottedmag@dottedmag.net'
554 test_emacs "(notmuch-search \"$message1 or $message2\")
555             (notmuch-test-wait)
556             (notmuch-search-show-thread)
557             (goto-char (point-max))
558             (redisplay)
559             (notmuch-show-advance-and-archive)
560             (test-output)"
561 test_emacs "(notmuch-show \"$message2\")
562             (test-output \"EXPECTED\")"
563 test_expect_equal_file OUTPUT EXPECTED
564
565 test_begin_subtest "Refresh show buffer"
566 test_emacs '(notmuch-show "id:f35dbb950911171438k5df6eb56k77b6c0944e2e79ae@mail.gmail.com")
567             (test-visible-output "EXPECTED")
568             (notmuch-show-refresh-view)
569             (test-visible-output)'
570 test_expect_equal_file OUTPUT EXPECTED
571
572 test_begin_subtest "Refresh modified show buffer"
573 test_emacs '(notmuch-show "id:f35dbb950911171438k5df6eb56k77b6c0944e2e79ae@mail.gmail.com")
574             (notmuch-show-toggle-message)
575             (notmuch-show-next-message)
576             (notmuch-show-toggle-message)
577             (test-visible-output "EXPECTED")
578             (notmuch-show-refresh-view)
579             (test-visible-output)'
580 test_expect_equal_file OUTPUT EXPECTED
581
582 test_begin_subtest "Do not call notmuch for non-inlinable application/mpeg parts"
583 id='message-with-application/mpeg-attachment@notmuchmail.org'
584 emacs_deliver_message \
585     'Message with application/mpeg attachment' \
586     '' \
587     "(message-goto-eoh)
588      (insert \"Message-ID: <$id>\n\")
589      (message-goto-body)
590      (mml-insert-part \"application/mpeg\")
591      (insert \"a fake mp3 file\")"
592 notmuch_counter_reset
593 test_emacs "(let ((notmuch-command \"$notmuch_counter_command\"))
594               (notmuch-show \"id:$id\"))"
595 test_expect_equal $(notmuch_counter_value) 1
596
597 test_begin_subtest "Do not call notmuch for non-inlinable audio/mpeg parts"
598 id='message-with-audio/mpeg-attachment@notmuchmail.org'
599 emacs_deliver_message \
600     'Message with audio/mpeg attachment' \
601     '' \
602     "(message-goto-eoh)
603      (insert \"Message-ID: <$id>\n\")
604      (message-goto-body)
605      (mml-insert-part \"audio/mpeg\")
606      (insert \"a fake mp3 file\")"
607 notmuch_counter_reset
608 test_emacs "(let ((notmuch-command \"$notmuch_counter_command\"))
609               (notmuch-show \"id:$id\"))"
610 test_expect_equal $(notmuch_counter_value) 1
611
612 test_begin_subtest "notmuch-hello-mode hook is called"
613 counter=$(test_emacs \
614     '(let ((notmuch-hello-mode-hook-counter 0))
615        (kill-buffer "*notmuch-hello*")
616        (notmuch-hello)
617        notmuch-hello-mode-hook-counter)'
618 )
619 test_expect_equal "$counter" 1
620
621 test_begin_subtest "notmuch-hello-mode hook is not called on updates"
622 counter=$(test_emacs \
623     '(let ((notmuch-hello-mode-hook-counter 0))
624        (kill-buffer "*notmuch-hello*")
625        (notmuch-hello)
626        (notmuch-hello-update)
627        notmuch-hello-mode-hook-counter)'
628 )
629 test_expect_equal "$counter" 1
630
631 test_begin_subtest "notmuch-hello-refresh hook is called"
632 counter=$(test_emacs \
633     '(let ((notmuch-hello-refresh-hook-counter 0))
634        (kill-buffer "*notmuch-hello*")
635        (notmuch-hello)
636        notmuch-hello-refresh-hook-counter)'
637 )
638 test_expect_equal "$counter" 1
639
640 test_begin_subtest "notmuch-hello-refresh hook is called on updates"
641 counter=$(test_emacs \
642     '(let ((notmuch-hello-refresh-hook-counter 0))
643        (kill-buffer "*notmuch-hello*")
644        (notmuch-hello)
645        (notmuch-hello-update)
646        notmuch-hello-refresh-hook-counter)'
647 )
648 test_expect_equal "$counter" 2
649
650 test_done