X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2FT050-new.sh;h=ad46ee6d51b695f1144de64e406145d26f289452;hb=5c4f6ed99bd10fa26162c46601714141adeb3fb5;hp=b7668ff0c4bcd9b4897c31d95f9fa84a925650e8;hpb=957fc2e1a7d00636c7eaaf487edae65e7a63dc8f;p=notmuch 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