3 test_description
='git-send-email'
8 'prepare reference tree' \
9 'echo "1A quick brown fox jumps over the" >file &&
10 echo "lazy dog" >>file &&
12 GIT_AUTHOR_NAME="A" git commit -a -m "Initial."'
19 echo "while test -f commandline\$output; do output=\$((\$output+1)); done"
22 echo " echo \"!\$a!\""
23 echo "done >commandline\$output"
24 echo "cat > msgtxt\$output"
26 chmod +x ./fake.sendmail &&
27 git add fake.sendmail &&
28 GIT_AUTHOR_NAME="A" git commit -a -m "Second."'
30 clean_fake_sendmail
() {
31 rm -f commandline
* msgtxt
*
34 test_expect_success
'Extract patches' '
35 patches=`git format-patch -n HEAD^1`
38 test_expect_success
'Send patches' '
39 git send-email --from="Example <nobody@example.com>" --to=nobody@example.com --smtp-server="$(pwd)/fake.sendmail" $patches 2>errors
47 'Verify commandline' \
48 'diff commandline1 expected'
50 cat >expected-show-all-headers
<<\EOF
52 (mbox
) Adding cc
: A
<author@example.com
> from line
'From: A <author@example.com>'
54 Server
: relay.example.com
55 MAIL FROM
:<from@example.com
>
56 RCPT TO
:<to@example.com
>,<cc@example.com
>,<author@example.com
>,<bcc@example.com
>
57 From
: Example
<from@example.com
>
59 Cc
: cc@example.com
, A
<author@example.com
>
60 Subject
: [PATCH
1/1] Second.
62 Message-Id
: MESSAGE-ID-STRING
63 X-Mailer
: X-MAILER-STRING
64 In-Reply-To
: <unique-message-id@example.com
>
65 References
: <unique-message-id@example.com
>
70 test_expect_success
'Show all headers' '
73 --from="Example <from@example.com>" \
76 --bcc=bcc@example.com \
77 --in-reply-to="<unique-message-id@example.com>" \
78 --smtp-server relay.example.com \
80 sed -e "s/^\(Date:\).*/\1 DATE-STRING/" \
81 -e "s/^\(Message-Id:\).*/\1 MESSAGE-ID-STRING/" \
82 -e "s/^\(X-Mailer:\).*/\1 X-MAILER-STRING/" \
83 >actual-show-all-headers &&
84 test_cmp expected-show-all-headers actual-show-all-headers
88 z64
=$z8$z8$z8$z8$z8$z8$z8$z8
89 z512
=$z64$z64$z64$z64$z64$z64$z64$z64
90 test_expect_success
'reject long lines' '
91 clean_fake_sendmail &&
92 cp $patches longline.patch &&
93 echo $z512$z512 >>longline.patch &&
95 --from="Example <nobody@example.com>" \
96 --to=nobody@example.com \
97 --smtp-server="$(pwd)/fake.sendmail" \
98 $patches longline.patch \
100 grep longline.patch errors
103 test_expect_success
'no patch was sent' '
104 ! test -e commandline1
107 test_expect_success
'allow long lines with --no-validate' '
109 --from="Example <nobody@example.com>" \
110 --to=nobody@example.com \
111 --smtp-server="$(pwd)/fake.sendmail" \
113 $patches longline.patch \
117 test_expect_success
'Invalid In-Reply-To' '
118 clean_fake_sendmail &&
120 --from="Example <nobody@example.com>" \
121 --to=nobody@example.com \
123 --smtp-server="$(pwd)/fake.sendmail" \
126 ! grep "^In-Reply-To: < *>" msgtxt1
129 test_expect_success
'Valid In-Reply-To when prompting' '
130 clean_fake_sendmail &&
131 (echo "From Example <from@example.com>"
132 echo "To Example <to@example.com>"
134 ) | env GIT_SEND_EMAIL_NOTTY=1 git send-email \
135 --smtp-server="$(pwd)/fake.sendmail" \
137 ! grep "^In-Reply-To: < *>" msgtxt1
140 test_expect_success
'setup fake editor' '
142 echo "echo fake edit >>\$1"
147 test_expect_success
'--compose works' '
148 clean_fake_sendmail &&
150 GIT_EDITOR=$(pwd)/fake-editor \
151 GIT_SEND_EMAIL_NOTTY=1 \
153 --compose --subject foo \
154 --from="Example <nobody@example.com>" \
155 --to=nobody@example.com \
156 --smtp-server="$(pwd)/fake.sendmail" \
161 test_expect_success
'first message is compose text' '
162 grep "^fake edit" msgtxt1
165 test_expect_success
'second message is patch' '
166 grep "Subject:.*Second" msgtxt2