X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/9938103fc5b4082d84f21eca0668b3b58913c895..ea696de91d6b8e99497cf9c67c3385d0709f242c:/t/t1900-mail.sh diff --git a/t/t1900-mail.sh b/t/t1900-mail.sh index e83b2d3..cea6769 100755 --- a/t/t1900-mail.sh +++ b/t/t1900-mail.sh @@ -6,7 +6,7 @@ test_description='Test the mail command' test_expect_success \ 'Initialize the StGIT repository' \ ' - git repo-config stgit.sender "A U Thor " && + git config stgit.sender "A U Thor " && for i in 1 2 3 4 5; do touch foo.txt && echo "line $i" >> foo.txt && @@ -47,4 +47,37 @@ test_expect_success \ [ "$t1" = "$t2" ] ' +test_expect_success \ + 'Check the To:, Cc: and Bcc: headers' \ + ' + stg mail --to=a@a --cc="b@b, c@c" --bcc=d@d $(stg top) -m \ + -t ../../templates/patchmail.tmpl > mbox && + test "$(cat mbox | grep -e "^To:")" = "To: a@a" && + test "$(cat mbox | grep -e "^Cc:")" = "Cc: b@b, c@c" && + test "$(cat mbox | grep -e "^Bcc:")" = "Bcc: d@d" + ' + +test_expect_success \ + 'Check the --auto option' \ + ' + stg edit --sign && + stg mail --to=a@a --cc="b@b, c@c" --bcc=d@d --auto $(stg top) -m \ + -t ../../templates/patchmail.tmpl > mbox && + test "$(cat mbox | grep -e "^To:")" = "To: a@a" && + test "$(cat mbox | grep -e "^Cc:")" = \ + "Cc: C O Mitter , b@b, c@c" && + test "$(cat mbox | grep -e "^Bcc:")" = "Bcc: d@d" + ' + +test_expect_success \ + 'Check the e-mail address duplicates' \ + ' + stg mail --to="a@a, b b " --cc="b@b, c@c" \ + --bcc="c@c, d@d, committer@example.com" --auto $(stg top) -m \ + -t ../../templates/patchmail.tmpl > mbox && + test "$(cat mbox | grep -e "^To:")" = "To: b b , a@a" && + test "$(cat mbox | grep -e "^Cc:")" = "Cc: c@c" && + test "$(cat mbox | grep -e "^Bcc:")" = "Bcc: committer@example.com, d@d" + ' + test_done