From: Tom Russello <tom.russello@xxxxxxxxxxxxxxxxxxxxxxx> Tests if the "To", "Cc" and "Subject" fields are adequately filled and if the message is correctly quoted. Signed-off-by: Tom Russello <tom.russello@xxxxxxxxxxxxxxxx> Signed-off-by: Samuel Groot <samuel.groot@xxxxxxxxxxxxxxxx> Signed-off-by: Matthieu Moy <matthieu.moy@xxxxxxxxxxxxxxx> --- diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh index b3355d2..bda4018 100755 --- a/t/t9001-send-email.sh +++ b/t/t9001-send-email.sh @@ -1885,4 +1885,47 @@ test_expect_success $PREREQ 'leading and trailing whitespaces are removed' ' test_cmp expected-list actual-list ' +test_expect_success $PREREQ 'setup expect' ' + cat >email <<-\EOF + Message-Id: <author_123456@xxxxxxxxxxx> + From: author@xxxxxxxxxxx + To: to1@xxxxxxxxxxx + Cc: cc1@xxxxxxxxxxx + Date: Sat, 12 Jun 2010 15:53:58 +0200 + Subject: subject goes here + + Have you seen my previous email? + > Previous content + EOF +' + +test_expect_success $PREREQ 'From, To, Cc, Subject with --quote-mail are correct' ' + clean_fake_sendmail && + git send-email \ + --quote-mail=email \ + --from="Example <nobody@xxxxxxxxxxx>" \ + --smtp-server="$(pwd)/fake.sendmail" \ + -1 \ + 2>errors && + grep "From: Example <nobody@xxxxxxxxxxx>" msgtxt1 && + to_adr=$(awk "/^To: /,/^Cc: /" msgtxt1) && + echo "$to_adr" | grep author@xxxxxxxxxxx && + echo "$to_adr" | grep to1@xxxxxxxxxxx && + grep "Cc: cc1@xxxxxxxxxxx" msgtxt1 +' +test_expect_success $PREREQ 'the message given is quoted with --quote-mail' ' + grep "> Have you seen my previous email?" msgtxt1 && + grep ">> Previous content" msgtxt1 +' +test_expect_success $PREREQ 'Check if Re is written, only once with --quote-mail' ' + grep "Subject: Re: subject goes here" msgtxt1 && + git send-email \ + --quote-mail=msgtxt1 \ + --from="Example <nobody@xxxxxxxxxxx>" \ + --smtp-server="$(pwd)/fake.sendmail" \ + -1 \ + 2>errors && + grep "Subject: Re: subject goes here" msgtxt3 +' + test_done -- 2.8.2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html