mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: add tests for invalid new.tags
Similar tests for both notmuch new and insert.
This commit is contained in:
parent
e8ec38c25a
commit
07fdac912f
2 changed files with 36 additions and 0 deletions
|
@ -263,4 +263,21 @@ notmuch search --format=text0 --output=files --offset=1 --limit=1 '*' | xargs -0
|
|||
output=$(NOTMUCH_NEW --quiet)
|
||||
test_expect_equal "$output" ""
|
||||
|
||||
OLDCONFIG=$(notmuch config get new.tags)
|
||||
|
||||
test_begin_subtest "Empty tags in new.tags are forbidden"
|
||||
notmuch config set new.tags "foo;;bar"
|
||||
output=$(NOTMUCH_NEW 2>&1)
|
||||
test_expect_equal "$output" "Error: tag '' in new.tags: empty tag forbidden"
|
||||
|
||||
test_begin_subtest "Tags starting with '-' in new.tags are forbidden"
|
||||
notmuch config set new.tags "-foo;bar"
|
||||
output=$(NOTMUCH_NEW 2>&1)
|
||||
test_expect_equal "$output" "Error: tag '-foo' in new.tags: tag starting with '-' forbidden"
|
||||
|
||||
test_expect_code 1 "Invalid tags set exit code" \
|
||||
"NOTMUCH_NEW 2>&1"
|
||||
|
||||
notmuch config set new.tags $OLDCONFIG
|
||||
|
||||
test_done
|
||||
|
|
|
@ -164,4 +164,23 @@ gen_insert_msg
|
|||
test_expect_code 1 "Insert message, create invalid subfolder" \
|
||||
"notmuch insert --folder=../G --create-folder $gen_msg_filename"
|
||||
|
||||
OLDCONFIG=$(notmuch config get new.tags)
|
||||
|
||||
test_begin_subtest "Empty tags in new.tags are forbidden"
|
||||
notmuch config set new.tags "foo;;bar"
|
||||
gen_insert_msg
|
||||
output=$(notmuch insert $gen_msg_filename 2>&1)
|
||||
test_expect_equal "$output" "Error: tag '' in new.tags: empty tag forbidden"
|
||||
|
||||
test_begin_subtest "Tags starting with '-' in new.tags are forbidden"
|
||||
notmuch config set new.tags "-foo;bar"
|
||||
gen_insert_msg
|
||||
output=$(notmuch insert $gen_msg_filename 2>&1)
|
||||
test_expect_equal "$output" "Error: tag '-foo' in new.tags: tag starting with '-' forbidden"
|
||||
|
||||
test_expect_code 1 "Invalid tags set exit code" \
|
||||
"notmuch insert $gen_msg_filename 2>&1"
|
||||
|
||||
notmuch config set new.tags $OLDCONFIG
|
||||
|
||||
test_done
|
||||
|
|
Loading…
Reference in a new issue