aboutsummaryrefslogtreecommitdiff
path: root/test/T340-maildir-sync.sh
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2017-08-04 17:38:45 -0400
committerDavid Bremner <david@tethera.net>2017-08-06 15:40:28 -0400
commit0967e46475be71d39daf928c9370af20b416f102 (patch)
treedce28d8a01d123c1bb137cdd971fc8ad34ca1400 /test/T340-maildir-sync.sh
parentaa2abd2958f941caba6ffc8052dd00550f7e7e39 (diff)
test: add broken tests for maildir syncing
Users should be able to specify synced tags in new.tags
Diffstat (limited to 'test/T340-maildir-sync.sh')
-rwxr-xr-xtest/T340-maildir-sync.sh24
1 files changed, 23 insertions, 1 deletions
diff --git a/test/T340-maildir-sync.sh b/test/T340-maildir-sync.sh
index 959bf8d8..8024d86f 100755
--- a/test/T340-maildir-sync.sh
+++ b/test/T340-maildir-sync.sh
@@ -181,11 +181,33 @@ test_expect_equal "$(cd $MAIL_DIR/cur/; ls non-compliant*)" "non-compliant-maild
test_begin_subtest "Files in new/ get default synchronized tags"
OLDCONFIG=$(notmuch config get new.tags)
-notmuch config set new.tags test
+notmuch config set new.tags test;unread
add_message [subject]='"File in new/"' [dir]=new [filename]='file-in-new'
notmuch config set new.tags $OLDCONFIG
notmuch search 'subject:"File in new"' | notmuch_search_sanitize > output
test_expect_equal "$(< output)" \
"thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; File in new/ (test unread)"
+test_begin_subtest "unread is not mandatory in new/"
+test_subtest_known_broken
+OLDCONFIG=$(notmuch config get new.tags)
+notmuch config set new.tags test
+add_message [subject]='"File in new/"' [dir]=new [filename]='file-in-new'
+notmuch config set new.tags $OLDCONFIG
+notmuch search 'subject:"File in new"' | notmuch_search_sanitize > output
+test_expect_equal "$(< output)" \
+"thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; File in new/ (test)"
+
+for tag in draft flagged passed replied; do
+
+ test_begin_subtest "$tag is valid in new.tags"
+ test_subtest_known_broken
+ OLDCONFIG=$(notmuch config get new.tags)
+ notmuch config set new.tags "$tag"
+ add_message [subject]="\"$tag sync in new\"" [dir]=new
+ notmuch config set new.tags $OLDCONFIG
+ notmuch search "subject:\"$tag sync in new\"" | notmuch_search_sanitize > output
+ test_expect_equal "$(< output)" \
+ "thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; $tag sync in new ($tag)"
+done
test_done