]> git.notmuchmail.org Git - notmuch/blob - test/emacs
test: Add tests for adding/removing tags within emacs interface
[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_done