]> git.notmuchmail.org Git - notmuch/blob - test/emacs
test: Add test for fully-roundtripped FCC
[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
61 # Before we can send a message, we have to prepare the FCC maildir
62 mkdir -p mail/sent/cur
63 mkdir -p mail/sent/new
64 mkdir -p mail/sent/tmp
65
66 ../smtp-dummy sent_message &
67 smtp_dummy_pid=$!
68 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\nDate: Fri, 29 Mar 1974 10:00:00 -0000\") (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
69 wait ${smtp_dummy_pid}
70
71 output=$(sed \
72     -e s',^User-Agent: Notmuch/.* Emacs/.*,User-Agent: Notmuch/XXX Emacs/XXX,' \
73     -e s',^Message-ID: <.*>$,Message-ID: <XXX>,' < sent_message)
74 test_expect_equal "$output" "From: Notmuch Test Suite <test_suite@notmuchmail.org>
75 To: user@example.com
76 Subject: Testing message sent via SMTP
77 Date: Fri, 29 Mar 1974 10:00:00 -0000
78 User-Agent: Notmuch/XXX Emacs/XXX
79 Message-ID: <XXX>
80 MIME-Version: 1.0
81 Content-Type: text/plain; charset=us-ascii
82
83 This is a test that messages are sent via SMTP"
84
85 test_begin_subtest "Verify that sent messages are saved/searchable (via FCC)"
86 notmuch new > /dev/null
87 output=$(notmuch search 'subject:"testing message sent via SMTP"' | notmuch_search_sanitize)
88 test_expect_equal "$output" "thread:XXX   1974-03-29 [1/1] Notmuch Test Suite; Testing message sent via SMTP (inbox unread)"
89
90 test_done