3 test_description="emacs interface"
6 EXPECTED=$TEST_DIRECTORY/emacs.expected-output
10 # syntax errors in test-lib.el cause mysterious failures
11 test_expect_success 'Syntax of emacs test library' \
12 "${TEST_EMACS} -Q --batch --load $TEST_DIRECTORY/test-lib.el"
14 test_begin_subtest "Basic notmuch-hello view in emacs"
15 test_emacs '(notmuch-hello)
17 test_expect_equal_file OUTPUT $EXPECTED/notmuch-hello
19 test_begin_subtest "Saved search with 0 results"
20 test_emacs '(let ((notmuch-show-empty-saved-searches t)
21 (notmuch-saved-searches
22 '\''(("inbox" . "tag:inbox")
23 ("unread" . "tag:unread")
24 ("empty" . "tag:doesnotexist"))))
27 test_expect_equal_file OUTPUT $EXPECTED/notmuch-hello-with-empty
29 test_begin_subtest "No saved searches displayed (all with 0 results)"
30 test_emacs '(let ((notmuch-saved-searches
31 '\''(("empty" . "tag:doesnotexist"))))
34 test_expect_equal_file OUTPUT $EXPECTED/notmuch-hello-no-saved-searches
36 test_begin_subtest "Basic notmuch-search view in emacs"
37 test_emacs '(notmuch-search "tag:inbox")
40 test_expect_equal_file OUTPUT $EXPECTED/notmuch-search-tag-inbox
42 test_begin_subtest "Incremental parsing of search results"
43 test_emacs "(ad-enable-advice 'notmuch-search-process-filter 'around 'pessimal)
44 (ad-activate 'notmuch-search-process-filter)
45 (notmuch-search \"tag:inbox\")
47 (ad-disable-advice 'notmuch-search-process-filter 'around 'pessimal)
48 (ad-activate 'notmuch-search-process-filter)
50 test_expect_equal_file OUTPUT $EXPECTED/notmuch-search-tag-inbox
52 test_begin_subtest "Navigation of notmuch-hello to search results"
53 test_emacs '(notmuch-hello)
54 (goto-char (point-min))
55 (re-search-forward "inbox")
56 (widget-button-press (1- (point)))
59 test_expect_equal_file OUTPUT $EXPECTED/notmuch-hello-view-inbox
61 test_begin_subtest "Basic notmuch-show view in emacs"
62 maildir_storage_thread=$(notmuch search --output=threads id:20091117190054.GU3165@dottiness.seas.harvard.edu)
63 test_emacs "(notmuch-show \"$maildir_storage_thread\")
65 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-maildir-storage
67 test_begin_subtest "Basic notmuch-show view in emacs default 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 1))
70 (notmuch-show \"$maildir_storage_thread\")
72 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-maildir-storage
74 test_begin_subtest "Basic notmuch-show view in emacs without indentation"
75 maildir_storage_thread=$(notmuch search --output=threads id:20091117190054.GU3165@dottiness.seas.harvard.edu)
76 test_emacs "(let ((notmuch-show-indent-messages-width 0))
77 (notmuch-show \"$maildir_storage_thread\")
79 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-maildir-storage-without-indentation
81 test_begin_subtest "Basic notmuch-show view in emacs with fourfold indentation"
82 maildir_storage_thread=$(notmuch search --output=threads id:20091117190054.GU3165@dottiness.seas.harvard.edu)
83 test_emacs "(let ((notmuch-show-indent-messages-width 4))
84 (notmuch-show \"$maildir_storage_thread\")
86 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-maildir-storage-with-fourfold-indentation
88 test_begin_subtest "notmuch-show for message with invalid From"
89 add_message "[subject]=\"message-with-invalid-from\"" \
90 "[from]=\"\\\"Invalid \\\" From\\\" <test_suite@notmuchmail.org>\""
91 thread=$(notmuch search --output=threads subject:message-with-invalid-from)
92 test_emacs "(notmuch-show \"$thread\")
93 (test-output \"OUTPUT.raw\")"
95 "Invalid " (2001-01-05) (inbox)
96 Subject: message-with-invalid-from
97 To: Notmuch Test Suite <test_suite@notmuchmail.org>
100 This is just a test message (#1)
102 notmuch_date_sanitize < OUTPUT.raw > OUTPUT
103 test_expect_equal_file OUTPUT EXPECTED
105 test_begin_subtest "Navigation of notmuch-search to thread view"
106 test_emacs '(notmuch-search "tag:inbox")
108 (goto-char (point-min))
109 (re-search-forward "Working with Maildir")
110 (notmuch-search-show-thread)
113 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-maildir-storage
115 test_begin_subtest "Add tag from search view"
116 os_x_darwin_thread=$(notmuch search --output=threads id:ddd65cda0911171950o4eea4389v86de9525e46052d3@mail.gmail.com)
117 test_emacs "(notmuch-search \"$os_x_darwin_thread\")
119 (execute-kbd-macro \"+tag-from-search-view\")"
120 output=$(notmuch search $os_x_darwin_thread | notmuch_search_sanitize)
121 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)"
123 test_begin_subtest "Remove tag from search view"
124 test_emacs "(notmuch-search \"$os_x_darwin_thread\")
126 (execute-kbd-macro \"-tag-from-search-view\")"
127 output=$(notmuch search $os_x_darwin_thread | notmuch_search_sanitize)
128 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)"
130 test_begin_subtest "Add tag (large query)"
131 # We use a long query to force us into batch mode and use a funny tag
132 # that requires escaping for batch tagging.
133 test_emacs "(notmuch-tag (concat \"$os_x_darwin_thread\" \" or \" (make-string notmuch-tag-argument-limit ?x)) (list \"+tag-from-%-large-query\"))"
134 output=$(notmuch search $os_x_darwin_thread | notmuch_search_sanitize)
135 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-%-large-query unread)"
136 notmuch tag -tag-from-%-large-query $os_x_darwin_thread
138 test_begin_subtest "notmuch-show: add single tag to single message"
139 test_emacs "(notmuch-show \"$os_x_darwin_thread\")
140 (execute-kbd-macro \"+tag-from-show-view\")"
141 output=$(notmuch search $os_x_darwin_thread | notmuch_search_sanitize)
142 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)"
144 test_begin_subtest "notmuch-show: remove single tag from single message"
145 test_emacs "(notmuch-show \"$os_x_darwin_thread\")
146 (execute-kbd-macro \"-tag-from-show-view\")"
147 output=$(notmuch search $os_x_darwin_thread | notmuch_search_sanitize)
148 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)"
150 test_begin_subtest "notmuch-show: add multiple tags to single message"
151 test_emacs "(notmuch-show \"$os_x_darwin_thread\")
152 (execute-kbd-macro \"+tag1-from-show-view +tag2-from-show-view\")"
153 output=$(notmuch search $os_x_darwin_thread | notmuch_search_sanitize)
154 test_expect_equal "$output" "thread:XXX 2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox tag1-from-show-view tag2-from-show-view unread)"
156 test_begin_subtest "notmuch-show: remove multiple tags from single message"
157 test_emacs "(notmuch-show \"$os_x_darwin_thread\")
158 (execute-kbd-macro \"-tag1-from-show-view -tag2-from-show-view\")"
159 output=$(notmuch search $os_x_darwin_thread | notmuch_search_sanitize)
160 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)"
162 test_begin_subtest "Message with .. in Message-Id:"
163 add_message [id]=123..456@example '[subject]="Message with .. in Message-Id"'
164 test_emacs '(notmuch-search "id:\"123..456@example\"")
166 (execute-kbd-macro "+search-add")
167 (execute-kbd-macro "+search-remove")
168 (execute-kbd-macro "-search-remove")
169 (notmuch-show "id:\"123..456@example\"")
171 (execute-kbd-macro "+show-add")
172 (execute-kbd-macro "+show-remove")
173 (execute-kbd-macro "-show-remove")'
174 output=$(notmuch search 'id:"123..456@example"' | notmuch_search_sanitize)
175 test_expect_equal "$output" "thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Message with .. in Message-Id (inbox search-add show-add)"
177 test_begin_subtest "Message with quote in Message-Id:"
178 add_message '[id]="\"quote\"@example"' '[subject]="Message with quote in Message-Id"'
179 test_emacs '(notmuch-search "subject:\"Message with quote\"")
181 (execute-kbd-macro "+search-add")
182 (notmuch-search-show-thread)
184 (execute-kbd-macro "+show-add")'
185 output=$(notmuch search 'id:"""quote""@example"' | notmuch_search_sanitize)
186 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)"
188 test_begin_subtest "Sending a message via (fake) SMTP"
189 emacs_deliver_message \
190 'Testing message sent via SMTP' \
191 'This is a test that messages are sent via SMTP' \
194 (insert "To: user@example.com\n")'
196 -e s',^User-Agent: Notmuch/.* Emacs/.*,User-Agent: Notmuch/XXX Emacs/XXX,' \
197 -e s',^Message-ID: <.*>$,Message-ID: <XXX>,' \
198 -e s',^\(Content-Type: text/plain\); charset=us-ascii$,\1,' < sent_message >OUTPUT
200 From: Notmuch Test Suite <test_suite@notmuchmail.org>
202 Subject: Testing message sent via SMTP
203 Date: 01 Jan 2000 12:00:00 -0000
204 User-Agent: Notmuch/XXX Emacs/XXX
207 Content-Type: text/plain
209 This is a test that messages are sent via SMTP
211 test_expect_equal_file OUTPUT EXPECTED
213 test_begin_subtest "Verify that sent messages are saved/searchable (via FCC)"
214 notmuch new > /dev/null
215 output=$(notmuch search 'subject:"testing message sent via SMTP"' | notmuch_search_sanitize)
216 test_expect_equal "$output" "thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; Testing message sent via SMTP (inbox)"
218 test_begin_subtest "notmuch-fcc-dirs set to nil"
219 test_emacs "(let ((notmuch-fcc-dirs nil))
223 From: Notmuch Test Suite <test_suite@notmuchmail.org>
226 --text follows this line--
228 test_expect_equal_file OUTPUT EXPECTED
230 # Make another FCC maildir specific for the next test
231 mkdir -p mail/sent-string/cur
232 mkdir -p mail/sent-string/new
233 mkdir -p mail/sent-string/tmp
235 test_begin_subtest "notmuch-fcc-dirs set to a string"
236 test_emacs "(let ((notmuch-fcc-dirs \"sent-string\"))
240 From: Notmuch Test Suite <test_suite@notmuchmail.org>
243 Fcc: ${MAIL_DIR}/sent-string
244 --text follows this line--
246 test_expect_equal_file OUTPUT EXPECTED
248 # Make more FCC maildirs specific for the next test
249 mkdir -p mail/sent-list-match/cur
250 mkdir -p mail/sent-list-match/new
251 mkdir -p mail/sent-list-match/tmp
252 mkdir -p mail/failure/cur
253 mkdir -p mail/failure/new
254 mkdir -p mail/failure/tmp
256 test_begin_subtest "notmuch-fcc-dirs set to a list (with match)"
257 test_emacs "(let ((notmuch-fcc-dirs
258 '((\"notmuchmail.org\" . \"sent-list-match\")
259 (\".*\" . \"failure\"))))
263 From: Notmuch Test Suite <test_suite@notmuchmail.org>
266 Fcc: ${MAIL_DIR}/sent-list-match
267 --text follows this line--
269 test_expect_equal_file OUTPUT EXPECTED
271 # Make another FCC maildir specific for the next test
272 mkdir -p mail/sent-list-catch-all/cur
273 mkdir -p mail/sent-list-catch-all/new
274 mkdir -p mail/sent-list-catch-all/tmp
276 test_begin_subtest "notmuch-fcc-dirs set to a list (catch-all)"
277 test_emacs "(let ((notmuch-fcc-dirs
278 '((\"example.com\" . \"failure\")
279 (\".*\" . \"sent-list-catch-all\"))))
283 From: Notmuch Test Suite <test_suite@notmuchmail.org>
286 Fcc: ${MAIL_DIR}/sent-list-catch-all
287 --text follows this line--
289 test_expect_equal_file OUTPUT EXPECTED
291 test_begin_subtest "notmuch-fcc-dirs set to a list (no match)"
292 test_emacs "(let ((notmuch-fcc-dirs
293 '((\"example.com\" . \"failure\")
294 (\"nomatchhere.net\" . \"failure\"))))
298 From: Notmuch Test Suite <test_suite@notmuchmail.org>
301 --text follows this line--
303 test_expect_equal_file OUTPUT EXPECTED
305 test_begin_subtest "Reply within emacs"
306 test_emacs '(let ((message-hidden-headers ''()))
307 (notmuch-search "subject:\"testing message sent via SMTP\"")
309 (notmuch-search-reply-to-thread)
311 sed -i -e 's/^In-Reply-To: <.*>$/In-Reply-To: <XXX>/' OUTPUT
312 sed -i -e 's/^References: <.*>$/References: <XXX>/' OUTPUT
313 sed -i -e 's,^User-Agent: Notmuch/.* Emacs/.*,User-Agent: Notmuch/XXX Emacs/XXX,' OUTPUT
315 From: Notmuch Test Suite <test_suite@notmuchmail.org>
317 Subject: Re: Testing message sent via SMTP
319 Fcc: ${MAIL_DIR}/sent
321 User-Agent: Notmuch/XXX Emacs/XXX
322 --text follows this line--
323 Notmuch Test Suite <test_suite@notmuchmail.org> writes:
325 > This is a test that messages are sent via SMTP
327 test_expect_equal_file OUTPUT EXPECTED
329 test_begin_subtest "Reply from alternate address within emacs"
330 add_message '[from]="Sender <sender@example.com>"' \
331 [to]=test_suite_other@notmuchmail.org
333 test_emacs "(let ((message-hidden-headers '()))
334 (notmuch-search \"id:\\\"${gen_msg_id}\\\"\")
336 (notmuch-search-reply-to-thread)
338 sed -i -e 's,^User-Agent: Notmuch/.* Emacs/.*,User-Agent: Notmuch/XXX Emacs/XXX,' OUTPUT
340 From: Notmuch Test Suite <test_suite_other@notmuchmail.org>
341 To: Sender <sender@example.com>
342 Subject: Re: ${test_subtest_name}
343 In-Reply-To: <${gen_msg_id}>
344 Fcc: ${MAIL_DIR}/sent
345 References: <${gen_msg_id}>
346 User-Agent: Notmuch/XXX Emacs/XXX
347 --text follows this line--
348 Sender <sender@example.com> writes:
350 > This is just a test message (#${gen_msg_cnt})
352 test_expect_equal_file OUTPUT EXPECTED
354 test_begin_subtest "Reply from address in named group list within emacs"
355 add_message '[from]="Sender <sender@example.com>"' \
356 '[to]=group:test_suite@notmuchmail.org,someone@example.com\;' \
357 [cc]=test_suite_other@notmuchmail.org
359 test_emacs "(let ((message-hidden-headers '()))
360 (notmuch-search \"id:\\\"${gen_msg_id}\\\"\")
362 (notmuch-search-reply-to-thread)
364 sed -i -e 's,^User-Agent: Notmuch/.* Emacs/.*,User-Agent: Notmuch/XXX Emacs/XXX,' OUTPUT
366 From: Notmuch Test Suite <test_suite@notmuchmail.org>
367 To: Sender <sender@example.com>, someone@example.com
368 Subject: Re: ${test_subtest_name}
369 In-Reply-To: <${gen_msg_id}>
370 Fcc: ${MAIL_DIR}/sent
371 References: <${gen_msg_id}>
372 User-Agent: Notmuch/XXX Emacs/XXX
373 --text follows this line--
374 Sender <sender@example.com> writes:
376 > This is just a test message (#${gen_msg_cnt})
378 test_expect_equal_file OUTPUT EXPECTED
380 test_begin_subtest "Reply within emacs to a multipart/mixed message"
381 test_emacs '(let ((message-hidden-headers ''()))
382 (notmuch-show "id:20091118002059.067214ed@hikari")
385 sed -i -e 's,^User-Agent: Notmuch/.* Emacs/.*,User-Agent: Notmuch/XXX Emacs/XXX,' OUTPUT
387 From: Notmuch Test Suite <test_suite@notmuchmail.org>
388 To: Adrian Perez de Castro <aperez@igalia.com>, notmuch@notmuchmail.org
389 Subject: Re: [notmuch] Introducing myself
390 In-Reply-To: <20091118002059.067214ed@hikari>
391 Fcc: ${MAIL_DIR}/sent
392 References: <20091118002059.067214ed@hikari>
393 User-Agent: Notmuch/XXX Emacs/XXX
394 --text follows this line--
395 Adrian Perez de Castro <aperez@igalia.com> writes:
399 > I have just heard about Not Much today in some random Linux-related news
400 > site (LWN?), my name is Adrian Perez and I work as systems administrator
401 > (although I can do some code as well :P). I have always thought that the
402 > ideas behind Sup were great, but after some time using it, I got tired of
403 > the oddities that it has. I also do not like doing things like having to
404 > install Ruby just for reading and sorting mails. Some time ago I thought
405 > about doing something like Not Much and in fact I played a bit with the
406 > Python+Xapian and the Python+Whoosh combinations, because I find relaxing
407 > to code things in Python when I am not working and also it is installed
408 > by default on most distribution. I got to have some mailboxes indexed and
409 > basic searching working a couple of months ago. Lately I have been very
410 > busy and had no time for coding, and them... boom! Not Much appears -- and
411 > it is almost exactly what I was trying to do, but faster. I have been
412 > playing a bit with Not Much today, and I think it has potential.
414 > Also, I would like to share one idea I had in mind, that you might find
415 > interesting: One thing I have found very annoying is having to re-tag my
416 > mail when the indexes get b0rked (it happened a couple of times to me while
417 > using Sup), so I was planning to mails as read/unread and adding the tags
418 > not just to the index, but to the mail text itself, e.g. by adding a
419 > "X-Tags" header field or by reusing the "Keywords" one. This way, the index
420 > could be totally recreated by re-reading the mail directories, and this
421 > would also allow to a tools like OfflineIMAP [1] to get the mails into a
422 > local maildir, tagging and indexing the mails with the e-mail reader and
423 > then syncing back the messages with the "X-Tags" header to the IMAP server.
424 > This would allow to use the mail reader from a different computer and still
425 > have everything tagged finely.
431 > [1] http://software.complete.org/software/projects/show/offlineimap
434 > Adrian Perez de Castro <aperez@igalia.com>
435 > Igalia - Free Software Engineering
436 > _______________________________________________
437 > notmuch mailing list
438 > notmuch@notmuchmail.org
439 > http://notmuchmail.org/mailman/listinfo/notmuch
441 test_expect_equal_file OUTPUT EXPECTED
443 test_begin_subtest "Reply within emacs to a multipart/alternative message"
444 test_emacs '(let ((message-hidden-headers ''()))
445 (notmuch-show "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com")
448 sed -i -e 's,^User-Agent: Notmuch/.* Emacs/.*,User-Agent: Notmuch/XXX Emacs/XXX,' OUTPUT
450 From: Notmuch Test Suite <test_suite@notmuchmail.org>
451 To: Alex Botero-Lowry <alex.boterolowry@gmail.com>, notmuch@notmuchmail.org
452 Subject: Re: [notmuch] preliminary FreeBSD support
453 In-Reply-To: <cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com>
454 Fcc: ${MAIL_DIR}/sent
455 References: <cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com>
456 User-Agent: Notmuch/XXX Emacs/XXX
457 --text follows this line--
458 Alex Botero-Lowry <alex.boterolowry@gmail.com> writes:
460 > I saw the announcement this morning, and was very excited, as I had been
461 > hoping sup would be turned into a library,
462 > since I like the concept more than the UI (I'd rather an emacs interface).
464 > I did a preliminary compile which worked out fine, but
465 > sysconf(_SC_SC_GETPW_R_SIZE_MAX) returns -1 on
466 > FreeBSD, so notmuch_config_open segfaulted.
468 > Attached is a patch that supplies a default buffer size of 64 in cases where
471 > http://www.opengroup.org/austin/docs/austin_328.txt - seems to indicate this
472 > is acceptable behavior,
473 > and http://mail-index.netbsd.org/pkgsrc-bugs/2006/06/07/msg016808.htmlspecifically
476 > _______________________________________________
477 > notmuch mailing list
478 > notmuch@notmuchmail.org
479 > http://notmuchmail.org/mailman/listinfo/notmuch
481 test_expect_equal_file OUTPUT EXPECTED
483 test_begin_subtest "Reply within emacs to an html-only message"
484 add_message '[content-type]="text/html"' \
485 '[body]="Hi,<br />This is an <b>HTML</b> test message.<br /><br />OK?"'
486 test_emacs "(let ((message-hidden-headers '()))
487 (notmuch-show \"id:${gen_msg_id}\")
490 sed -i -e 's,^User-Agent: Notmuch/.* Emacs/.*,User-Agent: Notmuch/XXX Emacs/XXX,' OUTPUT
492 From: Notmuch Test Suite <test_suite@notmuchmail.org>
494 Subject: Re: Reply within emacs to an html-only message
495 In-Reply-To: <${gen_msg_id}>
496 Fcc: ${MAIL_DIR}/sent
497 References: <${gen_msg_id}>
498 User-Agent: Notmuch/XXX Emacs/XXX
499 --text follows this line--
500 Notmuch Test Suite <test_suite@notmuchmail.org> writes:
502 > Hi,This is an HTML test message.OK?
504 test_expect_equal_file OUTPUT EXPECTED
506 test_begin_subtest "Quote MML tags in reply"
507 message_id='test-emacs-mml-quoting@message.id'
508 add_message [id]="$message_id" \
509 "[subject]='$test_subtest_name'" \
510 '[body]="<#part disposition=inline>"'
511 test_emacs "(let ((message-hidden-headers '()))
512 (notmuch-show \"id:$message_id\")
515 sed -i -e 's,^User-Agent: Notmuch/.* Emacs/.*,User-Agent: Notmuch/XXX Emacs/XXX,' OUTPUT
517 From: Notmuch Test Suite <test_suite@notmuchmail.org>
519 Subject: Re: Quote MML tags in reply
520 In-Reply-To: <test-emacs-mml-quoting@message.id>
521 Fcc: ${MAIL_DIR}/sent
522 References: <test-emacs-mml-quoting@message.id>
523 User-Agent: Notmuch/XXX Emacs/XXX
524 --text follows this line--
525 Notmuch Test Suite <test_suite@notmuchmail.org> writes:
527 > <#!part disposition=inline>
529 test_expect_equal_file OUTPUT EXPECTED
531 test_begin_subtest "Save attachment from within emacs using notmuch-show-save-attachments"
532 # save as archive to test that Emacs does not re-compress .gz
533 test_emacs '(let ((standard-input "\"attachment1.gz\""))
534 (notmuch-show "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com")
535 (notmuch-show-save-attachments))'
536 test_expect_equal_file attachment1.gz "$EXPECTED/attachment"
538 test_begin_subtest "Save attachment from within emacs using notmuch-show-save-part"
539 # save as archive to test that Emacs does not re-compress .gz
540 test_emacs '(let ((standard-input "\"attachment2.gz\""))
541 (notmuch-show "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com")
542 (search-forward "0001-Deal-with")
543 (notmuch-show-save-part))'
544 test_expect_equal_file attachment2.gz "$EXPECTED/attachment"
546 test_begin_subtest "Save 8bit attachment from within emacs using notmuch-show-save-attachments"
548 add_message '[subject]="Attachment with 8bit chars"' \
549 '[header]="MIME-Version: 1.0"' \
550 '[content-type]="multipart/mixed; boundary=\"abcd\""' \
552 Content-Type: text/plain
557 Content-Type: application/octet-stream; name=\"sample\"
558 Content-Transfer-Encoding: 8bit
559 Content-Disposition: attachment; filename=\"sample\"
561 “¡ Hey ! It compiles ¡ Ship it !”
565 test_emacs '(notmuch-show "id:'"${gen_msg_id}"'")
566 (delete-file "OUTPUT")
567 (let ((standard-input "\"OUTPUT\""))
568 (notmuch-show-save-attachments))'
570 test_expect_equal "$(cat OUTPUT)" '“¡ Hey ! It compiles ¡ Ship it !”'
572 test_begin_subtest "View raw message within emacs"
573 test_emacs '(notmuch-show "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com")
574 (notmuch-show-view-raw-message)
576 test_expect_equal_file OUTPUT $EXPECTED/raw-message-cf0c4d-52ad0a
578 test_begin_subtest "Hiding/showing signature in notmuch-show view"
579 maildir_storage_thread=$(notmuch search --output=threads id:20091117190054.GU3165@dottiness.seas.harvard.edu)
580 test_emacs "(notmuch-show \"$maildir_storage_thread\")
581 (search-forward \"Click/Enter to show.\")
582 (button-activate (button-at (point)))
583 (search-backward \"Click/Enter to hide.\")
584 (button-activate (button-at (point)))
586 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-maildir-storage
588 test_begin_subtest "Detection and hiding of top-post quoting of message"
589 add_message '[subject]="The problem with top-posting"' \
590 [id]=top-post-target \
591 '[body]="A: Because it messes up the order in which people normally read text.
592 Q: Why is top-posting such a bad thing?
594 Q: What is the most annoying thing in e-mail?"'
595 add_message '[from]="Top Poster <top@poster.com>"' \
596 [in-reply-to]=top-post-target \
597 [references]=top-post-target \
598 '[subject]="Re: The problem with top-posting"' \
599 '[body]="Thanks for the advice! I will be sure to put it to good use.
603 ----- Original Message -----
604 From: Notmuch Test Suite <test_suite@notmuchmail.org>
605 To: Notmuch Test Suite <test_suite@notmuchmai.org>
606 Sent: Fri, 05 Jan 2001 15:43:57 +0000
607 Subject: The problem with top-posting
609 Q: Why is top-posting such a bad thing?
611 Q: What is the most annoying thing in e-mail?"'
612 test_emacs "(notmuch-show \"top-posting\")
613 (test-visible-output \"OUTPUT.raw\")"
614 echo "Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-05) (inbox)
615 Subject: The problem with top-posting
616 To: Notmuch Test Suite <test_suite@notmuchmail.org>
619 A: Because it messes up the order in which people normally read text.
620 Q: Why is top-posting such a bad thing?
622 Q: What is the most annoying thing in e-mail?
623 Top Poster <top@poster.com> (2001-01-05) (inbox unread)
624 Subject: Re: The problem with top-posting
625 To: Notmuch Test Suite <test_suite@notmuchmail.org>
628 Thanks for the advice! I will be sure to put it to good use.
632 [ 9-line hidden original message. Click/Enter to show. ]" > EXPECTED
633 notmuch_date_sanitize < OUTPUT.raw > OUTPUT
634 test_expect_equal_file OUTPUT EXPECTED
636 test_begin_subtest "Hiding message in notmuch-show view"
637 test_emacs '(notmuch-show "id:f35dbb950911171438k5df6eb56k77b6c0944e2e79ae@mail.gmail.com")
638 (notmuch-show-toggle-message)
639 (test-visible-output)'
640 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-with-hidden-messages
642 test_begin_subtest "Hiding message with visible citation in notmuch-show view"
643 test_emacs '(notmuch-show "id:f35dbb950911171438k5df6eb56k77b6c0944e2e79ae@mail.gmail.com")
644 (search-forward "Click/Enter to show.")
645 (button-activate (button-at (point)))
646 (notmuch-show-toggle-message)
647 (test-visible-output)'
648 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-with-hidden-messages
650 test_begin_subtest "notmuch-show: show message headers"
652 '(let ((notmuch-message-headers '\''("Subject" "To" "Cc" "Date"))
653 (notmuch-message-headers-visible t))
654 (notmuch-show "id:f35dbb950911171438k5df6eb56k77b6c0944e2e79ae@mail.gmail.com")
655 (test-visible-output))'
656 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-message-with-headers-visible
658 test_begin_subtest "notmuch-show: hide message headers"
660 '(let ((notmuch-message-headers '\''("Subject" "To" "Cc" "Date"))
661 (notmuch-message-headers-visible nil))
662 (notmuch-show "id:f35dbb950911171438k5df6eb56k77b6c0944e2e79ae@mail.gmail.com")
663 (test-visible-output))'
664 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-message-with-headers-hidden
666 test_begin_subtest "notmuch-show: hide message headers (w/ notmuch-show-toggle-visibility-headers)"
668 '(let ((notmuch-message-headers '\''("Subject" "To" "Cc" "Date"))
669 (notmuch-message-headers-visible t))
670 (notmuch-show "id:f35dbb950911171438k5df6eb56k77b6c0944e2e79ae@mail.gmail.com")
671 (notmuch-show-toggle-visibility-headers)
672 (test-visible-output))'
673 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-message-with-headers-hidden
675 test_begin_subtest "notmuch-show: collapse all messages in thread"
676 test_emacs '(notmuch-show "id:f35dbb950911171435ieecd458o853c873e35f4be95@mail.gmail.com")
677 (let ((current-prefix-arg t))
678 (notmuch-show-open-or-close-all)
679 (test-visible-output))'
680 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-with-all-messages-collapsed
682 test_begin_subtest "notmuch-show: uncollapse all messages in thread"
683 test_emacs '(notmuch-show "id:f35dbb950911171435ieecd458o853c873e35f4be95@mail.gmail.com")
684 (notmuch-show-open-or-close-all)
685 (test-visible-output)'
686 test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-with-all-messages-uncollapsed
688 test_begin_subtest "Stashing in notmuch-show"
689 add_message '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' \
690 '[from]="Some One <someone@somewhere.org>"' \
691 '[to]="Some One Else <notsomeone@somewhere.org>"' \
692 '[cc]="Notmuch <notmuch@notmuchmail.org>"' \
693 '[subject]="Stash my stashables"' \
695 '[body]="Unable to stash body. Where did you get it in the first place?!?"'
696 notmuch tag +stashtest id:${gen_msg_id}
697 test_emacs '(notmuch-show "id:\"bought\"")
698 (notmuch-show-stash-date)
699 (notmuch-show-stash-from)
700 (notmuch-show-stash-to)
701 (notmuch-show-stash-cc)
702 (notmuch-show-stash-subject)
703 (notmuch-show-stash-message-id)
704 (notmuch-show-stash-message-id-stripped)
705 (notmuch-show-stash-tags)
706 (notmuch-show-stash-filename)
707 (notmuch-show-stash-mlarchive-link "Gmane")
708 (notmuch-show-stash-mlarchive-link "MARC")
709 (notmuch-show-stash-mlarchive-link "Mail Archive, The")
711 (generate-new-buffer "*test-stashing*"))
715 (rotate-yank-pointer 1))
716 (reverse-region (point-min) (point-max))
719 Sat, 01 Jan 2000 12:00:00 +0000
720 Some One <someone@somewhere.org>
721 Some One Else <notsomeone@somewhere.org>
722 Notmuch <notmuch@notmuchmail.org>
728 http://mid.gmane.org/bought
729 http://marc.info/?i=bought
730 http://mid.mail-archive.com/bought
732 test_expect_equal_file OUTPUT EXPECTED
734 test_begin_subtest "Stashing in notmuch-search"
735 test_emacs '(notmuch-search "id:\"bought\"")
737 (notmuch-search-stash-thread-id)
739 (generate-new-buffer "*test-stashing*"))
742 sed -i -e 's/^thread:.*$/thread:XXX/' OUTPUT
743 test_expect_equal "$(cat OUTPUT)" "thread:XXX"
745 test_begin_subtest 'notmuch-show-advance-and-archive with invisible signature'
746 message1='id:20091118010116.GC25380@dottiness.seas.harvard.edu'
747 message2='id:1258491078-29658-1-git-send-email-dottedmag@dottedmag.net'
748 test_emacs "(notmuch-show \"$message2\")
749 (test-output \"EXPECTED\")"
750 test_emacs "(notmuch-search \"$message1 or $message2\")
752 (notmuch-search-show-thread)
753 (goto-char (point-max))
755 (notmuch-show-advance-and-archive)
757 test_expect_equal_file OUTPUT EXPECTED
759 test_begin_subtest "Refresh show buffer"
760 test_emacs '(notmuch-show "id:f35dbb950911171438k5df6eb56k77b6c0944e2e79ae@mail.gmail.com")
761 (test-visible-output "EXPECTED")
762 (notmuch-show-refresh-view)
763 (test-visible-output)'
764 test_expect_equal_file OUTPUT EXPECTED
766 test_begin_subtest "Refresh modified show buffer"
767 test_emacs '(notmuch-show "id:f35dbb950911171438k5df6eb56k77b6c0944e2e79ae@mail.gmail.com")
768 (notmuch-show-toggle-message)
769 (notmuch-show-next-message)
770 (notmuch-show-toggle-message)
771 (test-visible-output "EXPECTED")
772 (notmuch-show-refresh-view)
773 (test-visible-output)'
774 test_expect_equal_file OUTPUT EXPECTED
776 test_begin_subtest "Do not call notmuch for non-inlinable application/mpeg parts"
777 id='message-with-application/mpeg-attachment@notmuchmail.org'
779 'Message with application/mpeg attachment' \
782 (insert \"Message-ID: <$id>\n\")
784 (mml-insert-part \"application/mpeg\")
785 (insert \"a fake mp3 file\")"
786 notmuch_counter_reset
787 test_emacs "(let ((notmuch-command \"$notmuch_counter_command\"))
788 (notmuch-show \"id:$id\"))"
789 test_expect_equal $(notmuch_counter_value) 1
791 test_begin_subtest "Do not call notmuch for non-inlinable audio/mpeg parts"
792 id='message-with-audio/mpeg-attachment@notmuchmail.org'
794 'Message with audio/mpeg attachment' \
797 (insert \"Message-ID: <$id>\n\")
799 (mml-insert-part \"audio/mpeg\")
800 (insert \"a fake mp3 file\")"
801 notmuch_counter_reset
802 test_emacs "(let ((notmuch-command \"$notmuch_counter_command\"))
803 (notmuch-show \"id:$id\"))"
804 test_expect_equal $(notmuch_counter_value) 1
806 test_begin_subtest "notmuch-hello-mode hook is called"
807 counter=$(test_emacs \
808 '(let ((notmuch-hello-mode-hook-counter 0))
809 (kill-buffer "*notmuch-hello*")
811 notmuch-hello-mode-hook-counter)'
813 test_expect_equal "$counter" 1
815 test_begin_subtest "notmuch-hello-mode hook is not called on updates"
816 counter=$(test_emacs \
817 '(let ((notmuch-hello-mode-hook-counter 0))
818 (kill-buffer "*notmuch-hello*")
820 (notmuch-hello-update)
821 notmuch-hello-mode-hook-counter)'
823 test_expect_equal "$counter" 1
825 test_begin_subtest "notmuch-hello-refresh hook is called"
826 counter=$(test_emacs \
827 '(let ((notmuch-hello-refresh-hook-counter 0))
828 (kill-buffer "*notmuch-hello*")
830 notmuch-hello-refresh-hook-counter)'
832 test_expect_equal "$counter" 1
834 test_begin_subtest "notmuch-hello-refresh hook is called on updates"
835 counter=$(test_emacs \
836 '(let ((notmuch-hello-refresh-hook-counter 0))
837 (kill-buffer "*notmuch-hello*")
839 (notmuch-hello-update)
840 notmuch-hello-refresh-hook-counter)'
842 test_expect_equal "$counter" 2
845 add_message '[subject]="HTML mail with images"' \
846 '[content-type]="multipart/related; boundary=abcd"' \
848 Content-Type: text/html
850 <img src="cid:330@goomoji.gmail"> smiley
853 Content-Type: image/gif
854 Content-Transfer-Encoding: base64
855 Content-ID: <330@goomoji.gmail>
857 R0lGODlhDAAMAKIFAF5LAP/zxAAAANyuAP/gaP///wAAAAAAACH5BAEAAAUALAAAAAAMAAwAAAMl
858 WLPcGjDKFYi9lxKBOaGcF35DhWHamZUW0K4mAbiwWtuf0uxFAgA7
860 test_emacs "(let ((mm-text-html-renderer
861 (if (assq 'shr mm-text-html-renderer-alist)
863 (notmuch-show \"id:${gen_msg_id}\"))
864 (test-output)" > /dev/null
865 # Different Emacs versions and renderers give very different results,
866 # so just check that something reasonable showed up. We first cat the
867 # output so the test framework will print it if the test fails.
868 test_expect_success "Rendering HTML mail with images" \
869 'cat OUTPUT && grep -q smiley OUTPUT'
872 test_begin_subtest "Search handles subprocess error exit codes"
873 cat > notmuch_fail <<EOF
878 chmod a+x notmuch_fail
879 test_emacs "(let ((notmuch-command \"$PWD/notmuch_fail\"))
880 (with-current-buffer \"*Messages*\"
881 (let ((inhibit-read-only t)) (erase-buffer)))
882 (with-current-buffer (get-buffer-create \"*Notmuch errors*\")
884 (notmuch-search \"tag:inbox\")
886 (with-current-buffer \"*Messages*\"
887 (test-output \"MESSAGES\"))
888 (with-current-buffer \"*Notmuch errors*\"
889 (test-output \"ERROR\"))
892 test_expect_equal "$(notmuch_emacs_error_sanitize notmuch_fail OUTPUT MESSAGES ERROR)" "\
894 End of search results.
896 YYY/notmuch_fail exited with status 1 (see *Notmuch errors* for more details)
899 YYY/notmuch_fail exited with status 1
900 command: YYY/notmuch_fail search --format\=sexp --format-version\=2 --sort\=newest-first tag\:inbox
903 test_begin_subtest "Search handles subprocess warnings"
904 cat > notmuch_fail <<EOF
907 echo This is a warning >&2
908 echo This is another warning >&2
911 chmod a+x notmuch_fail
912 test_emacs "(let ((notmuch-command \"$PWD/notmuch_fail\"))
913 (with-current-buffer \"*Messages*\"
914 (let ((inhibit-read-only t)) (erase-buffer)))
915 (with-current-buffer (get-buffer-create \"*Notmuch errors*\")
917 (notmuch-search \"tag:inbox\")
919 (with-current-buffer \"*Messages*\"
920 (test-output \"MESSAGES\"))
921 (with-current-buffer \"*Notmuch errors*\"
922 (test-output \"ERROR\"))
924 sed -i -e 's/^\[.*\]$/[XXX]/' ERROR
925 test_expect_equal "$(cat OUTPUT; echo ---; cat MESSAGES; echo ---; cat ERROR)" "\
926 End of search results.
928 This is a warning (see *Notmuch errors* for more details)
932 This is another warning"
934 test_begin_subtest "Search thread tag operations are race-free"
935 add_message '[subject]="Search race test"'
936 gen_msg_id_1=$gen_msg_id
937 generate_message '[in-reply-to]="<'$gen_msg_id_1'>"' \
938 '[references]="<'$gen_msg_id_1'>"' \
939 '[subject]="Search race test two"'
940 test_emacs '(notmuch-search "subject:\"search race test\"")
943 (execute-kbd-macro "+search-thread-race-tag")'
944 output=$(notmuch search --output=messages 'tag:search-thread-race-tag')
945 test_expect_equal "$output" "id:$gen_msg_id_1"
947 test_begin_subtest "Search global tag operations are race-free"
948 generate_message '[in-reply-to]="<'$gen_msg_id_1'>"' \
949 '[references]="<'$gen_msg_id_1'>"' \
950 '[subject]="Re: Search race test"'
951 test_emacs '(notmuch-search "subject:\"search race test\" -subject:two")
954 (execute-kbd-macro "*+search-global-race-tag")'
955 output=$(notmuch search --output=messages 'tag:search-global-race-tag')
956 test_expect_equal "$output" "id:$gen_msg_id_1"
958 test_begin_subtest "Term escaping"
959 output=$(test_emacs "(mapcar 'notmuch-escape-boolean-term (list
961 \"abc\`~\!@#\$%^&*-=_+123\"
966 \"\\x201cxyz\\x201d\"))")
967 test_expect_equal "$output" '("\"\"" "abc`~!@#$%^&*-=_+123" "\"(abc\"" "\")abc\"" "\"\"\"abc\"" "\"'$'\x01''xyz\"" "\"“xyz”\"")'