]> git.notmuchmail.org Git - notmuch/blob - test/emacs
test: Add simple tests for navigating notmuch-hello and notmuch-search views
[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_done