From: Carl Worth <cworth@cworth.org>
Date: Fri, 29 Oct 2010 22:49:59 +0000 (-0700)
Subject: test: Test emacs notmuch-hello when displaying a saved search with 0 results.
X-Git-Tag: 0.4~20
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=dec2d57fbcaf470e97c37cd40d2953b2404f07b6;p=notmuch

test: Test emacs notmuch-hello when displaying a saved search with 0 results.

This test verifies that the bug fix in the previous commit is working.
---

diff --git a/test/emacs b/test/emacs
index e6fa648f..f9da3184 100755
--- a/test/emacs
+++ b/test/emacs
@@ -11,6 +11,11 @@ output=$(test_emacs '(notmuch-hello) (message (buffer-string))' 2>&1)
 expected=$(cat $EXPECTED/notmuch-hello)
 test_expect_equal "$output" "$expected"
 
+test_begin_subtest "Saved search with 0 results"
+output=$(test_emacs '(setq notmuch-show-empty-saved-searches t) (setq notmuch-saved-searches '\''(("inbox" . "tag:inbox") ("unread" . "tag:unread") ("empty" . "tag:doesnotexist"))) (notmuch-hello) (message (buffer-string))' 2>&1)
+expected=$(cat $EXPECTED/notmuch-hello-with-empty)
+test_expect_equal "$output" "$expected"
+
 test_begin_subtest "Basic notmuch-search view in emacs"
 output=$(test_emacs '(notmuch-search "tag:inbox") (notmuch-test-wait) (message (buffer-string))' 2>&1)
 expected=$(cat $EXPECTED/notmuch-search-tag-inbox)
diff --git a/test/emacs.expected-output/notmuch-hello-with-empty b/test/emacs.expected-output/notmuch-hello-with-empty
new file mode 100644
index 00000000..a9ed6304
--- /dev/null
+++ b/test/emacs.expected-output/notmuch-hello-with-empty
@@ -0,0 +1,14 @@
+   Welcome to notmuch. You have 50 messages.
+
+Saved searches: [edit]
+
+	  50 inbox           50 unread           0 empty     
+
+Search:                                                                     
+
+[Show all tags]
+
+	 Type a search query and hit RET to view matching threads.
+		Edit saved searches with the `edit' button.
+  Hit RET or click on a saved search or tag name to view matching threads.
+    `=' refreshes this screen. `s' jumps to the search box. `q' to quit.