mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 15:21:41 +01:00
test/tagging: add basic tests for batch tagging functionality
This tests argument parsing, blank lines and comments, and basic hex decoding functionality.
This commit is contained in:
parent
45c593095b
commit
e77a99f44e
1 changed files with 51 additions and 0 deletions
51
test/tagging
51
test/tagging
|
@ -46,6 +46,57 @@ test_expect_equal "$output" "\
|
|||
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; One (:\" inbox tag1 unread)
|
||||
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Two (inbox tag1 tag4 unread)"
|
||||
|
||||
test_begin_subtest "--batch"
|
||||
notmuch tag --batch <<EOF
|
||||
# %20 is a space in tag
|
||||
-:"%20 -tag1 +tag5 +tag6 -- One
|
||||
+tag1 -tag1 -tag4 +tag4 -- Two
|
||||
-tag6 One
|
||||
+tag5 Two
|
||||
EOF
|
||||
output=$(notmuch search \* | notmuch_search_sanitize)
|
||||
test_expect_equal "$output" "\
|
||||
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; One (inbox tag5 unread)
|
||||
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Two (inbox tag4 tag5 unread)"
|
||||
|
||||
# generate a common input file for the next several tests.
|
||||
cat > batch.in <<EOF
|
||||
# %40 is an @ in tag
|
||||
+%40 -tag5 +tag6 -- One
|
||||
+tag1 -tag1 -tag4 +tag4 -- Two
|
||||
-tag5 +tag6 Two
|
||||
EOF
|
||||
|
||||
cat > batch.expected <<EOF
|
||||
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; One (@ inbox tag6 unread)
|
||||
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Two (inbox tag4 tag6 unread)
|
||||
EOF
|
||||
|
||||
test_begin_subtest "--input"
|
||||
notmuch dump --format=batch-tag > backup.tags
|
||||
notmuch tag --input=batch.in
|
||||
notmuch search \* | notmuch_search_sanitize > OUTPUT
|
||||
notmuch restore --format=batch-tag < backup.tags
|
||||
test_expect_equal_file batch.expected OUTPUT
|
||||
|
||||
test_begin_subtest "--batch --input"
|
||||
notmuch dump --format=batch-tag > backup.tags
|
||||
notmuch tag --batch --input=batch.in
|
||||
notmuch search \* | notmuch_search_sanitize > OUTPUT
|
||||
notmuch restore --format=batch-tag < backup.tags
|
||||
test_expect_equal_file batch.expected OUTPUT
|
||||
|
||||
test_begin_subtest "--batch, blank lines and comments"
|
||||
notmuch dump | sort > EXPECTED
|
||||
notmuch tag --batch <<EOF
|
||||
# this line is a comment; the next has only white space
|
||||
|
||||
|
||||
# the previous line is empty
|
||||
EOF
|
||||
notmuch dump | sort > OUTPUT
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest '--batch: checking error messages'
|
||||
notmuch dump --format=batch-tag > BACKUP
|
||||
notmuch tag --batch <<EOF 2>OUTPUT
|
||||
|
|
Loading…
Reference in a new issue