]> git.ipfire.org Git - thirdparty/git.git/blame - t/t9001-send-email.sh
Git 2.3.0-rc2
[thirdparty/git.git] / t / t9001-send-email.sh
CommitLineData
ce903018
RA
1#!/bin/sh
2
47a528ad 3test_description='git send-email'
ce903018
RA
4. ./test-lib.sh
5
57cd35e6
ÆAB
6# May be altered later in the test
7PREREQ="PERL"
1b19ccd2 8
aca56064 9test_expect_success $PREREQ 'prepare reference tree' '
03335f22
JH
10 echo "1A quick brown fox jumps over the" >file &&
11 echo "lazy dog" >>file &&
12 git add file &&
13 GIT_AUTHOR_NAME="A" git commit -a -m "Initial."
aca56064 14'
ce903018 15
aca56064 16test_expect_success $PREREQ 'Setup helper tool' '
acd72b56
JH
17 write_script fake.sendmail <<-\EOF &&
18 shift
19 output=1
20 while test -f commandline$output
21 do
22 output=$(($output+1))
23 done
24 for a
25 do
26 echo "!$a!"
27 done >commandline$output
28 cat >"msgtxt$output"
29 EOF
03335f22
JH
30 git add fake.sendmail &&
31 GIT_AUTHOR_NAME="A" git commit -a -m "Second."
aca56064 32'
ce903018 33
ee756a81 34clean_fake_sendmail () {
6d34a2ba
JK
35 rm -f commandline* msgtxt*
36}
37
57cd35e6 38test_expect_success $PREREQ 'Extract patches' '
03335f22 39 patches=`git format-patch -s --cc="One <one@example.com>" --cc=two@example.com -n HEAD^1`
280242d1
JH
40'
41
c1f2aa45
JS
42# Test no confirm early to ensure remaining tests will not hang
43test_no_confirm () {
44 rm -f no_confirm_okay
45 echo n | \
46 GIT_SEND_EMAIL_NOTTY=1 \
47 git send-email \
48 --from="Example <from@example.com>" \
49 --to=nobody@example.com \
50 --smtp-server="$(pwd)/fake.sendmail" \
51 $@ \
ee756a81 52 $patches >stdout &&
c1f2aa45 53 test_must_fail grep "Send this email" stdout &&
ee756a81 54 >no_confirm_okay
c1f2aa45
JS
55}
56
57# Exit immediately to prevent hang if a no-confirm test fails
58check_no_confirm () {
57cd35e6
ÆAB
59 if ! test -f no_confirm_okay
60 then
61 say 'confirm test failed; skipping remaining tests to prevent hanging'
62 PREREQ="$PREREQ,CHECK_NO_CONFIRM"
63 fi
64 return 0
c1f2aa45
JS
65}
66
57cd35e6
ÆAB
67test_expect_success $PREREQ 'No confirm with --suppress-cc' '
68 test_no_confirm --suppress-cc=sob &&
69 check_no_confirm
c1f2aa45 70'
c1f2aa45 71
57cd35e6
ÆAB
72
73test_expect_success $PREREQ 'No confirm with --confirm=never' '
74 test_no_confirm --confirm=never &&
75 check_no_confirm
c1f2aa45 76'
c1f2aa45
JS
77
78# leave sendemail.confirm set to never after this so that none of the
79# remaining tests prompt unintentionally.
57cd35e6 80test_expect_success $PREREQ 'No confirm with sendemail.confirm=never' '
c1f2aa45 81 git config sendemail.confirm never &&
57cd35e6
ÆAB
82 test_no_confirm --compose --subject=foo &&
83 check_no_confirm
c1f2aa45 84'
c1f2aa45 85
57cd35e6 86test_expect_success $PREREQ 'Send patches' '
03335f22 87 git send-email --suppress-cc=sob --from="Example <nobody@example.com>" --to=nobody@example.com --smtp-server="$(pwd)/fake.sendmail" $patches 2>errors
280242d1 88'
ce903018 89
f9444147 90test_expect_success $PREREQ 'setup expect' '
0720a51b
JH
91 cat >expected <<-\EOF
92 !nobody@example.com!
93 !author@example.com!
94 !one@example.com!
95 !two@example.com!
96 EOF
f9444147
ÆAB
97'
98
aca56064
JH
99test_expect_success $PREREQ 'Verify commandline' '
100 test_cmp expected commandline1
101'
ce903018 102
57cd35e6 103test_expect_success $PREREQ 'Send patches with --envelope-sender' '
03335f22
JH
104 clean_fake_sendmail &&
105 git send-email --envelope-sender="Patch Contributor <patch@example.com>" --suppress-cc=sob --from="Example <nobody@example.com>" --to=nobody@example.com --smtp-server="$(pwd)/fake.sendmail" $patches 2>errors
4f333bc1
JH
106'
107
f9444147 108test_expect_success $PREREQ 'setup expect' '
0720a51b
JH
109 cat >expected <<-\EOF
110 !patch@example.com!
111 !-i!
112 !nobody@example.com!
113 !author@example.com!
114 !one@example.com!
115 !two@example.com!
116 EOF
f9444147
ÆAB
117'
118
aca56064
JH
119test_expect_success $PREREQ 'Verify commandline' '
120 test_cmp expected commandline1
121'
4f333bc1 122
57cd35e6 123test_expect_success $PREREQ 'Send patches with --envelope-sender=auto' '
03335f22
JH
124 clean_fake_sendmail &&
125 git send-email --envelope-sender=auto --suppress-cc=sob --from="Example <nobody@example.com>" --to=nobody@example.com --smtp-server="$(pwd)/fake.sendmail" $patches 2>errors
c89e3241
FC
126'
127
f9444147 128test_expect_success $PREREQ 'setup expect' '
0720a51b
JH
129 cat >expected <<-\EOF
130 !nobody@example.com!
131 !-i!
132 !nobody@example.com!
133 !author@example.com!
134 !one@example.com!
135 !two@example.com!
136 EOF
f9444147
ÆAB
137'
138
aca56064
JH
139test_expect_success $PREREQ 'Verify commandline' '
140 test_cmp expected commandline1
141'
c89e3241 142
f9444147 143test_expect_success $PREREQ 'setup expect' "
b7f30e0a
DK
144cat >expected-show-all-headers <<\EOF
1450001-Second.patch
146(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
5012699d
JS
147(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
148(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
b7f30e0a
DK
149Dry-OK. Log says:
150Server: relay.example.com
151MAIL FROM:<from@example.com>
02461e0e
JP
152RCPT TO:<to@example.com>
153RCPT TO:<cc@example.com>
154RCPT TO:<author@example.com>
155RCPT TO:<one@example.com>
156RCPT TO:<two@example.com>
157RCPT TO:<bcc@example.com>
b7f30e0a
DK
158From: Example <from@example.com>
159To: to@example.com
02461e0e
JP
160Cc: cc@example.com,
161 A <author@example.com>,
162 One <one@example.com>,
163 two@example.com
b7f30e0a
DK
164Subject: [PATCH 1/1] Second.
165Date: DATE-STRING
166Message-Id: MESSAGE-ID-STRING
167X-Mailer: X-MAILER-STRING
168In-Reply-To: <unique-message-id@example.com>
169References: <unique-message-id@example.com>
170
171Result: OK
172EOF
f9444147 173"
b7f30e0a 174
5adcf2c6
MT
175test_suppress_self () {
176 test_commit $3 &&
177 test_when_finished "git reset --hard HEAD^" &&
178
179 write_script cccmd-sed <<-EOF &&
180 sed -n -e s/^cccmd--//p "\$1"
181 EOF
182
183 git commit --amend --author="$1 <$2>" -F - &&
184 clean_fake_sendmail &&
185 git format-patch --stdout -1 >"suppress-self-$3.patch" &&
186
187 git send-email --from="$1 <$2>" \
188 --to=nobody@example.com \
189 --cc-cmd=./cccmd-sed \
190 --suppress-cc=self \
191 --smtp-server="$(pwd)/fake.sendmail" \
192 suppress-self-$3.patch &&
193
194 mv msgtxt1 msgtxt1-$3 &&
195 sed -e '/^$/q' msgtxt1-$3 >"msghdr1-$3" &&
196 >"expected-no-cc-$3" &&
197
198 (grep '^Cc:' msghdr1-$3 >"actual-no-cc-$3";
199 test_cmp expected-no-cc-$3 actual-no-cc-$3)
200}
201
202test_suppress_self_unquoted () {
203 test_suppress_self "$1" "$2" "unquoted-$3" <<-EOF
204 test suppress-cc.self unquoted-$3 with name $1 email $2
205
206 unquoted-$3
207
d6ee4456
MT
208 cccmd--$1 <$2>
209
5adcf2c6
MT
210 Cc: $1 <$2>
211 Signed-off-by: $1 <$2>
212 EOF
213}
214
dd29f0b4
MT
215test_suppress_self_quoted () {
216 test_suppress_self "$1" "$2" "quoted-$3" <<-EOF
217 test suppress-cc.self quoted-$3 with name $1 email $2
218
219 quoted-$3
220
221 cccmd--"$1" <$2>
222
223 Cc: $1 <$2>
224 Cc: "$1" <$2>
225 Signed-off-by: $1 <$2>
226 Signed-off-by: "$1" <$2>
227 EOF
228}
229
5adcf2c6 230test_expect_success $PREREQ 'self name is suppressed' "
d6ee4456 231 test_suppress_self_unquoted 'A U Thor' 'author@example.com' \
5adcf2c6
MT
232 'self_name_suppressed'
233"
234
dd29f0b4
MT
235test_expect_success $PREREQ 'self name with dot is suppressed' "
236 test_suppress_self_quoted 'A U. Thor' 'author@example.com' \
237 'self_name_dot_suppressed'
238"
239
4b45bcf7
MT
240test_expect_success $PREREQ 'non-ascii self name is suppressed' "
241 test_suppress_self_quoted 'Füñný Nâmé' 'odd_?=mail@example.com' \
242 'non_ascii_self_suppressed'
243"
244
ab47e2a5
РД
245# This name is long enough to force format-patch to split it into multiple
246# encoded-words, assuming it uses UTF-8 with the "Q" encoding.
247test_expect_success $PREREQ 'long non-ascii self name is suppressed' "
248 test_suppress_self_quoted 'Ƒüñníęř €. Nâṁé' 'odd_?=mail@example.com' \
249 'long_non_ascii_self_suppressed'
250"
251
14952666
MT
252test_expect_success $PREREQ 'sanitized self name is suppressed' "
253 test_suppress_self_unquoted '\"A U. Thor\"' 'author@example.com' \
254 'self_name_sanitized_suppressed'
255"
256
57cd35e6 257test_expect_success $PREREQ 'Show all headers' '
b7f30e0a
DK
258 git send-email \
259 --dry-run \
3531e270 260 --suppress-cc=sob \
b7f30e0a
DK
261 --from="Example <from@example.com>" \
262 --to=to@example.com \
263 --cc=cc@example.com \
264 --bcc=bcc@example.com \
265 --in-reply-to="<unique-message-id@example.com>" \
266 --smtp-server relay.example.com \
267 $patches |
268 sed -e "s/^\(Date:\).*/\1 DATE-STRING/" \
269 -e "s/^\(Message-Id:\).*/\1 MESSAGE-ID-STRING/" \
270 -e "s/^\(X-Mailer:\).*/\1 X-MAILER-STRING/" \
271 >actual-show-all-headers &&
82ebb0b6 272 test_cmp expected-show-all-headers actual-show-all-headers
b7f30e0a
DK
273'
274
57cd35e6 275test_expect_success $PREREQ 'Prompting works' '
0da43a68 276 clean_fake_sendmail &&
8cac13dc 277 (echo "to@example.com"
0da43a68
JS
278 echo ""
279 ) | GIT_SEND_EMAIL_NOTTY=1 git send-email \
280 --smtp-server="$(pwd)/fake.sendmail" \
281 $patches \
282 2>errors &&
8cac13dc 283 grep "^From: A U Thor <author@example.com>\$" msgtxt1 &&
9524cf29 284 grep "^To: to@example.com\$" msgtxt1
0da43a68
JS
285'
286
59defcc3
JK
287test_expect_success $PREREQ,AUTOIDENT 'implicit ident is allowed' '
288 clean_fake_sendmail &&
289 (sane_unset GIT_AUTHOR_NAME &&
290 sane_unset GIT_AUTHOR_EMAIL &&
291 sane_unset GIT_COMMITTER_NAME &&
292 sane_unset GIT_COMMITTER_EMAIL &&
293 GIT_SEND_EMAIL_NOTTY=1 git send-email \
294 --smtp-server="$(pwd)/fake.sendmail" \
295 --to=to@example.com \
296 $patches </dev/null 2>errors
297 )
298'
299
300test_expect_success $PREREQ,!AUTOIDENT 'broken implicit ident aborts send-email' '
301 clean_fake_sendmail &&
302 (sane_unset GIT_AUTHOR_NAME &&
303 sane_unset GIT_AUTHOR_EMAIL &&
304 sane_unset GIT_COMMITTER_NAME &&
305 sane_unset GIT_COMMITTER_EMAIL &&
306 GIT_SEND_EMAIL_NOTTY=1 && export GIT_SEND_EMAIL_NOTTY &&
307 test_must_fail git send-email \
308 --smtp-server="$(pwd)/fake.sendmail" \
309 --to=to@example.com \
310 $patches </dev/null 2>errors &&
311 test_i18ngrep "tell me who you are" errors
312 )
313'
314
6e74e075
JP
315test_expect_success $PREREQ 'tocmd works' '
316 clean_fake_sendmail &&
317 cp $patches tocmd.patch &&
318 echo tocmd--tocmd@example.com >>tocmd.patch &&
acd72b56
JH
319 write_script tocmd-sed <<-\EOF &&
320 sed -n -e "s/^tocmd--//p" "$1"
321 EOF
6e74e075
JP
322 git send-email \
323 --from="Example <nobody@example.com>" \
324 --to-cmd=./tocmd-sed \
325 --smtp-server="$(pwd)/fake.sendmail" \
326 tocmd.patch \
327 &&
328 grep "^To: tocmd@example.com" msgtxt1
329'
330
57cd35e6 331test_expect_success $PREREQ 'cccmd works' '
cb8a9bd5
PB
332 clean_fake_sendmail &&
333 cp $patches cccmd.patch &&
41ae8f1d 334 echo "cccmd-- cccmd@example.com" >>cccmd.patch &&
acd72b56
JH
335 write_script cccmd-sed <<-\EOF &&
336 sed -n -e "s/^cccmd--//p" "$1"
337 EOF
cb8a9bd5
PB
338 git send-email \
339 --from="Example <nobody@example.com>" \
340 --to=nobody@example.com \
341 --cc-cmd=./cccmd-sed \
342 --smtp-server="$(pwd)/fake.sendmail" \
343 cccmd.patch \
344 &&
02461e0e 345 grep "^ cccmd@example.com" msgtxt1
cb8a9bd5
PB
346'
347
57cd35e6 348test_expect_success $PREREQ 'reject long lines' '
f9444147
ÆAB
349 z8=zzzzzzzz &&
350 z64=$z8$z8$z8$z8$z8$z8$z8$z8 &&
351 z512=$z64$z64$z64$z64$z64$z64$z64$z64 &&
6d34a2ba 352 clean_fake_sendmail &&
747bbff9
JK
353 cp $patches longline.patch &&
354 echo $z512$z512 >>longline.patch &&
d492b31c 355 test_must_fail git send-email \
747bbff9
JK
356 --from="Example <nobody@example.com>" \
357 --to=nobody@example.com \
358 --smtp-server="$(pwd)/fake.sendmail" \
359 $patches longline.patch \
360 2>errors &&
361 grep longline.patch errors
362'
363
57cd35e6 364test_expect_success $PREREQ 'no patch was sent' '
6d34a2ba 365 ! test -e commandline1
747bbff9
JK
366'
367
57cd35e6 368test_expect_success $PREREQ 'Author From: in message body' '
5012699d
JS
369 clean_fake_sendmail &&
370 git send-email \
371 --from="Example <nobody@example.com>" \
372 --to=nobody@example.com \
373 --smtp-server="$(pwd)/fake.sendmail" \
374 $patches &&
ee756a81 375 sed "1,/^\$/d" <msgtxt1 >msgbody1 &&
5012699d
JS
376 grep "From: A <author@example.com>" msgbody1
377'
378
57cd35e6 379test_expect_success $PREREQ 'Author From: not in message body' '
5012699d
JS
380 clean_fake_sendmail &&
381 git send-email \
382 --from="A <author@example.com>" \
383 --to=nobody@example.com \
384 --smtp-server="$(pwd)/fake.sendmail" \
385 $patches &&
ee756a81 386 sed "1,/^\$/d" <msgtxt1 >msgbody1 &&
5012699d
JS
387 ! grep "From: A <author@example.com>" msgbody1
388'
389
57cd35e6 390test_expect_success $PREREQ 'allow long lines with --no-validate' '
c764a0c2
JK
391 git send-email \
392 --from="Example <nobody@example.com>" \
393 --to=nobody@example.com \
394 --smtp-server="$(pwd)/fake.sendmail" \
3fee1fe8 395 --novalidate \
c764a0c2
JK
396 $patches longline.patch \
397 2>errors
398'
399
57cd35e6 400test_expect_success $PREREQ 'Invalid In-Reply-To' '
6d34a2ba 401 clean_fake_sendmail &&
0fb7fc75
JS
402 git send-email \
403 --from="Example <nobody@example.com>" \
404 --to=nobody@example.com \
405 --in-reply-to=" " \
406 --smtp-server="$(pwd)/fake.sendmail" \
5b57413c 407 $patches \
cc7e8167 408 2>errors &&
6d34a2ba 409 ! grep "^In-Reply-To: < *>" msgtxt1
0fb7fc75
JS
410'
411
57cd35e6 412test_expect_success $PREREQ 'Valid In-Reply-To when prompting' '
6d34a2ba 413 clean_fake_sendmail &&
0fb7fc75
JS
414 (echo "From Example <from@example.com>"
415 echo "To Example <to@example.com>"
416 echo ""
6eca18ca 417 ) | GIT_SEND_EMAIL_NOTTY=1 git send-email \
0fb7fc75
JS
418 --smtp-server="$(pwd)/fake.sendmail" \
419 $patches 2>errors &&
6d34a2ba 420 ! grep "^In-Reply-To: < *>" msgtxt1
0fb7fc75
JS
421'
422
54aae5e1
JH
423test_expect_success $PREREQ 'In-Reply-To without --chain-reply-to' '
424 clean_fake_sendmail &&
425 echo "<unique-message-id@example.com>" >expect &&
426 git send-email \
427 --from="Example <nobody@example.com>" \
428 --to=nobody@example.com \
d2559f73 429 --nochain-reply-to \
54aae5e1
JH
430 --in-reply-to="$(cat expect)" \
431 --smtp-server="$(pwd)/fake.sendmail" \
432 $patches $patches $patches \
433 2>errors &&
db54c8e7 434 # The first message is a reply to --in-reply-to
54aae5e1
JH
435 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt1 >actual &&
436 test_cmp expect actual &&
db54c8e7
AO
437 # Second and subsequent messages are replies to the first one
438 sed -n -e "s/^Message-Id: *\(.*\)/\1/p" msgtxt1 >expect &&
54aae5e1
JH
439 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt2 >actual &&
440 test_cmp expect actual &&
441 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt3 >actual &&
442 test_cmp expect actual
443'
444
445test_expect_success $PREREQ 'In-Reply-To with --chain-reply-to' '
446 clean_fake_sendmail &&
447 echo "<unique-message-id@example.com>" >expect &&
448 git send-email \
449 --from="Example <nobody@example.com>" \
450 --to=nobody@example.com \
451 --chain-reply-to \
452 --in-reply-to="$(cat expect)" \
453 --smtp-server="$(pwd)/fake.sendmail" \
454 $patches $patches $patches \
455 2>errors &&
456 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt1 >actual &&
457 test_cmp expect actual &&
458 sed -n -e "s/^Message-Id: *\(.*\)/\1/p" msgtxt1 >expect &&
459 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt2 >actual &&
460 test_cmp expect actual &&
461 sed -n -e "s/^Message-Id: *\(.*\)/\1/p" msgtxt2 >expect &&
462 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt3 >actual &&
463 test_cmp expect actual
464'
465
57cd35e6 466test_expect_success $PREREQ 'setup fake editor' '
acd72b56
JH
467 write_script fake-editor <<-\EOF
468 echo fake edit >>"$1"
469 EOF
8a8bf469
JK
470'
471
7f0475c3 472test_set_editor "$(pwd)/fake-editor"
065096c2 473
57cd35e6 474test_expect_success $PREREQ '--compose works' '
8a8bf469 475 clean_fake_sendmail &&
c1f2aa45
JS
476 git send-email \
477 --compose --subject foo \
478 --from="Example <nobody@example.com>" \
479 --to=nobody@example.com \
480 --smtp-server="$(pwd)/fake.sendmail" \
481 $patches \
482 2>errors
8a8bf469
JK
483'
484
57cd35e6 485test_expect_success $PREREQ 'first message is compose text' '
8a8bf469
JK
486 grep "^fake edit" msgtxt1
487'
488
57cd35e6 489test_expect_success $PREREQ 'second message is patch' '
8a8bf469
JK
490 grep "Subject:.*Second" msgtxt2
491'
492
f9444147 493test_expect_success $PREREQ 'setup expect' "
3531e270 494cat >expected-suppress-sob <<\EOF
33c592dd
MV
4950001-Second.patch
496(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
5012699d
JS
497(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
498(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
33c592dd
MV
499Dry-OK. Log says:
500Server: relay.example.com
501MAIL FROM:<from@example.com>
02461e0e
JP
502RCPT TO:<to@example.com>
503RCPT TO:<cc@example.com>
504RCPT TO:<author@example.com>
505RCPT TO:<one@example.com>
506RCPT TO:<two@example.com>
33c592dd
MV
507From: Example <from@example.com>
508To: to@example.com
02461e0e
JP
509Cc: cc@example.com,
510 A <author@example.com>,
511 One <one@example.com>,
512 two@example.com
33c592dd
MV
513Subject: [PATCH 1/1] Second.
514Date: DATE-STRING
515Message-Id: MESSAGE-ID-STRING
516X-Mailer: X-MAILER-STRING
517
518Result: OK
519EOF
f9444147 520"
33c592dd 521
3531e270 522test_suppression () {
33c592dd
MV
523 git send-email \
524 --dry-run \
cb8a9bd5 525 --suppress-cc=$1 ${2+"--suppress-cc=$2"} \
33c592dd
MV
526 --from="Example <from@example.com>" \
527 --to=to@example.com \
528 --smtp-server relay.example.com \
529 $patches |
530 sed -e "s/^\(Date:\).*/\1 DATE-STRING/" \
531 -e "s/^\(Message-Id:\).*/\1 MESSAGE-ID-STRING/" \
532 -e "s/^\(X-Mailer:\).*/\1 X-MAILER-STRING/" \
cb8a9bd5
PB
533 >actual-suppress-$1${2+"-$2"} &&
534 test_cmp expected-suppress-$1${2+"-$2"} actual-suppress-$1${2+"-$2"}
3531e270
JS
535}
536
57cd35e6 537test_expect_success $PREREQ 'sendemail.cc set' '
3531e270
JS
538 git config sendemail.cc cc@example.com &&
539 test_suppression sob
33c592dd
MV
540'
541
f9444147 542test_expect_success $PREREQ 'setup expect' "
3531e270 543cat >expected-suppress-sob <<\EOF
33c592dd
MV
5440001-Second.patch
545(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
5012699d
JS
546(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
547(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
33c592dd
MV
548Dry-OK. Log says:
549Server: relay.example.com
550MAIL FROM:<from@example.com>
02461e0e
JP
551RCPT TO:<to@example.com>
552RCPT TO:<author@example.com>
553RCPT TO:<one@example.com>
554RCPT TO:<two@example.com>
33c592dd
MV
555From: Example <from@example.com>
556To: to@example.com
02461e0e
JP
557Cc: A <author@example.com>,
558 One <one@example.com>,
559 two@example.com
33c592dd
MV
560Subject: [PATCH 1/1] Second.
561Date: DATE-STRING
562Message-Id: MESSAGE-ID-STRING
563X-Mailer: X-MAILER-STRING
564
565Result: OK
566EOF
f9444147 567"
33c592dd 568
57cd35e6 569test_expect_success $PREREQ 'sendemail.cc unset' '
33c592dd 570 git config --unset sendemail.cc &&
3531e270
JS
571 test_suppression sob
572'
573
f9444147 574test_expect_success $PREREQ 'setup expect' "
cb8a9bd5
PB
575cat >expected-suppress-cccmd <<\EOF
5760001-Second.patch
577(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
578(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
579(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
580(body) Adding cc: C O Mitter <committer@example.com> from line 'Signed-off-by: C O Mitter <committer@example.com>'
581Dry-OK. Log says:
582Server: relay.example.com
583MAIL FROM:<from@example.com>
02461e0e
JP
584RCPT TO:<to@example.com>
585RCPT TO:<author@example.com>
586RCPT TO:<one@example.com>
587RCPT TO:<two@example.com>
588RCPT TO:<committer@example.com>
cb8a9bd5
PB
589From: Example <from@example.com>
590To: to@example.com
02461e0e
JP
591Cc: A <author@example.com>,
592 One <one@example.com>,
593 two@example.com,
594 C O Mitter <committer@example.com>
cb8a9bd5
PB
595Subject: [PATCH 1/1] Second.
596Date: DATE-STRING
597Message-Id: MESSAGE-ID-STRING
598X-Mailer: X-MAILER-STRING
599
600Result: OK
601EOF
f9444147 602"
cb8a9bd5 603
57cd35e6 604test_expect_success $PREREQ 'sendemail.cccmd' '
acd72b56
JH
605 write_script cccmd <<-\EOF &&
606 echo cc-cmd@example.com
607 EOF
cb8a9bd5
PB
608 git config sendemail.cccmd ./cccmd &&
609 test_suppression cccmd
610'
611
f9444147 612test_expect_success $PREREQ 'setup expect' '
3531e270
JS
613cat >expected-suppress-all <<\EOF
6140001-Second.patch
615Dry-OK. Log says:
616Server: relay.example.com
617MAIL FROM:<from@example.com>
618RCPT TO:<to@example.com>
619From: Example <from@example.com>
620To: to@example.com
621Subject: [PATCH 1/1] Second.
622Date: DATE-STRING
623Message-Id: MESSAGE-ID-STRING
624X-Mailer: X-MAILER-STRING
625
626Result: OK
627EOF
f9444147 628'
3531e270 629
57cd35e6 630test_expect_success $PREREQ '--suppress-cc=all' '
3531e270
JS
631 test_suppression all
632'
633
f9444147 634test_expect_success $PREREQ 'setup expect' "
3531e270
JS
635cat >expected-suppress-body <<\EOF
6360001-Second.patch
637(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
638(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
639(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
cb8a9bd5 640(cc-cmd) Adding cc: cc-cmd@example.com from: './cccmd'
3531e270
JS
641Dry-OK. Log says:
642Server: relay.example.com
643MAIL FROM:<from@example.com>
02461e0e
JP
644RCPT TO:<to@example.com>
645RCPT TO:<author@example.com>
646RCPT TO:<one@example.com>
647RCPT TO:<two@example.com>
648RCPT TO:<cc-cmd@example.com>
3531e270
JS
649From: Example <from@example.com>
650To: to@example.com
02461e0e
JP
651Cc: A <author@example.com>,
652 One <one@example.com>,
653 two@example.com,
654 cc-cmd@example.com
3531e270
JS
655Subject: [PATCH 1/1] Second.
656Date: DATE-STRING
657Message-Id: MESSAGE-ID-STRING
658X-Mailer: X-MAILER-STRING
659
660Result: OK
661EOF
f9444147 662"
3531e270 663
57cd35e6 664test_expect_success $PREREQ '--suppress-cc=body' '
3531e270
JS
665 test_suppression body
666'
667
f9444147 668test_expect_success $PREREQ 'setup expect' "
cb8a9bd5
PB
669cat >expected-suppress-body-cccmd <<\EOF
6700001-Second.patch
671(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
672(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
673(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
674Dry-OK. Log says:
675Server: relay.example.com
676MAIL FROM:<from@example.com>
02461e0e
JP
677RCPT TO:<to@example.com>
678RCPT TO:<author@example.com>
679RCPT TO:<one@example.com>
680RCPT TO:<two@example.com>
cb8a9bd5
PB
681From: Example <from@example.com>
682To: to@example.com
02461e0e
JP
683Cc: A <author@example.com>,
684 One <one@example.com>,
685 two@example.com
cb8a9bd5
PB
686Subject: [PATCH 1/1] Second.
687Date: DATE-STRING
688Message-Id: MESSAGE-ID-STRING
689X-Mailer: X-MAILER-STRING
690
691Result: OK
692EOF
f9444147 693"
cb8a9bd5 694
57cd35e6 695test_expect_success $PREREQ '--suppress-cc=body --suppress-cc=cccmd' '
cb8a9bd5
PB
696 test_suppression body cccmd
697'
698
f9444147 699test_expect_success $PREREQ 'setup expect' "
3531e270
JS
700cat >expected-suppress-sob <<\EOF
7010001-Second.patch
702(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
703(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
704(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
705Dry-OK. Log says:
706Server: relay.example.com
707MAIL FROM:<from@example.com>
02461e0e
JP
708RCPT TO:<to@example.com>
709RCPT TO:<author@example.com>
710RCPT TO:<one@example.com>
711RCPT TO:<two@example.com>
3531e270
JS
712From: Example <from@example.com>
713To: to@example.com
02461e0e
JP
714Cc: A <author@example.com>,
715 One <one@example.com>,
716 two@example.com
3531e270
JS
717Subject: [PATCH 1/1] Second.
718Date: DATE-STRING
719Message-Id: MESSAGE-ID-STRING
720X-Mailer: X-MAILER-STRING
721
722Result: OK
723EOF
f9444147 724"
3531e270 725
57cd35e6 726test_expect_success $PREREQ '--suppress-cc=sob' '
cc7e8167 727 test_might_fail git config --unset sendemail.cccmd &&
3531e270
JS
728 test_suppression sob
729'
730
f9444147 731test_expect_success $PREREQ 'setup expect' "
3531e270
JS
732cat >expected-suppress-bodycc <<\EOF
7330001-Second.patch
734(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
735(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
736(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
737(body) Adding cc: C O Mitter <committer@example.com> from line 'Signed-off-by: C O Mitter <committer@example.com>'
738Dry-OK. Log says:
739Server: relay.example.com
740MAIL FROM:<from@example.com>
02461e0e
JP
741RCPT TO:<to@example.com>
742RCPT TO:<author@example.com>
743RCPT TO:<one@example.com>
744RCPT TO:<two@example.com>
745RCPT TO:<committer@example.com>
3531e270
JS
746From: Example <from@example.com>
747To: to@example.com
02461e0e
JP
748Cc: A <author@example.com>,
749 One <one@example.com>,
750 two@example.com,
751 C O Mitter <committer@example.com>
3531e270
JS
752Subject: [PATCH 1/1] Second.
753Date: DATE-STRING
754Message-Id: MESSAGE-ID-STRING
755X-Mailer: X-MAILER-STRING
756
757Result: OK
758EOF
f9444147 759"
3531e270 760
57cd35e6 761test_expect_success $PREREQ '--suppress-cc=bodycc' '
3531e270
JS
762 test_suppression bodycc
763'
764
f9444147 765test_expect_success $PREREQ 'setup expect' "
3531e270
JS
766cat >expected-suppress-cc <<\EOF
7670001-Second.patch
768(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
769(body) Adding cc: C O Mitter <committer@example.com> from line 'Signed-off-by: C O Mitter <committer@example.com>'
770Dry-OK. Log says:
771Server: relay.example.com
772MAIL FROM:<from@example.com>
02461e0e
JP
773RCPT TO:<to@example.com>
774RCPT TO:<author@example.com>
775RCPT TO:<committer@example.com>
3531e270
JS
776From: Example <from@example.com>
777To: to@example.com
02461e0e
JP
778Cc: A <author@example.com>,
779 C O Mitter <committer@example.com>
3531e270
JS
780Subject: [PATCH 1/1] Second.
781Date: DATE-STRING
782Message-Id: MESSAGE-ID-STRING
783X-Mailer: X-MAILER-STRING
784
785Result: OK
786EOF
f9444147 787"
3531e270 788
57cd35e6 789test_expect_success $PREREQ '--suppress-cc=cc' '
3531e270 790 test_suppression cc
33c592dd
MV
791'
792
c1f2aa45
JS
793test_confirm () {
794 echo y | \
795 GIT_SEND_EMAIL_NOTTY=1 \
796 git send-email \
797 --from="Example <nobody@example.com>" \
798 --to=nobody@example.com \
799 --smtp-server="$(pwd)/fake.sendmail" \
ee756a81 800 $@ $patches >stdout &&
c18f75a1 801 grep "Send this email" stdout
c1f2aa45
JS
802}
803
57cd35e6 804test_expect_success $PREREQ '--confirm=always' '
c1f2aa45
JS
805 test_confirm --confirm=always --suppress-cc=all
806'
807
57cd35e6 808test_expect_success $PREREQ '--confirm=auto' '
c1f2aa45
JS
809 test_confirm --confirm=auto
810'
811
57cd35e6 812test_expect_success $PREREQ '--confirm=cc' '
c1f2aa45
JS
813 test_confirm --confirm=cc
814'
815
57cd35e6 816test_expect_success $PREREQ '--confirm=compose' '
c1f2aa45
JS
817 test_confirm --confirm=compose --compose
818'
819
57cd35e6 820test_expect_success $PREREQ 'confirm by default (due to cc)' '
c1f2aa45
JS
821 CONFIRM=$(git config --get sendemail.confirm) &&
822 git config --unset sendemail.confirm &&
c18f75a1
JS
823 test_confirm
824 ret="$?"
825 git config sendemail.confirm ${CONFIRM:-never}
826 test $ret = "0"
c1f2aa45
JS
827'
828
57cd35e6 829test_expect_success $PREREQ 'confirm by default (due to --compose)' '
c1f2aa45
JS
830 CONFIRM=$(git config --get sendemail.confirm) &&
831 git config --unset sendemail.confirm &&
832 test_confirm --suppress-cc=all --compose
833 ret="$?"
834 git config sendemail.confirm ${CONFIRM:-never}
835 test $ret = "0"
836'
837
57cd35e6 838test_expect_success $PREREQ 'confirm detects EOF (inform assumes y)' '
c18f75a1
JS
839 CONFIRM=$(git config --get sendemail.confirm) &&
840 git config --unset sendemail.confirm &&
dc1460aa
JS
841 rm -fr outdir &&
842 git format-patch -2 -o outdir &&
c18f75a1
JS
843 GIT_SEND_EMAIL_NOTTY=1 \
844 git send-email \
845 --from="Example <nobody@example.com>" \
846 --to=nobody@example.com \
847 --smtp-server="$(pwd)/fake.sendmail" \
ee756a81 848 outdir/*.patch </dev/null
c18f75a1
JS
849 ret="$?"
850 git config sendemail.confirm ${CONFIRM:-never}
851 test $ret = "0"
852'
853
57cd35e6 854test_expect_success $PREREQ 'confirm detects EOF (auto causes failure)' '
c18f75a1
JS
855 CONFIRM=$(git config --get sendemail.confirm) &&
856 git config sendemail.confirm auto &&
3b3637c3
JS
857 GIT_SEND_EMAIL_NOTTY=1 &&
858 export GIT_SEND_EMAIL_NOTTY &&
c18f75a1
JS
859 test_must_fail git send-email \
860 --from="Example <nobody@example.com>" \
861 --to=nobody@example.com \
862 --smtp-server="$(pwd)/fake.sendmail" \
ee756a81 863 $patches </dev/null
c18f75a1
JS
864 ret="$?"
865 git config sendemail.confirm ${CONFIRM:-never}
866 test $ret = "0"
867'
868
41ccfdd9 869test_expect_success $PREREQ 'confirm does not loop forever' '
c18f75a1
JS
870 CONFIRM=$(git config --get sendemail.confirm) &&
871 git config sendemail.confirm auto &&
3b3637c3
JS
872 GIT_SEND_EMAIL_NOTTY=1 &&
873 export GIT_SEND_EMAIL_NOTTY &&
874 yes "bogus" | test_must_fail git send-email \
c18f75a1
JS
875 --from="Example <nobody@example.com>" \
876 --to=nobody@example.com \
877 --smtp-server="$(pwd)/fake.sendmail" \
878 $patches
879 ret="$?"
880 git config sendemail.confirm ${CONFIRM:-never}
881 test $ret = "0"
882'
883
57cd35e6 884test_expect_success $PREREQ 'utf8 Cc is rfc2047 encoded' '
a61c0ffa
JS
885 clean_fake_sendmail &&
886 rm -fr outdir &&
887 git format-patch -1 -o outdir --cc="àéìöú <utf8@example.com>" &&
888 git send-email \
889 --from="Example <nobody@example.com>" \
890 --to=nobody@example.com \
891 --smtp-server="$(pwd)/fake.sendmail" \
892 outdir/*.patch &&
02461e0e 893 grep "^ " msgtxt1 |
d1fff6fc 894 grep "=?UTF-8?q?=C3=A0=C3=A9=C3=AC=C3=B6=C3=BA?= <utf8@example.com>"
a61c0ffa
JS
895'
896
57cd35e6 897test_expect_success $PREREQ '--compose adds MIME for utf8 body' '
0706bd19 898 clean_fake_sendmail &&
acd72b56
JH
899 write_script fake-editor-utf8 <<-\EOF &&
900 echo "utf8 body: àéìöú" >>"$1"
901 EOF
03335f22
JH
902 GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
903 git send-email \
904 --compose --subject foo \
905 --from="Example <nobody@example.com>" \
906 --to=nobody@example.com \
907 --smtp-server="$(pwd)/fake.sendmail" \
908 $patches &&
0706bd19 909 grep "^utf8 body" msgtxt1 &&
d1fff6fc 910 grep "^Content-Type: text/plain; charset=UTF-8" msgtxt1
0706bd19
JK
911'
912
57cd35e6 913test_expect_success $PREREQ '--compose respects user mime type' '
0706bd19 914 clean_fake_sendmail &&
acd72b56
JH
915 write_script fake-editor-utf8-mime <<-\EOF &&
916 cat >"$1" <<-\EOM
917 MIME-Version: 1.0
918 Content-Type: text/plain; charset=iso-8859-1
919 Content-Transfer-Encoding: 8bit
920 Subject: foo
921
922 utf8 body: àéìöú
923 EOM
924 EOF
03335f22
JH
925 GIT_EDITOR="\"$(pwd)/fake-editor-utf8-mime\"" \
926 git send-email \
927 --compose --subject foo \
928 --from="Example <nobody@example.com>" \
929 --to=nobody@example.com \
930 --smtp-server="$(pwd)/fake.sendmail" \
931 $patches &&
0706bd19
JK
932 grep "^utf8 body" msgtxt1 &&
933 grep "^Content-Type: text/plain; charset=iso-8859-1" msgtxt1 &&
d1fff6fc 934 ! grep "^Content-Type: text/plain; charset=UTF-8" msgtxt1
0706bd19
JK
935'
936
57cd35e6 937test_expect_success $PREREQ '--compose adds MIME for utf8 subject' '
d54eaaa2 938 clean_fake_sendmail &&
03335f22
JH
939 GIT_EDITOR="\"$(pwd)/fake-editor\"" \
940 git send-email \
941 --compose --subject utf8-sübjëct \
942 --from="Example <nobody@example.com>" \
943 --to=nobody@example.com \
944 --smtp-server="$(pwd)/fake.sendmail" \
945 $patches &&
d54eaaa2 946 grep "^fake edit" msgtxt1 &&
d1fff6fc 947 grep "^Subject: =?UTF-8?q?utf8-s=C3=BCbj=C3=ABct?=" msgtxt1
d54eaaa2
JK
948'
949
b622d4d1
TR
950test_expect_success $PREREQ 'utf8 author is correctly passed on' '
951 clean_fake_sendmail &&
952 test_commit weird_author &&
953 test_when_finished "git reset --hard HEAD^" &&
954 git commit --amend --author "Füñný Nâmé <odd_?=mail@example.com>" &&
955 git format-patch --stdout -1 >funny_name.patch &&
956 git send-email --from="Example <nobody@example.com>" \
03335f22
JH
957 --to=nobody@example.com \
958 --smtp-server="$(pwd)/fake.sendmail" \
959 funny_name.patch &&
b622d4d1
TR
960 grep "^From: Füñný Nâmé <odd_?=mail@example.com>" msgtxt1
961'
962
4cb46bdd 963test_expect_success $PREREQ 'utf8 sender is not duplicated' '
f07075c2
MT
964 clean_fake_sendmail &&
965 test_commit weird_sender &&
966 test_when_finished "git reset --hard HEAD^" &&
967 git commit --amend --author "Füñný Nâmé <odd_?=mail@example.com>" &&
968 git format-patch --stdout -1 >funny_name.patch &&
969 git send-email --from="Füñný Nâmé <odd_?=mail@example.com>" \
03335f22
JH
970 --to=nobody@example.com \
971 --smtp-server="$(pwd)/fake.sendmail" \
972 funny_name.patch &&
f07075c2
MT
973 grep "^From: " msgtxt1 >msgfrom &&
974 test_line_count = 1 msgfrom
975'
976
62e00690
KM
977test_expect_success $PREREQ 'sendemail.composeencoding works' '
978 clean_fake_sendmail &&
979 git config sendemail.composeencoding iso-8859-1 &&
acd72b56
JH
980 write_script fake-editor-utf8 <<-\EOF &&
981 echo "utf8 body: àéìöú" >>"$1"
982 EOF
03335f22
JH
983 GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
984 git send-email \
985 --compose --subject foo \
986 --from="Example <nobody@example.com>" \
987 --to=nobody@example.com \
988 --smtp-server="$(pwd)/fake.sendmail" \
989 $patches &&
62e00690
KM
990 grep "^utf8 body" msgtxt1 &&
991 grep "^Content-Type: text/plain; charset=iso-8859-1" msgtxt1
992'
993
994test_expect_success $PREREQ '--compose-encoding works' '
995 clean_fake_sendmail &&
acd72b56
JH
996 write_script fake-editor-utf8 <<-\EOF &&
997 echo "utf8 body: àéìöú" >>"$1"
998 EOF
03335f22
JH
999 GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1000 git send-email \
1001 --compose-encoding iso-8859-1 \
1002 --compose --subject foo \
1003 --from="Example <nobody@example.com>" \
1004 --to=nobody@example.com \
1005 --smtp-server="$(pwd)/fake.sendmail" \
1006 $patches &&
62e00690
KM
1007 grep "^utf8 body" msgtxt1 &&
1008 grep "^Content-Type: text/plain; charset=iso-8859-1" msgtxt1
1009'
1010
1011test_expect_success $PREREQ '--compose-encoding overrides sendemail.composeencoding' '
1012 clean_fake_sendmail &&
1013 git config sendemail.composeencoding iso-8859-1 &&
acd72b56
JH
1014 write_script fake-editor-utf8 <<-\EOF &&
1015 echo "utf8 body: àéìöú" >>"$1"
1016 EOF
03335f22
JH
1017 GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1018 git send-email \
1019 --compose-encoding iso-8859-2 \
1020 --compose --subject foo \
1021 --from="Example <nobody@example.com>" \
1022 --to=nobody@example.com \
1023 --smtp-server="$(pwd)/fake.sendmail" \
1024 $patches &&
62e00690
KM
1025 grep "^utf8 body" msgtxt1 &&
1026 grep "^Content-Type: text/plain; charset=iso-8859-2" msgtxt1
1027'
1028
4a47a4dd
KM
1029test_expect_success $PREREQ '--compose-encoding adds correct MIME for subject' '
1030 clean_fake_sendmail &&
03335f22
JH
1031 GIT_EDITOR="\"$(pwd)/fake-editor\"" \
1032 git send-email \
1033 --compose-encoding iso-8859-2 \
1034 --compose --subject utf8-sübjëct \
1035 --from="Example <nobody@example.com>" \
1036 --to=nobody@example.com \
1037 --smtp-server="$(pwd)/fake.sendmail" \
1038 $patches &&
4a47a4dd
KM
1039 grep "^fake edit" msgtxt1 &&
1040 grep "^Subject: =?iso-8859-2?q?utf8-s=C3=BCbj=C3=ABct?=" msgtxt1
1041'
1042
57cd35e6 1043test_expect_success $PREREQ 'detects ambiguous reference/file conflict' '
ee756a81 1044 echo master >master &&
5df9fcf6
PH
1045 git add master &&
1046 git commit -m"add master" &&
1047 test_must_fail git send-email --dry-run master 2>errors &&
1048 grep disambiguate errors
1049'
1050
57cd35e6 1051test_expect_success $PREREQ 'feed two files' '
69f4ce55
JH
1052 rm -fr outdir &&
1053 git format-patch -2 -o outdir &&
c1f2aa45 1054 git send-email \
03335f22
JH
1055 --dry-run \
1056 --from="Example <nobody@example.com>" \
1057 --to=nobody@example.com \
1058 outdir/000?-*.patch 2>errors >out &&
69f4ce55
JH
1059 grep "^Subject: " out >subjects &&
1060 test "z$(sed -n -e 1p subjects)" = "zSubject: [PATCH 1/2] Second." &&
1061 test "z$(sed -n -e 2p subjects)" = "zSubject: [PATCH 2/2] add master"
1062'
1063
57cd35e6 1064test_expect_success $PREREQ 'in-reply-to but no threading' '
aaab4b9f
TR
1065 git send-email \
1066 --dry-run \
1067 --from="Example <nobody@example.com>" \
1068 --to=nobody@example.com \
1069 --in-reply-to="<in-reply-id@example.com>" \
84eeb687 1070 --nothread \
aaab4b9f
TR
1071 $patches |
1072 grep "In-Reply-To: <in-reply-id@example.com>"
1073'
1074
57cd35e6 1075test_expect_success $PREREQ 'no in-reply-to and no threading' '
32ae8319
MH
1076 git send-email \
1077 --dry-run \
1078 --from="Example <nobody@example.com>" \
1079 --to=nobody@example.com \
1080 --nothread \
1081 $patches $patches >stdout &&
1082 ! grep "In-Reply-To: " stdout
1083'
1084
57cd35e6 1085test_expect_success $PREREQ 'threading but no chain-reply-to' '
d67114a5
MH
1086 git send-email \
1087 --dry-run \
1088 --from="Example <nobody@example.com>" \
1089 --to=nobody@example.com \
1090 --thread \
1091 --nochain-reply-to \
1092 $patches $patches >stdout &&
1093 grep "In-Reply-To: " stdout
1094'
1095
57cd35e6 1096test_expect_success $PREREQ 'sendemail.to works' '
f434c083
SB
1097 git config --replace-all sendemail.to "Somebody <somebody@ex.com>" &&
1098 git send-email \
1099 --dry-run \
1100 --from="Example <nobody@example.com>" \
1101 $patches $patches >stdout &&
1102 grep "To: Somebody <somebody@ex.com>" stdout
1103'
1104
57cd35e6 1105test_expect_success $PREREQ '--no-to overrides sendemail.to' '
f434c083
SB
1106 git send-email \
1107 --dry-run \
1108 --from="Example <nobody@example.com>" \
1109 --no-to \
1110 --to=nobody@example.com \
1111 $patches $patches >stdout &&
1112 grep "To: nobody@example.com" stdout &&
1113 ! grep "To: Somebody <somebody@ex.com>" stdout
1114'
1115
57cd35e6 1116test_expect_success $PREREQ 'sendemail.cc works' '
f434c083
SB
1117 git config --replace-all sendemail.cc "Somebody <somebody@ex.com>" &&
1118 git send-email \
1119 --dry-run \
1120 --from="Example <nobody@example.com>" \
1121 --to=nobody@example.com \
1122 $patches $patches >stdout &&
1123 grep "Cc: Somebody <somebody@ex.com>" stdout
1124'
1125
57cd35e6 1126test_expect_success $PREREQ '--no-cc overrides sendemail.cc' '
f434c083
SB
1127 git send-email \
1128 --dry-run \
1129 --from="Example <nobody@example.com>" \
1130 --no-cc \
1131 --cc=bodies@example.com \
1132 --to=nobody@example.com \
1133 $patches $patches >stdout &&
1134 grep "Cc: bodies@example.com" stdout &&
1135 ! grep "Cc: Somebody <somebody@ex.com>" stdout
1136'
1137
57cd35e6 1138test_expect_success $PREREQ 'sendemail.bcc works' '
f434c083
SB
1139 git config --replace-all sendemail.bcc "Other <other@ex.com>" &&
1140 git send-email \
1141 --dry-run \
1142 --from="Example <nobody@example.com>" \
1143 --to=nobody@example.com \
1144 --smtp-server relay.example.com \
1145 $patches $patches >stdout &&
1146 grep "RCPT TO:<other@ex.com>" stdout
1147'
1148
57cd35e6 1149test_expect_success $PREREQ '--no-bcc overrides sendemail.bcc' '
f434c083
SB
1150 git send-email \
1151 --dry-run \
1152 --from="Example <nobody@example.com>" \
1153 --no-bcc \
1154 --bcc=bodies@example.com \
1155 --to=nobody@example.com \
1156 --smtp-server relay.example.com \
1157 $patches $patches >stdout &&
1158 grep "RCPT TO:<bodies@example.com>" stdout &&
1159 ! grep "RCPT TO:<other@ex.com>" stdout
1160'
1161
21802cd3
SB
1162test_expect_success $PREREQ 'patches To headers are used by default' '
1163 patch=`git format-patch -1 --to="bodies@example.com"` &&
1164 test_when_finished "rm $patch" &&
1165 git send-email \
1166 --dry-run \
1167 --from="Example <nobody@example.com>" \
1168 --smtp-server relay.example.com \
1169 $patch >stdout &&
1170 grep "RCPT TO:<bodies@example.com>" stdout
1171'
1172
1173test_expect_success $PREREQ 'patches To headers are appended to' '
1174 patch=`git format-patch -1 --to="bodies@example.com"` &&
1175 test_when_finished "rm $patch" &&
1176 git send-email \
1177 --dry-run \
1178 --from="Example <nobody@example.com>" \
1179 --to=nobody@example.com \
1180 --smtp-server relay.example.com \
1181 $patch >stdout &&
1182 grep "RCPT TO:<bodies@example.com>" stdout &&
1183 grep "RCPT TO:<nobody@example.com>" stdout
1184'
1185
3c3bb51c
SB
1186test_expect_success $PREREQ 'To headers from files reset each patch' '
1187 patch1=`git format-patch -1 --to="bodies@example.com"` &&
1188 patch2=`git format-patch -1 --to="other@example.com" HEAD~` &&
1189 test_when_finished "rm $patch1 && rm $patch2" &&
1190 git send-email \
1191 --dry-run \
1192 --from="Example <nobody@example.com>" \
1193 --to="nobody@example.com" \
1194 --smtp-server relay.example.com \
1195 $patch1 $patch2 >stdout &&
1196 test $(grep -c "RCPT TO:<bodies@example.com>" stdout) = 1 &&
1197 test $(grep -c "RCPT TO:<nobody@example.com>" stdout) = 2 &&
1198 test $(grep -c "RCPT TO:<other@example.com>" stdout) = 1
1199'
1200
f9444147 1201test_expect_success $PREREQ 'setup expect' '
0720a51b 1202cat >email-using-8bit <<\EOF
3cae7e5b
TR
1203From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1204Message-Id: <bogus-message-id@example.com>
1205From: author@example.com
1206Date: Sat, 12 Jun 2010 15:53:58 +0200
1207Subject: subject goes here
1208
1209Dieser deutsche Text enthält einen Umlaut!
1210EOF
f9444147 1211'
3cae7e5b 1212
5637d857 1213test_expect_success $PREREQ 'setup expect' '
0720a51b 1214 echo "Subject: subject goes here" >expected
5637d857
KM
1215'
1216
1217test_expect_success $PREREQ 'ASCII subject is not RFC2047 quoted' '
1218 clean_fake_sendmail &&
1219 echo bogus |
1220 git send-email --from=author@example.com --to=nobody@example.com \
1221 --smtp-server="$(pwd)/fake.sendmail" \
1222 --8bit-encoding=UTF-8 \
1223 email-using-8bit >stdout &&
1224 grep "Subject" msgtxt1 >actual &&
1225 test_cmp expected actual
1226'
1227
f9444147 1228test_expect_success $PREREQ 'setup expect' '
0720a51b
JH
1229 cat >content-type-decl <<-\EOF
1230 MIME-Version: 1.0
1231 Content-Type: text/plain; charset=UTF-8
1232 Content-Transfer-Encoding: 8bit
1233 EOF
f9444147 1234'
3cae7e5b 1235
57cd35e6 1236test_expect_success $PREREQ 'asks about and fixes 8bit encodings' '
3cae7e5b
TR
1237 clean_fake_sendmail &&
1238 echo |
1239 git send-email --from=author@example.com --to=nobody@example.com \
1240 --smtp-server="$(pwd)/fake.sendmail" \
1241 email-using-8bit >stdout &&
1242 grep "do not declare a Content-Transfer-Encoding" stdout &&
1243 grep email-using-8bit stdout &&
1244 grep "Which 8bit encoding" stdout &&
31832862 1245 egrep "Content|MIME" msgtxt1 >actual &&
3cae7e5b
TR
1246 test_cmp actual content-type-decl
1247'
1248
57cd35e6 1249test_expect_success $PREREQ 'sendemail.8bitEncoding works' '
3cae7e5b
TR
1250 clean_fake_sendmail &&
1251 git config sendemail.assume8bitEncoding UTF-8 &&
1252 echo bogus |
1253 git send-email --from=author@example.com --to=nobody@example.com \
1254 --smtp-server="$(pwd)/fake.sendmail" \
1255 email-using-8bit >stdout &&
31832862 1256 egrep "Content|MIME" msgtxt1 >actual &&
3cae7e5b
TR
1257 test_cmp actual content-type-decl
1258'
1259
57cd35e6 1260test_expect_success $PREREQ '--8bit-encoding overrides sendemail.8bitEncoding' '
3cae7e5b
TR
1261 clean_fake_sendmail &&
1262 git config sendemail.assume8bitEncoding "bogus too" &&
1263 echo bogus |
1264 git send-email --from=author@example.com --to=nobody@example.com \
1265 --smtp-server="$(pwd)/fake.sendmail" \
1266 --8bit-encoding=UTF-8 \
1267 email-using-8bit >stdout &&
31832862 1268 egrep "Content|MIME" msgtxt1 >actual &&
3cae7e5b
TR
1269 test_cmp actual content-type-decl
1270'
1271
f9444147 1272test_expect_success $PREREQ 'setup expect' '
0720a51b
JH
1273 cat >email-using-8bit <<-\EOF
1274 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1275 Message-Id: <bogus-message-id@example.com>
1276 From: author@example.com
1277 Date: Sat, 12 Jun 2010 15:53:58 +0200
1278 Subject: Dieser Betreff enthält auch einen Umlaut!
1279
1280 Nothing to see here.
1281 EOF
f9444147 1282'
3cae7e5b 1283
f9444147 1284test_expect_success $PREREQ 'setup expect' '
0720a51b
JH
1285 cat >expected <<-\EOF
1286 Subject: =?UTF-8?q?Dieser=20Betreff=20enth=C3=A4lt=20auch=20einen=20Umlaut!?=
1287 EOF
f9444147 1288'
3cae7e5b 1289
57cd35e6 1290test_expect_success $PREREQ '--8bit-encoding also treats subject' '
3cae7e5b
TR
1291 clean_fake_sendmail &&
1292 echo bogus |
1293 git send-email --from=author@example.com --to=nobody@example.com \
1294 --smtp-server="$(pwd)/fake.sendmail" \
1295 --8bit-encoding=UTF-8 \
1296 email-using-8bit >stdout &&
1297 grep "Subject" msgtxt1 >actual &&
1298 test_cmp expected actual
1299'
1300
8d814084 1301test_expect_success $PREREQ 'setup expect' '
0720a51b
JH
1302 cat >email-using-8bit <<-\EOF
1303 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1304 Message-Id: <bogus-message-id@example.com>
1305 From: A U Thor <author@example.com>
1306 Date: Sat, 12 Jun 2010 15:53:58 +0200
1307 Content-Type: text/plain; charset=UTF-8
1308 Subject: Nothing to see here.
1309
1310 Dieser Betreff enthält auch einen Umlaut!
1311 EOF
8d814084
PB
1312'
1313
1314test_expect_success $PREREQ 'sendemail.transferencoding=7bit fails on 8bit data' '
1315 clean_fake_sendmail &&
1316 git config sendemail.transferEncoding 7bit &&
1317 test_must_fail git send-email \
03335f22
JH
1318 --transfer-encoding=7bit \
1319 --smtp-server="$(pwd)/fake.sendmail" \
1320 email-using-8bit \
1321 2>errors >out &&
8d814084
PB
1322 grep "cannot send message as 7bit" errors &&
1323 test -z "$(ls msgtxt*)"
1324'
1325
1326test_expect_success $PREREQ '--transfer-encoding overrides sendemail.transferEncoding' '
1327 clean_fake_sendmail &&
1328 git config sendemail.transferEncoding 8bit
1329 test_must_fail git send-email \
03335f22
JH
1330 --transfer-encoding=7bit \
1331 --smtp-server="$(pwd)/fake.sendmail" \
1332 email-using-8bit \
1333 2>errors >out &&
8d814084
PB
1334 grep "cannot send message as 7bit" errors &&
1335 test -z "$(ls msgtxt*)"
1336'
1337
1338test_expect_success $PREREQ 'sendemail.transferencoding=8bit' '
1339 clean_fake_sendmail &&
1340 git send-email \
03335f22
JH
1341 --transfer-encoding=8bit \
1342 --smtp-server="$(pwd)/fake.sendmail" \
1343 email-using-8bit \
1344 2>errors >out &&
8d814084
PB
1345 sed '1,/^$/d' msgtxt1 >actual &&
1346 sed '1,/^$/d' email-using-8bit >expected &&
1347 test_cmp expected actual
1348'
1349
1350test_expect_success $PREREQ 'setup expect' '
0720a51b
JH
1351 cat >expected <<-\EOF
1352 Dieser Betreff enth=C3=A4lt auch einen Umlaut!
1353 EOF
8d814084
PB
1354'
1355
1356test_expect_success $PREREQ '8-bit and sendemail.transferencoding=quoted-printable' '
1357 clean_fake_sendmail &&
1358 git send-email \
03335f22
JH
1359 --transfer-encoding=quoted-printable \
1360 --smtp-server="$(pwd)/fake.sendmail" \
1361 email-using-8bit \
1362 2>errors >out &&
8d814084
PB
1363 sed '1,/^$/d' msgtxt1 >actual &&
1364 test_cmp expected actual
1365'
1366
1367test_expect_success $PREREQ 'setup expect' '
0720a51b
JH
1368 cat >expected <<-\EOF
1369 RGllc2VyIEJldHJlZmYgZW50aMOkbHQgYXVjaCBlaW5lbiBVbWxhdXQhCg==
1370 EOF
8d814084
PB
1371'
1372
1373test_expect_success $PREREQ '8-bit and sendemail.transferencoding=base64' '
1374 clean_fake_sendmail &&
1375 git send-email \
03335f22
JH
1376 --transfer-encoding=base64 \
1377 --smtp-server="$(pwd)/fake.sendmail" \
1378 email-using-8bit \
1379 2>errors >out &&
8d814084
PB
1380 sed '1,/^$/d' msgtxt1 >actual &&
1381 test_cmp expected actual
1382'
1383
1384test_expect_success $PREREQ 'setup expect' '
0720a51b
JH
1385 cat >email-using-qp <<-\EOF
1386 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1387 Message-Id: <bogus-message-id@example.com>
1388 From: A U Thor <author@example.com>
1389 Date: Sat, 12 Jun 2010 15:53:58 +0200
1390 MIME-Version: 1.0
1391 Content-Transfer-Encoding: quoted-printable
1392 Content-Type: text/plain; charset=UTF-8
1393 Subject: Nothing to see here.
8d814084 1394
0720a51b
JH
1395 Dieser Betreff enth=C3=A4lt auch einen Umlaut!
1396 EOF
8d814084
PB
1397'
1398
1399test_expect_success $PREREQ 'convert from quoted-printable to base64' '
1400 clean_fake_sendmail &&
1401 git send-email \
03335f22
JH
1402 --transfer-encoding=base64 \
1403 --smtp-server="$(pwd)/fake.sendmail" \
1404 email-using-qp \
1405 2>errors >out &&
8d814084
PB
1406 sed '1,/^$/d' msgtxt1 >actual &&
1407 test_cmp expected actual
1408'
1409
1410test_expect_success $PREREQ 'setup expect' "
ee756a81 1411tr -d '\\015' | tr '%' '\\015' >email-using-crlf <<EOF
8d814084
PB
1412From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1413Message-Id: <bogus-message-id@example.com>
1414From: A U Thor <author@example.com>
1415Date: Sat, 12 Jun 2010 15:53:58 +0200
1416Content-Type: text/plain; charset=UTF-8
1417Subject: Nothing to see here.
1418
1419Look, I have a CRLF and an = sign!%
1420EOF
1421"
1422
1423test_expect_success $PREREQ 'setup expect' '
0720a51b
JH
1424 cat >expected <<-\EOF
1425 Look, I have a CRLF and an =3D sign!=0D
1426 EOF
8d814084
PB
1427'
1428
1429test_expect_success $PREREQ 'CRLF and sendemail.transferencoding=quoted-printable' '
1430 clean_fake_sendmail &&
1431 git send-email \
03335f22
JH
1432 --transfer-encoding=quoted-printable \
1433 --smtp-server="$(pwd)/fake.sendmail" \
1434 email-using-crlf \
1435 2>errors >out &&
8d814084
PB
1436 sed '1,/^$/d' msgtxt1 >actual &&
1437 test_cmp expected actual
1438'
1439
1440test_expect_success $PREREQ 'setup expect' '
0720a51b
JH
1441 cat >expected <<-\EOF
1442 TG9vaywgSSBoYXZlIGEgQ1JMRiBhbmQgYW4gPSBzaWduIQ0K
1443 EOF
8d814084
PB
1444'
1445
1446test_expect_success $PREREQ 'CRLF and sendemail.transferencoding=base64' '
1447 clean_fake_sendmail &&
1448 git send-email \
03335f22
JH
1449 --transfer-encoding=base64 \
1450 --smtp-server="$(pwd)/fake.sendmail" \
1451 email-using-crlf \
1452 2>errors >out &&
8d814084
PB
1453 sed '1,/^$/d' msgtxt1 >actual &&
1454 test_cmp expected actual
1455'
1456
1457
a03bc5b6
TR
1458# Note that the patches in this test are deliberately out of order; we
1459# want to make sure it works even if the cover-letter is not in the
1460# first mail.
57da2042 1461test_expect_success $PREREQ 'refusing to send cover letter template' '
a03bc5b6
TR
1462 clean_fake_sendmail &&
1463 rm -fr outdir &&
1464 git format-patch --cover-letter -2 -o outdir &&
1465 test_must_fail git send-email \
03335f22
JH
1466 --from="Example <nobody@example.com>" \
1467 --to=nobody@example.com \
1468 --smtp-server="$(pwd)/fake.sendmail" \
1469 outdir/0002-*.patch \
1470 outdir/0000-*.patch \
1471 outdir/0001-*.patch \
1472 2>errors >out &&
a03bc5b6
TR
1473 grep "SUBJECT HERE" errors &&
1474 test -z "$(ls msgtxt*)"
1475'
1476
57da2042 1477test_expect_success $PREREQ '--force sends cover letter template anyway' '
a03bc5b6
TR
1478 clean_fake_sendmail &&
1479 rm -fr outdir &&
1480 git format-patch --cover-letter -2 -o outdir &&
1481 git send-email \
03335f22
JH
1482 --force \
1483 --from="Example <nobody@example.com>" \
1484 --to=nobody@example.com \
1485 --smtp-server="$(pwd)/fake.sendmail" \
1486 outdir/0002-*.patch \
1487 outdir/0000-*.patch \
1488 outdir/0001-*.patch \
1489 2>errors >out &&
a03bc5b6
TR
1490 ! grep "SUBJECT HERE" errors &&
1491 test -n "$(ls msgtxt*)"
1492'
1493
8ccc4e42
MT
1494test_cover_addresses () {
1495 header="$1"
1496 shift
1497 clean_fake_sendmail &&
1498 rm -fr outdir &&
1499 git format-patch --cover-letter -2 -o outdir &&
1500 cover=`echo outdir/0000-*.patch` &&
1501 mv $cover cover-to-edit.patch &&
35ec002c 1502 perl -pe "s/^From:/$header: extra\@address.com\nFrom:/" cover-to-edit.patch >"$cover" &&
8ccc4e42 1503 git send-email \
03335f22
JH
1504 --force \
1505 --from="Example <nobody@example.com>" \
1506 --no-to --no-cc \
1507 "$@" \
1508 --smtp-server="$(pwd)/fake.sendmail" \
1509 outdir/0000-*.patch \
1510 outdir/0001-*.patch \
1511 outdir/0002-*.patch \
1512 2>errors >out &&
8ccc4e42
MT
1513 grep "^$header: extra@address.com" msgtxt1 >to1 &&
1514 grep "^$header: extra@address.com" msgtxt2 >to2 &&
1515 grep "^$header: extra@address.com" msgtxt3 >to3 &&
1516 test_line_count = 1 to1 &&
1517 test_line_count = 1 to2 &&
1518 test_line_count = 1 to3
1519}
1520
1521test_expect_success $PREREQ 'to-cover adds To to all mail' '
1522 test_cover_addresses "To" --to-cover
1523'
1524
1525test_expect_success $PREREQ 'cc-cover adds Cc to all mail' '
1526 test_cover_addresses "Cc" --cc-cover
1527'
1528
1529test_expect_success $PREREQ 'tocover adds To to all mail' '
1530 test_config sendemail.tocover true &&
1531 test_cover_addresses "To"
1532'
1533
1534test_expect_success $PREREQ 'cccover adds Cc to all mail' '
1535 test_config sendemail.cccover true &&
1536 test_cover_addresses "Cc"
1537'
1538
463b0ea2
CS
1539test_expect_success $PREREQ 'sendemail.aliasfiletype=mailrc' '
1540 clean_fake_sendmail &&
1541 echo "alias sbd somebody@example.org" >.mailrc &&
1542 git config --replace-all sendemail.aliasesfile "$(pwd)/.mailrc" &&
1543 git config sendemail.aliasfiletype mailrc &&
1544 git send-email \
03335f22
JH
1545 --from="Example <nobody@example.com>" \
1546 --to=sbd \
1547 --smtp-server="$(pwd)/fake.sendmail" \
1548 outdir/0001-*.patch \
1549 2>errors >out &&
463b0ea2
CS
1550 grep "^!somebody@example\.org!$" commandline1
1551'
1552
1553test_expect_success $PREREQ 'sendemail.aliasfile=~/.mailrc' '
1554 clean_fake_sendmail &&
1555 echo "alias sbd someone@example.org" >~/.mailrc &&
1556 git config --replace-all sendemail.aliasesfile "~/.mailrc" &&
1557 git config sendemail.aliasfiletype mailrc &&
1558 git send-email \
03335f22
JH
1559 --from="Example <nobody@example.com>" \
1560 --to=sbd \
1561 --smtp-server="$(pwd)/fake.sendmail" \
1562 outdir/0001-*.patch \
1563 2>errors >out &&
463b0ea2
CS
1564 grep "^!someone@example\.org!$" commandline1
1565'
1566
2cf770f5
LH
1567do_xmailer_test () {
1568 expected=$1 params=$2 &&
1569 git format-patch -1 &&
1570 git send-email \
1571 --from="Example <nobody@example.com>" \
1572 --to=someone@example.com \
1573 --smtp-server="$(pwd)/fake.sendmail" \
1574 $params \
1575 0001-*.patch \
1576 2>errors >out &&
1577 { grep '^X-Mailer:' out || :; } >mailer &&
1578 test_line_count = $expected mailer
1579}
1580
1581test_expect_success $PREREQ '--[no-]xmailer without any configuration' '
1582 do_xmailer_test 1 "--xmailer" &&
1583 do_xmailer_test 0 "--no-xmailer"
1584'
1585
1586test_expect_success $PREREQ '--[no-]xmailer with sendemail.xmailer=true' '
1587 test_config sendemail.xmailer true &&
1588 do_xmailer_test 1 "" &&
1589 do_xmailer_test 0 "--no-xmailer" &&
1590 do_xmailer_test 1 "--xmailer"
1591'
1592
1593test_expect_success $PREREQ '--[no-]xmailer with sendemail.xmailer=false' '
1594 test_config sendemail.xmailer false &&
1595 do_xmailer_test 0 "" &&
1596 do_xmailer_test 0 "--no-xmailer" &&
1597 do_xmailer_test 1 "--xmailer"
1598'
1599
ce903018 1600test_done