diff options
author | Jani Nikula <jani@nikula.org> | 2014-02-23 18:55:23 +0200 |
---|---|---|
committer | David Bremner <david@tethera.net> | 2014-03-06 07:42:37 -0400 |
commit | 07fdac912f8b60d1de085e2733cc72eaee6707b8 (patch) | |
tree | d9401a1f8d97391e6ef4b519172bf9c3665f5f3d /test | |
parent | e8ec38c25afefacff8c2adb6e4f9e53df9870746 (diff) |
test: add tests for invalid new.tags
Similar tests for both notmuch new and insert.
Diffstat (limited to 'test')
-rwxr-xr-x | test/T050-new.sh | 17 | ||||
-rwxr-xr-x | test/T070-insert.sh | 19 |
2 files changed, 36 insertions, 0 deletions
diff --git a/test/T050-new.sh b/test/T050-new.sh index b7668ff0..ad46ee6d 100755 --- a/test/T050-new.sh +++ b/test/T050-new.sh @@ -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 diff --git a/test/T070-insert.sh b/test/T070-insert.sh index e8dc4c09..b77c5e13 100755 --- a/test/T070-insert.sh +++ b/test/T070-insert.sh @@ -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 |