]> git.notmuchmail.org Git - notmuch/blob - test/emacs
test: Add tests for emacs notmuch-search and notmuch-show functions.
[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") (while (get-buffer-process (current-buffer)) (sleep-for 0.1)) (message (buffer-string))' 2>&1)
16 expected=$(cat $EXPECTED/notmuch-search-tag-inbox)
17 test_expect_equal "$output" "$expected"
18
19 test_begin_subtest "Basic notmuch-show view in emacs"
20 output=$(test_emacs '(notmuch-show "thread:0000000000000009") (message (buffer-string))' 2>&1)
21 expected=$(cat $EXPECTED/notmuch-show-thread-9)
22 test_expect_equal "$output" "$expected"
23
24 test_done