]> git.notmuchmail.org Git - notmuch/blob - test/emacs
TODO: Note idea for a new "notmuch compose"
[notmuch] / test / emacs
1 #!/bin/bash
2 test_description="emacs interface"
3 . test-lib.sh
4
5 EXPECTED=../emacs.expected-output
6
7 add_email_corpus
8
9 test_begin_subtest "Basic notmuch-hello view in emacs"
10 output=$(test_emacs '(notmuch-hello) (message (buffer-string))' 2>&1)
11 expected=$(cat $EXPECTED/notmuch-hello)
12 test_expect_equal "$output" "$expected"
13
14 test_begin_subtest "Basic notmuch-search view in emacs"
15 output=$(test_emacs '(notmuch-search "tag:inbox") (notmuch-test-wait) (message (buffer-string))' 2>&1)
16 expected=$(cat $EXPECTED/notmuch-search-tag-inbox)
17 test_expect_equal "$output" "$expected"
18
19 test_begin_subtest "Navigation of notmuch-hello to search results
20         [XXX: Need to decide the correct order of the search results]"
21 output=$(test_emacs '(notmuch-hello) (goto-char (point-min)) (re-search-forward "inbox") (widget-button-press (point)) (notmuch-test-wait) (message (buffer-string))' 2>&1)
22 test_expect_equal_failure "$output" "$expected"
23
24 test_begin_subtest "Basic notmuch-show view in emacs"
25 output=$(test_emacs '(notmuch-show "thread:0000000000000009") (message (buffer-string))' 2>&1)
26 expected=$(cat $EXPECTED/notmuch-show-thread-9)
27 test_expect_equal "$output" "$expected"
28
29 test_begin_subtest "Navigation of notmuch-search to thread view"
30 output=$(test_emacs '(notmuch-search "tag:inbox") (notmuch-test-wait) (goto-char (point-min)) (re-search-forward "Working with Maildir") (notmuch-search-show-thread) (notmuch-test-wait) (message (buffer-string))' 2>&1)
31 test_expect_equal "$output" "$expected"
32
33 test_begin_subtest "Add tag from search view"
34 test_emacs '(notmuch-search "thread:0000000000000001") (notmuch-test-wait) (notmuch-search-add-tag "tag-from-search-view")'
35 output=$(notmuch search thread:0000000000000001)
36 test_expect_equal "$output" "thread:0000000000000001   2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox tag-from-search-view unread)"
37
38 test_begin_subtest "Remove tag from search view"
39 test_emacs '(notmuch-search "thread:0000000000000001") (notmuch-test-wait) (notmuch-search-remove-tag "tag-from-search-view")'
40 output=$(notmuch search thread:0000000000000001)
41 test_expect_equal "$output" "thread:0000000000000001   2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox unread)"
42
43 test_begin_subtest "Add tag from notmuch-show view"
44 test_emacs '(notmuch-show "thread:0000000000000001") (notmuch-show-add-tag "tag-from-show-view")'
45 output=$(notmuch search thread:0000000000000001)
46 test_expect_equal "$output" "thread:0000000000000001   2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox tag-from-show-view unread)"
47
48 test_begin_subtest "Remove tag from notmuch-show view"
49 test_emacs '(notmuch-show "thread:0000000000000001") (notmuch-show-remove-tag "tag-from-show-view")'
50 output=$(notmuch search thread:0000000000000001)
51 test_expect_equal "$output" "thread:0000000000000001   2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox unread)"
52
53 test_begin_subtest "Message with .. in Message-Id:"
54 add_message [id]=123..456@example '[subject]="Message with .. in Message-Id"'
55 test_emacs '(notmuch-search "id:\"123..456@example\"") (notmuch-test-wait) (notmuch-search-add-tag "search-add") (notmuch-search-add-tag "search-remove") (notmuch-search-remove-tag "search-remove") (notmuch-show "id:\"123..456@example\"") (notmuch-test-wait) (notmuch-show-add-tag "show-add") (notmuch-show-add-tag "show-remove") (notmuch-show-remove-tag "show-remove")'
56 output=$(notmuch search 'id:"123..456@example"' | notmuch_search_sanitize)
57 test_expect_equal "$output" "thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Message with .. in Message-Id (inbox search-add show-add)"
58
59 test_begin_subtest "Sending a message via (fake) SMTP"
60 ../smtp-dummy sent_message &
61 smtp_dummy_pid=$!
62 test_emacs "(setq message-send-mail-function 'message-smtpmail-send-it) (setq smtpmail-smtp-server \"localhost\") (setq smtpmail-smtp-service \"25025\") (notmuch-hello) (notmuch-mua-mail) (message-goto-to) (insert \"user@example.com\") (message-goto-subject) (insert \"Testing message sent via SMTP\") (message-goto-body) (insert \"This is a test that messages are sent via SMTP\") (message-send-and-exit)" >/dev/null 2>&1
63 wait ${smtp_dummy_pid}
64
65 # XXX: Masking away the User-Agent, Date, and Message-ID makes sense,
66 # since these fields are inherently unpredictable. But doing the same
67 # thing with the From address is cheating. What should really be
68 # happening here is that the emacs interface should be using something
69 # like "notmuch compose" to construct the initial message and it
70 # should be getting the user's name and email address from the notmuch
71 # configuration file.
72
73 output=$(sed -e 's,^From: .*,From: XXX,' \
74     -e s',^User-Agent: Notmuch/.* Emacs/.*,User-Agent: Notmuch/XXX Emacs/XXX,' \
75     -e s',^Date:.*,Date: XXX,' \
76     -e s',^Message-ID: <.*>$,Message-ID: <XXX>,' < sent_message)
77 test_expect_equal "$output" "From: XXX
78 To: user@example.com
79 Subject: Testing message sent via SMTP
80 User-Agent: Notmuch/XXX Emacs/XXX
81 Date: XXX
82 Message-ID: <XXX>
83 MIME-Version: 1.0
84 Content-Type: text/plain; charset=us-ascii
85
86 This is a test that messages are sent via SMTP"
87
88 test_done