rebase: use correct base for --keep-base when a branch is given
[alt-git.git] / t / t9001-send-email.sh
blob42694fe58419fbf13e78f72dde91a0ac2f61e2cb
1 #!/bin/sh
3 test_description='git send-email'
4 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
5 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7 . ./test-lib.sh
9 # May be altered later in the test
10 PREREQ="PERL"
12 replace_variable_fields () {
13 sed -e "s/^\(Date:\).*/\1 DATE-STRING/" \
14 -e "s/^\(Message-Id:\).*/\1 MESSAGE-ID-STRING/" \
15 -e "s/^\(X-Mailer:\).*/\1 X-MAILER-STRING/"
18 test_expect_success $PREREQ 'prepare reference tree' '
19 echo "1A quick brown fox jumps over the" >file &&
20 echo "lazy dog" >>file &&
21 git add file &&
22 GIT_AUTHOR_NAME="A" git commit -a -m "Initial."
25 test_expect_success $PREREQ 'Setup helper tool' '
26 write_script fake.sendmail <<-\EOF &&
27 shift
28 output=1
29 while test -f commandline$output
31 output=$(($output+1))
32 done
33 for a
35 echo "!$a!"
36 done >commandline$output
37 cat >"msgtxt$output"
38 EOF
39 git add fake.sendmail &&
40 GIT_AUTHOR_NAME="A" git commit -a -m "Second."
43 clean_fake_sendmail () {
44 rm -f commandline* msgtxt*
47 test_expect_success $PREREQ 'Extract patches' '
48 patches=$(git format-patch -s --cc="One <one@example.com>" --cc=two@example.com -n HEAD^1) &&
49 threaded_patches=$(git format-patch -o threaded -s --in-reply-to="format" HEAD^1)
52 # Test no confirm early to ensure remaining tests will not hang
53 test_no_confirm () {
54 rm -f no_confirm_okay
55 echo n | \
56 GIT_SEND_EMAIL_NOTTY=1 \
57 git send-email \
58 --from="Example <from@example.com>" \
59 --to=nobody@example.com \
60 --smtp-server="$(pwd)/fake.sendmail" \
61 $@ \
62 $patches >stdout &&
63 ! grep "Send this email" stdout &&
64 >no_confirm_okay
67 # Exit immediately to prevent hang if a no-confirm test fails
68 check_no_confirm () {
69 if ! test -f no_confirm_okay
70 then
71 say 'confirm test failed; skipping remaining tests to prevent hanging'
72 PREREQ="$PREREQ,CHECK_NO_CONFIRM"
74 return 0
77 test_expect_success $PREREQ 'No confirm with --suppress-cc' '
78 test_no_confirm --suppress-cc=sob &&
79 check_no_confirm
83 test_expect_success $PREREQ 'No confirm with --confirm=never' '
84 test_no_confirm --confirm=never &&
85 check_no_confirm
88 # leave sendemail.confirm set to never after this so that none of the
89 # remaining tests prompt unintentionally.
90 test_expect_success $PREREQ 'No confirm with sendemail.confirm=never' '
91 git config sendemail.confirm never &&
92 test_no_confirm --compose --subject=foo &&
93 check_no_confirm
96 test_expect_success $PREREQ 'Send patches' '
97 git send-email --suppress-cc=sob --from="Example <nobody@example.com>" --to=nobody@example.com --smtp-server="$(pwd)/fake.sendmail" $patches 2>errors
100 test_expect_success $PREREQ 'setup expect' '
101 cat >expected <<-\EOF
102 !nobody@example.com!
103 !author@example.com!
104 !one@example.com!
105 !two@example.com!
109 test_expect_success $PREREQ 'Verify commandline' '
110 test_cmp expected commandline1
113 test_expect_success $PREREQ 'Send patches with --envelope-sender' '
114 clean_fake_sendmail &&
115 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
118 test_expect_success $PREREQ 'setup expect' '
119 cat >expected <<-\EOF
120 !patch@example.com!
121 !-i!
122 !nobody@example.com!
123 !author@example.com!
124 !one@example.com!
125 !two@example.com!
129 test_expect_success $PREREQ 'Verify commandline' '
130 test_cmp expected commandline1
133 test_expect_success $PREREQ 'Send patches with --envelope-sender=auto' '
134 clean_fake_sendmail &&
135 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
138 test_expect_success $PREREQ 'setup expect' '
139 cat >expected <<-\EOF
140 !nobody@example.com!
141 !-i!
142 !nobody@example.com!
143 !author@example.com!
144 !one@example.com!
145 !two@example.com!
149 test_expect_success $PREREQ 'Verify commandline' '
150 test_cmp expected commandline1
153 test_expect_success $PREREQ 'setup expect for cc trailer' "
154 cat >expected-cc <<\EOF
155 !recipient@example.com!
156 !author@example.com!
157 !one@example.com!
158 !two@example.com!
159 !three@example.com!
160 !four@example.com!
161 !five@example.com!
162 !six@example.com!
166 test_expect_success $PREREQ 'cc trailer with various syntax' '
167 test_commit cc-trailer &&
168 test_when_finished "git reset --hard HEAD^" &&
169 git commit --amend -F - <<-EOF &&
170 Test Cc: trailers.
172 Cc: one@example.com
173 Cc: <two@example.com> # trailing comments are ignored
174 Cc: <three@example.com>, <not.four@example.com> one address per line
175 Cc: "Some # Body" <four@example.com> [ <also.a.comment> ]
176 Cc: five@example.com # not.six@example.com
177 Cc: six@example.com, not.seven@example.com
179 clean_fake_sendmail &&
180 git send-email -1 --to=recipient@example.com \
181 --smtp-server="$(pwd)/fake.sendmail" &&
182 test_cmp expected-cc commandline1
185 test_expect_success $PREREQ 'setup fake get_maintainer.pl script for cc trailer' "
186 write_script expected-cc-script.sh <<-EOF
187 echo 'One Person <one@example.com> (supporter:THIS (FOO/bar))'
188 echo 'Two Person <two@example.com> (maintainer:THIS THING)'
189 echo 'Third List <three@example.com> (moderated list:THIS THING (FOO/bar))'
190 echo '<four@example.com> (moderated list:FOR THING)'
191 echo 'five@example.com (open list:FOR THING (FOO/bar))'
192 echo 'six@example.com (open list)'
196 test_expect_success $PREREQ 'cc trailer with get_maintainer.pl output' '
197 clean_fake_sendmail &&
198 git send-email -1 --to=recipient@example.com \
199 --cc-cmd=./expected-cc-script.sh \
200 --smtp-server="$(pwd)/fake.sendmail" &&
201 test_cmp expected-cc commandline1
204 test_expect_success $PREREQ 'setup expect' "
205 cat >expected-show-all-headers <<\EOF
206 0001-Second.patch
207 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
208 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
209 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
210 Dry-OK. Log says:
211 Server: relay.example.com
212 MAIL FROM:<from@example.com>
213 RCPT TO:<to@example.com>
214 RCPT TO:<cc@example.com>
215 RCPT TO:<author@example.com>
216 RCPT TO:<one@example.com>
217 RCPT TO:<two@example.com>
218 RCPT TO:<bcc@example.com>
219 From: Example <from@example.com>
220 To: to@example.com
221 Cc: cc@example.com,
222 A <author@example.com>,
223 One <one@example.com>,
224 two@example.com
225 Subject: [PATCH 1/1] Second.
226 Date: DATE-STRING
227 Message-Id: MESSAGE-ID-STRING
228 X-Mailer: X-MAILER-STRING
229 In-Reply-To: <unique-message-id@example.com>
230 References: <unique-message-id@example.com>
231 Reply-To: Reply <reply@example.com>
232 MIME-Version: 1.0
233 Content-Transfer-Encoding: 8bit
235 Result: OK
239 test_suppress_self () {
240 test_commit $3 &&
241 test_when_finished "git reset --hard HEAD^" &&
243 write_script cccmd-sed <<-EOF &&
244 sed -n -e s/^cccmd--//p "\$1"
247 git commit --amend --author="$1 <$2>" -F - &&
248 clean_fake_sendmail &&
249 git format-patch --stdout -1 >"suppress-self-$3.patch" &&
251 git send-email --from="$1 <$2>" \
252 --to=nobody@example.com \
253 --cc-cmd=./cccmd-sed \
254 --suppress-cc=self \
255 --smtp-server="$(pwd)/fake.sendmail" \
256 suppress-self-$3.patch &&
258 mv msgtxt1 msgtxt1-$3 &&
259 sed -e '/^$/q' msgtxt1-$3 >"msghdr1-$3" &&
261 (grep '^Cc:' msghdr1-$3 >"actual-no-cc-$3";
262 test_must_be_empty actual-no-cc-$3)
265 test_suppress_self_unquoted () {
266 test_suppress_self "$1" "$2" "unquoted-$3" <<-EOF
267 test suppress-cc.self unquoted-$3 with name $1 email $2
269 unquoted-$3
271 cccmd--$1 <$2>
273 Cc: $1 <$2>
274 Signed-off-by: $1 <$2>
278 test_suppress_self_quoted () {
279 test_suppress_self "$1" "$2" "quoted-$3" <<-EOF
280 test suppress-cc.self quoted-$3 with name $1 email $2
282 quoted-$3
284 cccmd--"$1" <$2>
286 Cc: $1 <$2>
287 Cc: "$1" <$2>
288 Signed-off-by: $1 <$2>
289 Signed-off-by: "$1" <$2>
293 test_expect_success $PREREQ 'self name is suppressed' "
294 test_suppress_self_unquoted 'A U Thor' 'author@example.com' \
295 'self_name_suppressed'
298 test_expect_success $PREREQ 'self name with dot is suppressed' "
299 test_suppress_self_quoted 'A U. Thor' 'author@example.com' \
300 'self_name_dot_suppressed'
303 test_expect_success $PREREQ 'non-ascii self name is suppressed' "
304 test_suppress_self_quoted 'Füñný Nâmé' 'odd_?=mail@example.com' \
305 'non_ascii_self_suppressed'
308 # This name is long enough to force format-patch to split it into multiple
309 # encoded-words, assuming it uses UTF-8 with the "Q" encoding.
310 test_expect_success $PREREQ 'long non-ascii self name is suppressed' "
311 test_suppress_self_quoted 'Ƒüñníęř €. Nâṁé' 'odd_?=mail@example.com' \
312 'long_non_ascii_self_suppressed'
315 test_expect_success $PREREQ 'sanitized self name is suppressed' "
316 test_suppress_self_unquoted '\"A U. Thor\"' 'author@example.com' \
317 'self_name_sanitized_suppressed'
320 test_expect_success $PREREQ 'Show all headers' '
321 git send-email \
322 --dry-run \
323 --suppress-cc=sob \
324 --from="Example <from@example.com>" \
325 --reply-to="Reply <reply@example.com>" \
326 --to=to@example.com \
327 --cc=cc@example.com \
328 --bcc=bcc@example.com \
329 --in-reply-to="<unique-message-id@example.com>" \
330 --smtp-server relay.example.com \
331 $patches | replace_variable_fields \
332 >actual-show-all-headers &&
333 test_cmp expected-show-all-headers actual-show-all-headers
336 test_expect_success $PREREQ 'Prompting works' '
337 clean_fake_sendmail &&
338 (echo "to@example.com" &&
339 echo ""
340 ) | GIT_SEND_EMAIL_NOTTY=1 git send-email \
341 --smtp-server="$(pwd)/fake.sendmail" \
342 $patches \
343 2>errors &&
344 grep "^From: A U Thor <author@example.com>\$" msgtxt1 &&
345 grep "^To: to@example.com\$" msgtxt1
348 test_expect_success $PREREQ,AUTOIDENT 'implicit ident is allowed' '
349 clean_fake_sendmail &&
350 (sane_unset GIT_AUTHOR_NAME &&
351 sane_unset GIT_AUTHOR_EMAIL &&
352 sane_unset GIT_COMMITTER_NAME &&
353 sane_unset GIT_COMMITTER_EMAIL &&
354 GIT_SEND_EMAIL_NOTTY=1 git send-email \
355 --smtp-server="$(pwd)/fake.sendmail" \
356 --to=to@example.com \
357 $patches </dev/null 2>errors
361 test_expect_success $PREREQ,!AUTOIDENT 'broken implicit ident aborts send-email' '
362 clean_fake_sendmail &&
363 (sane_unset GIT_AUTHOR_NAME &&
364 sane_unset GIT_AUTHOR_EMAIL &&
365 sane_unset GIT_COMMITTER_NAME &&
366 sane_unset GIT_COMMITTER_EMAIL &&
367 GIT_SEND_EMAIL_NOTTY=1 && export GIT_SEND_EMAIL_NOTTY &&
368 test_must_fail git send-email \
369 --smtp-server="$(pwd)/fake.sendmail" \
370 --to=to@example.com \
371 $patches </dev/null 2>errors &&
372 test_i18ngrep "tell me who you are" errors
376 test_expect_success $PREREQ 'setup tocmd and cccmd scripts' '
377 write_script tocmd-sed <<-\EOF &&
378 sed -n -e "s/^tocmd--//p" "$1"
380 write_script cccmd-sed <<-\EOF
381 sed -n -e "s/^cccmd--//p" "$1"
385 test_expect_success $PREREQ 'tocmd works' '
386 clean_fake_sendmail &&
387 cp $patches tocmd.patch &&
388 echo tocmd--tocmd@example.com >>tocmd.patch &&
389 git send-email \
390 --from="Example <nobody@example.com>" \
391 --to-cmd=./tocmd-sed \
392 --smtp-server="$(pwd)/fake.sendmail" \
393 tocmd.patch \
395 grep "^To: tocmd@example.com" msgtxt1
398 test_expect_success $PREREQ 'cccmd works' '
399 clean_fake_sendmail &&
400 cp $patches cccmd.patch &&
401 echo "cccmd-- cccmd@example.com" >>cccmd.patch &&
402 git send-email \
403 --from="Example <nobody@example.com>" \
404 --to=nobody@example.com \
405 --cc-cmd=./cccmd-sed \
406 --smtp-server="$(pwd)/fake.sendmail" \
407 cccmd.patch \
409 grep "^ cccmd@example.com" msgtxt1
412 test_expect_success $PREREQ 'reject long lines' '
413 z8=zzzzzzzz &&
414 z64=$z8$z8$z8$z8$z8$z8$z8$z8 &&
415 z512=$z64$z64$z64$z64$z64$z64$z64$z64 &&
416 clean_fake_sendmail &&
417 cp $patches longline.patch &&
418 cat >>longline.patch <<-EOF &&
419 $z512$z512
420 not a long line
421 $z512$z512
423 test_must_fail git send-email \
424 --from="Example <nobody@example.com>" \
425 --to=nobody@example.com \
426 --smtp-server="$(pwd)/fake.sendmail" \
427 --transfer-encoding=8bit \
428 $patches longline.patch \
429 2>actual &&
430 cat >expect <<-\EOF &&
431 fatal: longline.patch:35 is longer than 998 characters
432 warning: no patches were sent
434 test_cmp expect actual
437 test_expect_success $PREREQ 'no patch was sent' '
438 ! test -e commandline1
441 test_expect_success $PREREQ 'Author From: in message body' '
442 clean_fake_sendmail &&
443 git send-email \
444 --from="Example <nobody@example.com>" \
445 --to=nobody@example.com \
446 --smtp-server="$(pwd)/fake.sendmail" \
447 $patches &&
448 sed "1,/^\$/d" <msgtxt1 >msgbody1 &&
449 grep "From: A <author@example.com>" msgbody1
452 test_expect_success $PREREQ 'Author From: not in message body' '
453 clean_fake_sendmail &&
454 git send-email \
455 --from="A <author@example.com>" \
456 --to=nobody@example.com \
457 --smtp-server="$(pwd)/fake.sendmail" \
458 $patches &&
459 sed "1,/^\$/d" <msgtxt1 >msgbody1 &&
460 ! grep "From: A <author@example.com>" msgbody1
463 test_expect_success $PREREQ 'allow long lines with --no-validate' '
464 git send-email \
465 --from="Example <nobody@example.com>" \
466 --to=nobody@example.com \
467 --smtp-server="$(pwd)/fake.sendmail" \
468 --no-validate \
469 $patches longline.patch \
470 2>errors
473 test_expect_success $PREREQ 'short lines with auto encoding are 8bit' '
474 clean_fake_sendmail &&
475 git send-email \
476 --from="A <author@example.com>" \
477 --to=nobody@example.com \
478 --smtp-server="$(pwd)/fake.sendmail" \
479 --transfer-encoding=auto \
480 $patches &&
481 grep "Content-Transfer-Encoding: 8bit" msgtxt1
484 test_expect_success $PREREQ 'long lines with auto encoding are quoted-printable' '
485 clean_fake_sendmail &&
486 git send-email \
487 --from="Example <nobody@example.com>" \
488 --to=nobody@example.com \
489 --smtp-server="$(pwd)/fake.sendmail" \
490 --transfer-encoding=auto \
491 --no-validate \
492 longline.patch &&
493 grep "Content-Transfer-Encoding: quoted-printable" msgtxt1
496 test_expect_success $PREREQ 'carriage returns with auto encoding are quoted-printable' '
497 clean_fake_sendmail &&
498 cp $patches cr.patch &&
499 printf "this is a line\r\n" >>cr.patch &&
500 git send-email \
501 --from="Example <nobody@example.com>" \
502 --to=nobody@example.com \
503 --smtp-server="$(pwd)/fake.sendmail" \
504 --transfer-encoding=auto \
505 --no-validate \
506 cr.patch &&
507 grep "Content-Transfer-Encoding: quoted-printable" msgtxt1
510 for enc in auto quoted-printable base64
512 test_expect_success $PREREQ "--validate passes with encoding $enc" '
513 git send-email \
514 --from="Example <nobody@example.com>" \
515 --to=nobody@example.com \
516 --smtp-server="$(pwd)/fake.sendmail" \
517 --transfer-encoding=$enc \
518 --validate \
519 $patches longline.patch
522 done
524 test_expect_success $PREREQ "--validate respects relative core.hooksPath path" '
525 clean_fake_sendmail &&
526 mkdir my-hooks &&
527 test_when_finished "rm my-hooks.ran" &&
528 write_script my-hooks/sendemail-validate <<-\EOF &&
529 >my-hooks.ran
530 exit 1
532 test_config core.hooksPath "my-hooks" &&
533 test_must_fail git send-email \
534 --from="Example <nobody@example.com>" \
535 --to=nobody@example.com \
536 --smtp-server="$(pwd)/fake.sendmail" \
537 --validate \
538 longline.patch 2>actual &&
539 test_path_is_file my-hooks.ran &&
540 cat >expect <<-EOF &&
541 fatal: longline.patch: rejected by sendemail-validate hook
542 fatal: command '"'"'git hook run --ignore-missing sendemail-validate -- <patch>'"'"' died with exit code 1
543 warning: no patches were sent
545 test_cmp expect actual
548 test_expect_success $PREREQ "--validate respects absolute core.hooksPath path" '
549 hooks_path="$(pwd)/my-hooks" &&
550 test_config core.hooksPath "$hooks_path" &&
551 test_when_finished "rm my-hooks.ran" &&
552 test_must_fail git send-email \
553 --from="Example <nobody@example.com>" \
554 --to=nobody@example.com \
555 --smtp-server="$(pwd)/fake.sendmail" \
556 --validate \
557 longline.patch 2>actual &&
558 test_path_is_file my-hooks.ran &&
559 cat >expect <<-EOF &&
560 fatal: longline.patch: rejected by sendemail-validate hook
561 fatal: command '"'"'git hook run --ignore-missing sendemail-validate -- <patch>'"'"' died with exit code 1
562 warning: no patches were sent
564 test_cmp expect actual
567 for enc in 7bit 8bit quoted-printable base64
569 test_expect_success $PREREQ "--transfer-encoding=$enc produces correct header" '
570 clean_fake_sendmail &&
571 git send-email \
572 --from="Example <nobody@example.com>" \
573 --to=nobody@example.com \
574 --smtp-server="$(pwd)/fake.sendmail" \
575 --transfer-encoding=$enc \
576 $patches &&
577 grep "Content-Transfer-Encoding: $enc" msgtxt1
579 done
581 test_expect_success $PREREQ 'Invalid In-Reply-To' '
582 clean_fake_sendmail &&
583 git send-email \
584 --from="Example <nobody@example.com>" \
585 --to=nobody@example.com \
586 --in-reply-to=" " \
587 --smtp-server="$(pwd)/fake.sendmail" \
588 $patches \
589 2>errors &&
590 ! grep "^In-Reply-To: < *>" msgtxt1
593 test_expect_success $PREREQ 'Valid In-Reply-To when prompting' '
594 clean_fake_sendmail &&
595 (echo "From Example <from@example.com>" &&
596 echo "To Example <to@example.com>" &&
597 echo ""
598 ) | GIT_SEND_EMAIL_NOTTY=1 git send-email \
599 --smtp-server="$(pwd)/fake.sendmail" \
600 $patches 2>errors &&
601 ! grep "^In-Reply-To: < *>" msgtxt1
604 test_expect_success $PREREQ 'In-Reply-To without --chain-reply-to' '
605 clean_fake_sendmail &&
606 echo "<unique-message-id@example.com>" >expect &&
607 git send-email \
608 --from="Example <nobody@example.com>" \
609 --to=nobody@example.com \
610 --no-chain-reply-to \
611 --in-reply-to="$(cat expect)" \
612 --smtp-server="$(pwd)/fake.sendmail" \
613 $patches $patches $patches \
614 2>errors &&
615 # The first message is a reply to --in-reply-to
616 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt1 >actual &&
617 test_cmp expect actual &&
618 # Second and subsequent messages are replies to the first one
619 sed -n -e "s/^Message-Id: *\(.*\)/\1/p" msgtxt1 >expect &&
620 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt2 >actual &&
621 test_cmp expect actual &&
622 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt3 >actual &&
623 test_cmp expect actual
626 test_expect_success $PREREQ 'In-Reply-To with --chain-reply-to' '
627 clean_fake_sendmail &&
628 echo "<unique-message-id@example.com>" >expect &&
629 git send-email \
630 --from="Example <nobody@example.com>" \
631 --to=nobody@example.com \
632 --chain-reply-to \
633 --in-reply-to="$(cat expect)" \
634 --smtp-server="$(pwd)/fake.sendmail" \
635 $patches $patches $patches \
636 2>errors &&
637 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt1 >actual &&
638 test_cmp expect actual &&
639 sed -n -e "s/^Message-Id: *\(.*\)/\1/p" msgtxt1 >expect &&
640 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt2 >actual &&
641 test_cmp expect actual &&
642 sed -n -e "s/^Message-Id: *\(.*\)/\1/p" msgtxt2 >expect &&
643 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt3 >actual &&
644 test_cmp expect actual
647 test_set_editor "$(pwd)/fake-editor"
649 test_expect_success $PREREQ 'setup erroring fake editor' '
650 write_script fake-editor <<-\EOF
651 echo >&2 "I am about to error"
652 exit 1
656 test_expect_success $PREREQ 'fake editor dies with error' '
657 clean_fake_sendmail &&
658 test_must_fail git send-email \
659 --compose --subject foo \
660 --from="Example <nobody@example.com>" \
661 --to=nobody@example.com \
662 --smtp-server="$(pwd)/fake.sendmail" \
663 $patches 2>err &&
664 grep "I am about to error" err &&
665 grep "the editor exited uncleanly, aborting everything" err
668 test_expect_success $PREREQ 'setup fake editor' '
669 write_script fake-editor <<-\EOF
670 echo fake edit >>"$1"
674 test_expect_success $PREREQ '--compose works' '
675 clean_fake_sendmail &&
676 git send-email \
677 --compose --subject foo \
678 --from="Example <nobody@example.com>" \
679 --to=nobody@example.com \
680 --smtp-server="$(pwd)/fake.sendmail" \
681 $patches \
682 2>errors
685 test_expect_success $PREREQ 'first message is compose text' '
686 grep "^fake edit" msgtxt1
689 test_expect_success $PREREQ 'second message is patch' '
690 grep "Subject:.*Second" msgtxt2
693 test_expect_success $PREREQ 'setup expect' "
694 cat >expected-suppress-sob <<\EOF
695 0001-Second.patch
696 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
697 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
698 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
699 Dry-OK. Log says:
700 Server: relay.example.com
701 MAIL FROM:<from@example.com>
702 RCPT TO:<to@example.com>
703 RCPT TO:<cc@example.com>
704 RCPT TO:<author@example.com>
705 RCPT TO:<one@example.com>
706 RCPT TO:<two@example.com>
707 From: Example <from@example.com>
708 To: to@example.com
709 Cc: cc@example.com,
710 A <author@example.com>,
711 One <one@example.com>,
712 two@example.com
713 Subject: [PATCH 1/1] Second.
714 Date: DATE-STRING
715 Message-Id: MESSAGE-ID-STRING
716 X-Mailer: X-MAILER-STRING
717 MIME-Version: 1.0
718 Content-Transfer-Encoding: 8bit
720 Result: OK
724 test_suppression () {
725 git send-email \
726 --dry-run \
727 --suppress-cc=$1 ${2+"--suppress-cc=$2"} \
728 --from="Example <from@example.com>" \
729 --to=to@example.com \
730 --smtp-server relay.example.com \
731 $patches | replace_variable_fields \
732 >actual-suppress-$1${2+"-$2"} &&
733 test_cmp expected-suppress-$1${2+"-$2"} actual-suppress-$1${2+"-$2"}
736 test_expect_success $PREREQ 'sendemail.cc set' '
737 git config sendemail.cc cc@example.com &&
738 test_suppression sob
741 test_expect_success $PREREQ 'setup expect' "
742 cat >expected-suppress-sob <<\EOF
743 0001-Second.patch
744 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
745 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
746 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
747 Dry-OK. Log says:
748 Server: relay.example.com
749 MAIL FROM:<from@example.com>
750 RCPT TO:<to@example.com>
751 RCPT TO:<author@example.com>
752 RCPT TO:<one@example.com>
753 RCPT TO:<two@example.com>
754 From: Example <from@example.com>
755 To: to@example.com
756 Cc: A <author@example.com>,
757 One <one@example.com>,
758 two@example.com
759 Subject: [PATCH 1/1] Second.
760 Date: DATE-STRING
761 Message-Id: MESSAGE-ID-STRING
762 X-Mailer: X-MAILER-STRING
763 MIME-Version: 1.0
764 Content-Transfer-Encoding: 8bit
766 Result: OK
770 test_expect_success $PREREQ 'sendemail.cc unset' '
771 git config --unset sendemail.cc &&
772 test_suppression sob
775 test_expect_success $PREREQ 'setup expect' "
776 cat >expected-suppress-cccmd <<\EOF
777 0001-Second.patch
778 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
779 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
780 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
781 (body) Adding cc: C O Mitter <committer@example.com> from line 'Signed-off-by: C O Mitter <committer@example.com>'
782 Dry-OK. Log says:
783 Server: relay.example.com
784 MAIL FROM:<from@example.com>
785 RCPT TO:<to@example.com>
786 RCPT TO:<author@example.com>
787 RCPT TO:<one@example.com>
788 RCPT TO:<two@example.com>
789 RCPT TO:<committer@example.com>
790 From: Example <from@example.com>
791 To: to@example.com
792 Cc: A <author@example.com>,
793 One <one@example.com>,
794 two@example.com,
795 C O Mitter <committer@example.com>
796 Subject: [PATCH 1/1] Second.
797 Date: DATE-STRING
798 Message-Id: MESSAGE-ID-STRING
799 X-Mailer: X-MAILER-STRING
800 MIME-Version: 1.0
801 Content-Transfer-Encoding: 8bit
803 Result: OK
807 test_expect_success $PREREQ 'sendemail.cccmd' '
808 write_script cccmd <<-\EOF &&
809 echo cc-cmd@example.com
811 git config sendemail.cccmd ./cccmd &&
812 test_suppression cccmd
815 test_expect_success $PREREQ 'setup expect' '
816 cat >expected-suppress-all <<\EOF
817 0001-Second.patch
818 Dry-OK. Log says:
819 Server: relay.example.com
820 MAIL FROM:<from@example.com>
821 RCPT TO:<to@example.com>
822 From: Example <from@example.com>
823 To: to@example.com
824 Subject: [PATCH 1/1] Second.
825 Date: DATE-STRING
826 Message-Id: MESSAGE-ID-STRING
827 X-Mailer: X-MAILER-STRING
828 MIME-Version: 1.0
829 Content-Transfer-Encoding: 8bit
831 Result: OK
835 test_expect_success $PREREQ '--suppress-cc=all' '
836 test_suppression all
839 test_expect_success $PREREQ 'setup expect' "
840 cat >expected-suppress-body <<\EOF
841 0001-Second.patch
842 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
843 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
844 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
845 (cc-cmd) Adding cc: cc-cmd@example.com from: './cccmd'
846 Dry-OK. Log says:
847 Server: relay.example.com
848 MAIL FROM:<from@example.com>
849 RCPT TO:<to@example.com>
850 RCPT TO:<author@example.com>
851 RCPT TO:<one@example.com>
852 RCPT TO:<two@example.com>
853 RCPT TO:<cc-cmd@example.com>
854 From: Example <from@example.com>
855 To: to@example.com
856 Cc: A <author@example.com>,
857 One <one@example.com>,
858 two@example.com,
859 cc-cmd@example.com
860 Subject: [PATCH 1/1] Second.
861 Date: DATE-STRING
862 Message-Id: MESSAGE-ID-STRING
863 X-Mailer: X-MAILER-STRING
864 MIME-Version: 1.0
865 Content-Transfer-Encoding: 8bit
867 Result: OK
871 test_expect_success $PREREQ '--suppress-cc=body' '
872 test_suppression body
875 test_expect_success $PREREQ 'setup expect' "
876 cat >expected-suppress-body-cccmd <<\EOF
877 0001-Second.patch
878 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
879 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
880 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
881 Dry-OK. Log says:
882 Server: relay.example.com
883 MAIL FROM:<from@example.com>
884 RCPT TO:<to@example.com>
885 RCPT TO:<author@example.com>
886 RCPT TO:<one@example.com>
887 RCPT TO:<two@example.com>
888 From: Example <from@example.com>
889 To: to@example.com
890 Cc: A <author@example.com>,
891 One <one@example.com>,
892 two@example.com
893 Subject: [PATCH 1/1] Second.
894 Date: DATE-STRING
895 Message-Id: MESSAGE-ID-STRING
896 X-Mailer: X-MAILER-STRING
897 MIME-Version: 1.0
898 Content-Transfer-Encoding: 8bit
900 Result: OK
904 test_expect_success $PREREQ '--suppress-cc=body --suppress-cc=cccmd' '
905 test_suppression body cccmd
908 test_expect_success $PREREQ 'setup expect' "
909 cat >expected-suppress-sob <<\EOF
910 0001-Second.patch
911 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
912 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
913 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
914 Dry-OK. Log says:
915 Server: relay.example.com
916 MAIL FROM:<from@example.com>
917 RCPT TO:<to@example.com>
918 RCPT TO:<author@example.com>
919 RCPT TO:<one@example.com>
920 RCPT TO:<two@example.com>
921 From: Example <from@example.com>
922 To: to@example.com
923 Cc: A <author@example.com>,
924 One <one@example.com>,
925 two@example.com
926 Subject: [PATCH 1/1] Second.
927 Date: DATE-STRING
928 Message-Id: MESSAGE-ID-STRING
929 X-Mailer: X-MAILER-STRING
930 MIME-Version: 1.0
931 Content-Transfer-Encoding: 8bit
933 Result: OK
937 test_expect_success $PREREQ '--suppress-cc=sob' '
938 test_might_fail git config --unset sendemail.cccmd &&
939 test_suppression sob
942 test_expect_success $PREREQ 'setup expect' "
943 cat >expected-suppress-bodycc <<\EOF
944 0001-Second.patch
945 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
946 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
947 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
948 (body) Adding cc: C O Mitter <committer@example.com> from line 'Signed-off-by: C O Mitter <committer@example.com>'
949 Dry-OK. Log says:
950 Server: relay.example.com
951 MAIL FROM:<from@example.com>
952 RCPT TO:<to@example.com>
953 RCPT TO:<author@example.com>
954 RCPT TO:<one@example.com>
955 RCPT TO:<two@example.com>
956 RCPT TO:<committer@example.com>
957 From: Example <from@example.com>
958 To: to@example.com
959 Cc: A <author@example.com>,
960 One <one@example.com>,
961 two@example.com,
962 C O Mitter <committer@example.com>
963 Subject: [PATCH 1/1] Second.
964 Date: DATE-STRING
965 Message-Id: MESSAGE-ID-STRING
966 X-Mailer: X-MAILER-STRING
967 MIME-Version: 1.0
968 Content-Transfer-Encoding: 8bit
970 Result: OK
974 test_expect_success $PREREQ '--suppress-cc=bodycc' '
975 test_suppression bodycc
978 test_expect_success $PREREQ 'setup expect' "
979 cat >expected-suppress-cc <<\EOF
980 0001-Second.patch
981 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
982 (body) Adding cc: C O Mitter <committer@example.com> from line 'Signed-off-by: C O Mitter <committer@example.com>'
983 Dry-OK. Log says:
984 Server: relay.example.com
985 MAIL FROM:<from@example.com>
986 RCPT TO:<to@example.com>
987 RCPT TO:<author@example.com>
988 RCPT TO:<committer@example.com>
989 From: Example <from@example.com>
990 To: to@example.com
991 Cc: A <author@example.com>,
992 C O Mitter <committer@example.com>
993 Subject: [PATCH 1/1] Second.
994 Date: DATE-STRING
995 Message-Id: MESSAGE-ID-STRING
996 X-Mailer: X-MAILER-STRING
997 MIME-Version: 1.0
998 Content-Transfer-Encoding: 8bit
1000 Result: OK
1004 test_expect_success $PREREQ '--suppress-cc=cc' '
1005 test_suppression cc
1008 test_confirm () {
1009 echo y | \
1010 GIT_SEND_EMAIL_NOTTY=1 \
1011 git send-email \
1012 --from="Example <nobody@example.com>" \
1013 --to=nobody@example.com \
1014 --smtp-server="$(pwd)/fake.sendmail" \
1015 $@ $patches >stdout &&
1016 grep "Send this email" stdout
1019 test_expect_success $PREREQ '--confirm=always' '
1020 test_confirm --confirm=always --suppress-cc=all
1023 test_expect_success $PREREQ '--confirm=auto' '
1024 test_confirm --confirm=auto
1027 test_expect_success $PREREQ '--confirm=cc' '
1028 test_confirm --confirm=cc
1031 test_expect_success $PREREQ '--confirm=compose' '
1032 test_confirm --confirm=compose --compose
1035 test_expect_success $PREREQ 'confirm by default (due to cc)' '
1036 test_when_finished git config sendemail.confirm never &&
1037 git config --unset sendemail.confirm &&
1038 test_confirm
1041 test_expect_success $PREREQ 'confirm by default (due to --compose)' '
1042 test_when_finished git config sendemail.confirm never &&
1043 git config --unset sendemail.confirm &&
1044 test_confirm --suppress-cc=all --compose
1047 test_expect_success $PREREQ 'confirm detects EOF (inform assumes y)' '
1048 test_when_finished git config sendemail.confirm never &&
1049 git config --unset sendemail.confirm &&
1050 rm -fr outdir &&
1051 git format-patch -2 -o outdir &&
1052 GIT_SEND_EMAIL_NOTTY=1 \
1053 git send-email \
1054 --from="Example <nobody@example.com>" \
1055 --to=nobody@example.com \
1056 --smtp-server="$(pwd)/fake.sendmail" \
1057 outdir/*.patch </dev/null
1060 test_expect_success $PREREQ 'confirm detects EOF (auto causes failure)' '
1061 test_when_finished git config sendemail.confirm never &&
1062 git config sendemail.confirm auto &&
1063 GIT_SEND_EMAIL_NOTTY=1 &&
1064 export GIT_SEND_EMAIL_NOTTY &&
1065 test_must_fail git send-email \
1066 --from="Example <nobody@example.com>" \
1067 --to=nobody@example.com \
1068 --smtp-server="$(pwd)/fake.sendmail" \
1069 $patches </dev/null
1072 test_expect_success $PREREQ 'confirm does not loop forever' '
1073 test_when_finished git config sendemail.confirm never &&
1074 git config sendemail.confirm auto &&
1075 GIT_SEND_EMAIL_NOTTY=1 &&
1076 export GIT_SEND_EMAIL_NOTTY &&
1077 yes "bogus" | test_must_fail git send-email \
1078 --from="Example <nobody@example.com>" \
1079 --to=nobody@example.com \
1080 --smtp-server="$(pwd)/fake.sendmail" \
1081 $patches
1084 test_expect_success $PREREQ 'utf8 Cc is rfc2047 encoded' '
1085 clean_fake_sendmail &&
1086 rm -fr outdir &&
1087 git format-patch -1 -o outdir --cc="àéìöú <utf8@example.com>" &&
1088 git send-email \
1089 --from="Example <nobody@example.com>" \
1090 --to=nobody@example.com \
1091 --smtp-server="$(pwd)/fake.sendmail" \
1092 outdir/*.patch &&
1093 grep "^ " msgtxt1 |
1094 grep "=?UTF-8?q?=C3=A0=C3=A9=C3=AC=C3=B6=C3=BA?= <utf8@example.com>"
1097 test_expect_success $PREREQ '--compose adds MIME for utf8 body' '
1098 clean_fake_sendmail &&
1099 write_script fake-editor-utf8 <<-\EOF &&
1100 echo "utf8 body: àéìöú" >>"$1"
1102 GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1103 git send-email \
1104 --compose --subject foo \
1105 --from="Example <nobody@example.com>" \
1106 --to=nobody@example.com \
1107 --smtp-server="$(pwd)/fake.sendmail" \
1108 $patches &&
1109 grep "^utf8 body" msgtxt1 &&
1110 grep "^Content-Type: text/plain; charset=UTF-8" msgtxt1
1113 test_expect_success $PREREQ '--compose respects user mime type' '
1114 clean_fake_sendmail &&
1115 write_script fake-editor-utf8-mime <<-\EOF &&
1116 cat >"$1" <<-\EOM
1117 MIME-Version: 1.0
1118 Content-Type: text/plain; charset=iso-8859-1
1119 Content-Transfer-Encoding: 8bit
1120 Subject: foo
1122 utf8 body: àéìöú
1125 GIT_EDITOR="\"$(pwd)/fake-editor-utf8-mime\"" \
1126 git send-email \
1127 --compose --subject foo \
1128 --from="Example <nobody@example.com>" \
1129 --to=nobody@example.com \
1130 --smtp-server="$(pwd)/fake.sendmail" \
1131 $patches &&
1132 grep "^utf8 body" msgtxt1 &&
1133 grep "^Content-Type: text/plain; charset=iso-8859-1" msgtxt1 &&
1134 ! grep "^Content-Type: text/plain; charset=UTF-8" msgtxt1
1137 test_expect_success $PREREQ '--compose adds MIME for utf8 subject' '
1138 clean_fake_sendmail &&
1139 GIT_EDITOR="\"$(pwd)/fake-editor\"" \
1140 git send-email \
1141 --compose --subject utf8-sübjëct \
1142 --from="Example <nobody@example.com>" \
1143 --to=nobody@example.com \
1144 --smtp-server="$(pwd)/fake.sendmail" \
1145 $patches &&
1146 grep "^fake edit" msgtxt1 &&
1147 grep "^Subject: =?UTF-8?q?utf8-s=C3=BCbj=C3=ABct?=" msgtxt1
1150 test_expect_success $PREREQ 'utf8 author is correctly passed on' '
1151 clean_fake_sendmail &&
1152 test_commit weird_author &&
1153 test_when_finished "git reset --hard HEAD^" &&
1154 git commit --amend --author "Füñný Nâmé <odd_?=mail@example.com>" &&
1155 git format-patch --stdout -1 >funny_name.patch &&
1156 git send-email --from="Example <nobody@example.com>" \
1157 --to=nobody@example.com \
1158 --smtp-server="$(pwd)/fake.sendmail" \
1159 funny_name.patch &&
1160 grep "^From: Füñný Nâmé <odd_?=mail@example.com>" msgtxt1
1163 test_expect_success $PREREQ 'utf8 sender is not duplicated' '
1164 clean_fake_sendmail &&
1165 test_commit weird_sender &&
1166 test_when_finished "git reset --hard HEAD^" &&
1167 git commit --amend --author "Füñný Nâmé <odd_?=mail@example.com>" &&
1168 git format-patch --stdout -1 >funny_name.patch &&
1169 git send-email --from="Füñný Nâmé <odd_?=mail@example.com>" \
1170 --to=nobody@example.com \
1171 --smtp-server="$(pwd)/fake.sendmail" \
1172 funny_name.patch &&
1173 grep "^From: " msgtxt1 >msgfrom &&
1174 test_line_count = 1 msgfrom
1177 test_expect_success $PREREQ 'sendemail.composeencoding works' '
1178 clean_fake_sendmail &&
1179 git config sendemail.composeencoding iso-8859-1 &&
1180 write_script fake-editor-utf8 <<-\EOF &&
1181 echo "utf8 body: àéìöú" >>"$1"
1183 GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1184 git send-email \
1185 --compose --subject foo \
1186 --from="Example <nobody@example.com>" \
1187 --to=nobody@example.com \
1188 --smtp-server="$(pwd)/fake.sendmail" \
1189 $patches &&
1190 grep "^utf8 body" msgtxt1 &&
1191 grep "^Content-Type: text/plain; charset=iso-8859-1" msgtxt1
1194 test_expect_success $PREREQ '--compose-encoding works' '
1195 clean_fake_sendmail &&
1196 write_script fake-editor-utf8 <<-\EOF &&
1197 echo "utf8 body: àéìöú" >>"$1"
1199 GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1200 git send-email \
1201 --compose-encoding iso-8859-1 \
1202 --compose --subject foo \
1203 --from="Example <nobody@example.com>" \
1204 --to=nobody@example.com \
1205 --smtp-server="$(pwd)/fake.sendmail" \
1206 $patches &&
1207 grep "^utf8 body" msgtxt1 &&
1208 grep "^Content-Type: text/plain; charset=iso-8859-1" msgtxt1
1211 test_expect_success $PREREQ '--compose-encoding overrides sendemail.composeencoding' '
1212 clean_fake_sendmail &&
1213 git config sendemail.composeencoding iso-8859-1 &&
1214 write_script fake-editor-utf8 <<-\EOF &&
1215 echo "utf8 body: àéìöú" >>"$1"
1217 GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1218 git send-email \
1219 --compose-encoding iso-8859-2 \
1220 --compose --subject foo \
1221 --from="Example <nobody@example.com>" \
1222 --to=nobody@example.com \
1223 --smtp-server="$(pwd)/fake.sendmail" \
1224 $patches &&
1225 grep "^utf8 body" msgtxt1 &&
1226 grep "^Content-Type: text/plain; charset=iso-8859-2" msgtxt1
1229 test_expect_success $PREREQ '--compose-encoding adds correct MIME for subject' '
1230 clean_fake_sendmail &&
1231 GIT_EDITOR="\"$(pwd)/fake-editor\"" \
1232 git send-email \
1233 --compose-encoding iso-8859-2 \
1234 --compose --subject utf8-sübjëct \
1235 --from="Example <nobody@example.com>" \
1236 --to=nobody@example.com \
1237 --smtp-server="$(pwd)/fake.sendmail" \
1238 $patches &&
1239 grep "^fake edit" msgtxt1 &&
1240 grep "^Subject: =?iso-8859-2?q?utf8-s=C3=BCbj=C3=ABct?=" msgtxt1
1243 test_expect_success $PREREQ 'detects ambiguous reference/file conflict' '
1244 echo main >main &&
1245 git add main &&
1246 git commit -m"add main" &&
1247 test_must_fail git send-email --dry-run main 2>errors &&
1248 grep disambiguate errors
1251 test_expect_success $PREREQ 'feed two files' '
1252 rm -fr outdir &&
1253 git format-patch -2 -o outdir &&
1254 git send-email \
1255 --dry-run \
1256 --from="Example <nobody@example.com>" \
1257 --to=nobody@example.com \
1258 outdir/000?-*.patch 2>errors >out &&
1259 grep "^Subject: " out >subjects &&
1260 test "z$(sed -n -e 1p subjects)" = "zSubject: [PATCH 1/2] Second." &&
1261 test "z$(sed -n -e 2p subjects)" = "zSubject: [PATCH 2/2] add main"
1264 test_expect_success $PREREQ 'in-reply-to but no threading' '
1265 git send-email \
1266 --dry-run \
1267 --from="Example <nobody@example.com>" \
1268 --to=nobody@example.com \
1269 --in-reply-to="<in-reply-id@example.com>" \
1270 --no-thread \
1271 $patches >out &&
1272 grep "In-Reply-To: <in-reply-id@example.com>" out
1275 test_expect_success $PREREQ 'no in-reply-to and no threading' '
1276 git send-email \
1277 --dry-run \
1278 --from="Example <nobody@example.com>" \
1279 --to=nobody@example.com \
1280 --no-thread \
1281 $patches >stdout &&
1282 ! grep "In-Reply-To: " stdout
1285 test_expect_success $PREREQ 'threading but no chain-reply-to' '
1286 git send-email \
1287 --dry-run \
1288 --from="Example <nobody@example.com>" \
1289 --to=nobody@example.com \
1290 --thread \
1291 --no-chain-reply-to \
1292 $patches $patches >stdout &&
1293 grep "In-Reply-To: " stdout
1296 test_expect_success $PREREQ 'override in-reply-to if no threading' '
1297 git send-email \
1298 --dry-run \
1299 --from="Example <nobody@example.com>" \
1300 --to=nobody@example.com \
1301 --no-thread \
1302 --in-reply-to="override" \
1303 $threaded_patches >stdout &&
1304 grep "In-Reply-To: <override>" stdout
1307 test_expect_success $PREREQ 'sendemail.to works' '
1308 git config --replace-all sendemail.to "Somebody <somebody@ex.com>" &&
1309 git send-email \
1310 --dry-run \
1311 --from="Example <nobody@example.com>" \
1312 $patches >stdout &&
1313 grep "To: Somebody <somebody@ex.com>" stdout
1316 test_expect_success $PREREQ 'setup sendemail.identity' '
1317 git config --replace-all sendemail.to "default@example.com" &&
1318 git config --replace-all sendemail.isp.to "isp@example.com" &&
1319 git config --replace-all sendemail.cloud.to "cloud@example.com"
1322 test_expect_success $PREREQ 'sendemail.identity: reads the correct identity config' '
1323 git -c sendemail.identity=cloud send-email \
1324 --dry-run \
1325 --from="nobody@example.com" \
1326 $patches >stdout &&
1327 grep "To: cloud@example.com" stdout
1330 test_expect_success $PREREQ 'sendemail.identity: identity overrides sendemail.identity' '
1331 git -c sendemail.identity=cloud send-email \
1332 --identity=isp \
1333 --dry-run \
1334 --from="nobody@example.com" \
1335 $patches >stdout &&
1336 grep "To: isp@example.com" stdout
1339 test_expect_success $PREREQ 'sendemail.identity: --no-identity clears previous identity' '
1340 git -c sendemail.identity=cloud send-email \
1341 --no-identity \
1342 --dry-run \
1343 --from="nobody@example.com" \
1344 $patches >stdout &&
1345 grep "To: default@example.com" stdout
1348 test_expect_success $PREREQ 'sendemail.identity: bool identity variable existence overrides' '
1349 git -c sendemail.identity=cloud \
1350 -c sendemail.xmailer=true \
1351 -c sendemail.cloud.xmailer=false \
1352 send-email \
1353 --dry-run \
1354 --from="nobody@example.com" \
1355 $patches >stdout &&
1356 grep "To: cloud@example.com" stdout &&
1357 ! grep "X-Mailer" stdout
1360 test_expect_success $PREREQ 'sendemail.identity: bool variable fallback' '
1361 git -c sendemail.identity=cloud \
1362 -c sendemail.xmailer=false \
1363 send-email \
1364 --dry-run \
1365 --from="nobody@example.com" \
1366 $patches >stdout &&
1367 grep "To: cloud@example.com" stdout &&
1368 ! grep "X-Mailer" stdout
1371 test_expect_success $PREREQ 'sendemail.identity: bool variable without a value' '
1372 git -c sendemail.xmailer \
1373 send-email \
1374 --dry-run \
1375 --from="nobody@example.com" \
1376 $patches >stdout &&
1377 grep "To: default@example.com" stdout &&
1378 grep "X-Mailer" stdout
1381 test_expect_success $PREREQ '--no-to overrides sendemail.to' '
1382 git send-email \
1383 --dry-run \
1384 --from="Example <nobody@example.com>" \
1385 --no-to \
1386 --to=nobody@example.com \
1387 $patches >stdout &&
1388 grep "To: nobody@example.com" stdout &&
1389 ! grep "To: Somebody <somebody@ex.com>" stdout
1392 test_expect_success $PREREQ 'sendemail.cc works' '
1393 git config --replace-all sendemail.cc "Somebody <somebody@ex.com>" &&
1394 git send-email \
1395 --dry-run \
1396 --from="Example <nobody@example.com>" \
1397 --to=nobody@example.com \
1398 $patches >stdout &&
1399 grep "Cc: Somebody <somebody@ex.com>" stdout
1402 test_expect_success $PREREQ '--no-cc overrides sendemail.cc' '
1403 git send-email \
1404 --dry-run \
1405 --from="Example <nobody@example.com>" \
1406 --no-cc \
1407 --cc=bodies@example.com \
1408 --to=nobody@example.com \
1409 $patches >stdout &&
1410 grep "Cc: bodies@example.com" stdout &&
1411 ! grep "Cc: Somebody <somebody@ex.com>" stdout
1414 test_expect_success $PREREQ 'sendemail.bcc works' '
1415 git config --replace-all sendemail.bcc "Other <other@ex.com>" &&
1416 git send-email \
1417 --dry-run \
1418 --from="Example <nobody@example.com>" \
1419 --to=nobody@example.com \
1420 --smtp-server relay.example.com \
1421 $patches >stdout &&
1422 grep "RCPT TO:<other@ex.com>" stdout
1425 test_expect_success $PREREQ '--no-bcc overrides sendemail.bcc' '
1426 git send-email \
1427 --dry-run \
1428 --from="Example <nobody@example.com>" \
1429 --no-bcc \
1430 --bcc=bodies@example.com \
1431 --to=nobody@example.com \
1432 --smtp-server relay.example.com \
1433 $patches >stdout &&
1434 grep "RCPT TO:<bodies@example.com>" stdout &&
1435 ! grep "RCPT TO:<other@ex.com>" stdout
1438 test_expect_success $PREREQ 'patches To headers are used by default' '
1439 patch=$(git format-patch -1 --to="bodies@example.com") &&
1440 test_when_finished "rm $patch" &&
1441 git send-email \
1442 --dry-run \
1443 --from="Example <nobody@example.com>" \
1444 --smtp-server relay.example.com \
1445 $patch >stdout &&
1446 grep "RCPT TO:<bodies@example.com>" stdout
1449 test_expect_success $PREREQ 'patches To headers are appended to' '
1450 patch=$(git format-patch -1 --to="bodies@example.com") &&
1451 test_when_finished "rm $patch" &&
1452 git send-email \
1453 --dry-run \
1454 --from="Example <nobody@example.com>" \
1455 --to=nobody@example.com \
1456 --smtp-server relay.example.com \
1457 $patch >stdout &&
1458 grep "RCPT TO:<bodies@example.com>" stdout &&
1459 grep "RCPT TO:<nobody@example.com>" stdout
1462 test_expect_success $PREREQ 'To headers from files reset each patch' '
1463 patch1=$(git format-patch -1 --to="bodies@example.com") &&
1464 patch2=$(git format-patch -1 --to="other@example.com" HEAD~) &&
1465 test_when_finished "rm $patch1 && rm $patch2" &&
1466 git send-email \
1467 --dry-run \
1468 --from="Example <nobody@example.com>" \
1469 --to="nobody@example.com" \
1470 --smtp-server relay.example.com \
1471 $patch1 $patch2 >stdout &&
1472 test $(grep -c "RCPT TO:<bodies@example.com>" stdout) = 1 &&
1473 test $(grep -c "RCPT TO:<nobody@example.com>" stdout) = 2 &&
1474 test $(grep -c "RCPT TO:<other@example.com>" stdout) = 1
1477 test_expect_success $PREREQ 'setup expect' '
1478 cat >email-using-8bit <<\EOF
1479 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1480 Message-Id: <bogus-message-id@example.com>
1481 From: author@example.com
1482 Date: Sat, 12 Jun 2010 15:53:58 +0200
1483 Subject: subject goes here
1485 Dieser deutsche Text enthält einen Umlaut!
1489 test_expect_success $PREREQ 'setup expect' '
1490 echo "Subject: subject goes here" >expected
1493 test_expect_success $PREREQ 'ASCII subject is not RFC2047 quoted' '
1494 clean_fake_sendmail &&
1495 echo bogus |
1496 git send-email --from=author@example.com --to=nobody@example.com \
1497 --smtp-server="$(pwd)/fake.sendmail" \
1498 --8bit-encoding=UTF-8 \
1499 email-using-8bit >stdout &&
1500 grep "Subject" msgtxt1 >actual &&
1501 test_cmp expected actual
1504 test_expect_success $PREREQ 'setup expect' '
1505 cat >content-type-decl <<-\EOF
1506 MIME-Version: 1.0
1507 Content-Type: text/plain; charset=UTF-8
1508 Content-Transfer-Encoding: 8bit
1512 test_expect_success $PREREQ 'asks about and fixes 8bit encodings' '
1513 clean_fake_sendmail &&
1514 echo |
1515 git send-email --from=author@example.com --to=nobody@example.com \
1516 --smtp-server="$(pwd)/fake.sendmail" \
1517 email-using-8bit >stdout &&
1518 grep "do not declare a Content-Transfer-Encoding" stdout &&
1519 grep email-using-8bit stdout &&
1520 grep "Which 8bit encoding" stdout &&
1521 egrep "Content|MIME" msgtxt1 >actual &&
1522 test_cmp content-type-decl actual
1525 test_expect_success $PREREQ 'sendemail.8bitEncoding works' '
1526 clean_fake_sendmail &&
1527 git config sendemail.assume8bitEncoding UTF-8 &&
1528 echo bogus |
1529 git send-email --from=author@example.com --to=nobody@example.com \
1530 --smtp-server="$(pwd)/fake.sendmail" \
1531 email-using-8bit >stdout &&
1532 egrep "Content|MIME" msgtxt1 >actual &&
1533 test_cmp content-type-decl actual
1536 test_expect_success $PREREQ 'sendemail.8bitEncoding in .git/config overrides --global .gitconfig' '
1537 clean_fake_sendmail &&
1538 git config sendemail.assume8bitEncoding UTF-8 &&
1539 test_when_finished "rm -rf home" &&
1540 mkdir home &&
1541 git config -f home/.gitconfig sendemail.assume8bitEncoding "bogus too" &&
1542 echo bogus |
1543 env HOME="$(pwd)/home" DEBUG=1 \
1544 git send-email --from=author@example.com --to=nobody@example.com \
1545 --smtp-server="$(pwd)/fake.sendmail" \
1546 email-using-8bit >stdout &&
1547 egrep "Content|MIME" msgtxt1 >actual &&
1548 test_cmp content-type-decl actual
1551 test_expect_success $PREREQ '--8bit-encoding overrides sendemail.8bitEncoding' '
1552 clean_fake_sendmail &&
1553 git config sendemail.assume8bitEncoding "bogus too" &&
1554 echo bogus |
1555 git send-email --from=author@example.com --to=nobody@example.com \
1556 --smtp-server="$(pwd)/fake.sendmail" \
1557 --8bit-encoding=UTF-8 \
1558 email-using-8bit >stdout &&
1559 egrep "Content|MIME" msgtxt1 >actual &&
1560 test_cmp content-type-decl actual
1563 test_expect_success $PREREQ 'setup expect' '
1564 cat >email-using-8bit <<-\EOF
1565 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1566 Message-Id: <bogus-message-id@example.com>
1567 From: author@example.com
1568 Date: Sat, 12 Jun 2010 15:53:58 +0200
1569 Subject: Dieser Betreff enthält auch einen Umlaut!
1571 Nothing to see here.
1575 test_expect_success $PREREQ 'setup expect' '
1576 cat >expected <<-\EOF
1577 Subject: =?UTF-8?q?Dieser=20Betreff=20enth=C3=A4lt=20auch=20einen=20Umlaut!?=
1581 test_expect_success $PREREQ '--8bit-encoding also treats subject' '
1582 clean_fake_sendmail &&
1583 echo bogus |
1584 git send-email --from=author@example.com --to=nobody@example.com \
1585 --smtp-server="$(pwd)/fake.sendmail" \
1586 --8bit-encoding=UTF-8 \
1587 email-using-8bit >stdout &&
1588 grep "Subject" msgtxt1 >actual &&
1589 test_cmp expected actual
1592 test_expect_success $PREREQ 'setup expect' '
1593 cat >email-using-8bit <<-\EOF
1594 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1595 Message-Id: <bogus-message-id@example.com>
1596 From: A U Thor <author@example.com>
1597 Date: Sat, 12 Jun 2010 15:53:58 +0200
1598 Content-Type: text/plain; charset=UTF-8
1599 Subject: Nothing to see here.
1601 Dieser Betreff enthält auch einen Umlaut!
1605 test_expect_success $PREREQ '--transfer-encoding overrides sendemail.transferEncoding' '
1606 clean_fake_sendmail &&
1607 test_must_fail git -c sendemail.transferEncoding=8bit \
1608 send-email \
1609 --transfer-encoding=7bit \
1610 --smtp-server="$(pwd)/fake.sendmail" \
1611 email-using-8bit \
1612 2>errors >out &&
1613 grep "cannot send message as 7bit" errors &&
1614 test -z "$(ls msgtxt*)"
1617 test_expect_success $PREREQ 'sendemail.transferEncoding via config' '
1618 clean_fake_sendmail &&
1619 test_must_fail git -c sendemail.transferEncoding=7bit \
1620 send-email \
1621 --smtp-server="$(pwd)/fake.sendmail" \
1622 email-using-8bit \
1623 2>errors >out &&
1624 grep "cannot send message as 7bit" errors &&
1625 test -z "$(ls msgtxt*)"
1628 test_expect_success $PREREQ 'sendemail.transferEncoding via cli' '
1629 clean_fake_sendmail &&
1630 test_must_fail git send-email \
1631 --transfer-encoding=7bit \
1632 --smtp-server="$(pwd)/fake.sendmail" \
1633 email-using-8bit \
1634 2>errors >out &&
1635 grep "cannot send message as 7bit" errors &&
1636 test -z "$(ls msgtxt*)"
1639 test_expect_success $PREREQ 'setup expect' '
1640 cat >expected <<-\EOF
1641 Dieser Betreff enth=C3=A4lt auch einen Umlaut!
1645 test_expect_success $PREREQ '8-bit and sendemail.transferencoding=quoted-printable' '
1646 clean_fake_sendmail &&
1647 git send-email \
1648 --transfer-encoding=quoted-printable \
1649 --smtp-server="$(pwd)/fake.sendmail" \
1650 email-using-8bit \
1651 2>errors >out &&
1652 sed "1,/^$/d" msgtxt1 >actual &&
1653 test_cmp expected actual
1656 test_expect_success $PREREQ 'setup expect' '
1657 cat >expected <<-\EOF
1658 RGllc2VyIEJldHJlZmYgZW50aMOkbHQgYXVjaCBlaW5lbiBVbWxhdXQhCg==
1662 test_expect_success $PREREQ '8-bit and sendemail.transferencoding=base64' '
1663 clean_fake_sendmail &&
1664 git send-email \
1665 --transfer-encoding=base64 \
1666 --smtp-server="$(pwd)/fake.sendmail" \
1667 email-using-8bit \
1668 2>errors >out &&
1669 sed "1,/^$/d" msgtxt1 >actual &&
1670 test_cmp expected actual
1673 test_expect_success $PREREQ 'setup expect' '
1674 cat >email-using-qp <<-\EOF
1675 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1676 Message-Id: <bogus-message-id@example.com>
1677 From: A U Thor <author@example.com>
1678 Date: Sat, 12 Jun 2010 15:53:58 +0200
1679 MIME-Version: 1.0
1680 Content-Transfer-Encoding: quoted-printable
1681 Content-Type: text/plain; charset=UTF-8
1682 Subject: Nothing to see here.
1684 Dieser Betreff enth=C3=A4lt auch einen Umlaut!
1688 test_expect_success $PREREQ 'convert from quoted-printable to base64' '
1689 clean_fake_sendmail &&
1690 git send-email \
1691 --transfer-encoding=base64 \
1692 --smtp-server="$(pwd)/fake.sendmail" \
1693 email-using-qp \
1694 2>errors >out &&
1695 sed "1,/^$/d" msgtxt1 >actual &&
1696 test_cmp expected actual
1699 test_expect_success $PREREQ 'setup expect' "
1700 tr -d '\\015' | tr '%' '\\015' >email-using-crlf <<EOF
1701 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1702 Message-Id: <bogus-message-id@example.com>
1703 From: A U Thor <author@example.com>
1704 Date: Sat, 12 Jun 2010 15:53:58 +0200
1705 Content-Type: text/plain; charset=UTF-8
1706 Subject: Nothing to see here.
1708 Look, I have a CRLF and an = sign!%
1712 test_expect_success $PREREQ 'setup expect' '
1713 cat >expected <<-\EOF
1714 Look, I have a CRLF and an =3D sign!=0D
1718 test_expect_success $PREREQ 'CRLF and sendemail.transferencoding=quoted-printable' '
1719 clean_fake_sendmail &&
1720 git send-email \
1721 --transfer-encoding=quoted-printable \
1722 --smtp-server="$(pwd)/fake.sendmail" \
1723 email-using-crlf \
1724 2>errors >out &&
1725 sed "1,/^$/d" msgtxt1 >actual &&
1726 test_cmp expected actual
1729 test_expect_success $PREREQ 'setup expect' '
1730 cat >expected <<-\EOF
1731 TG9vaywgSSBoYXZlIGEgQ1JMRiBhbmQgYW4gPSBzaWduIQ0K
1735 test_expect_success $PREREQ 'CRLF and sendemail.transferencoding=base64' '
1736 clean_fake_sendmail &&
1737 git send-email \
1738 --transfer-encoding=base64 \
1739 --smtp-server="$(pwd)/fake.sendmail" \
1740 email-using-crlf \
1741 2>errors >out &&
1742 sed "1,/^$/d" msgtxt1 >actual &&
1743 test_cmp expected actual
1747 # Note that the patches in this test are deliberately out of order; we
1748 # want to make sure it works even if the cover-letter is not in the
1749 # first mail.
1750 test_expect_success $PREREQ 'refusing to send cover letter template' '
1751 clean_fake_sendmail &&
1752 rm -fr outdir &&
1753 git format-patch --cover-letter -2 -o outdir &&
1754 test_must_fail git send-email \
1755 --from="Example <nobody@example.com>" \
1756 --to=nobody@example.com \
1757 --smtp-server="$(pwd)/fake.sendmail" \
1758 outdir/0002-*.patch \
1759 outdir/0000-*.patch \
1760 outdir/0001-*.patch \
1761 2>errors >out &&
1762 grep "SUBJECT HERE" errors &&
1763 test -z "$(ls msgtxt*)"
1766 test_expect_success $PREREQ '--force sends cover letter template anyway' '
1767 clean_fake_sendmail &&
1768 rm -fr outdir &&
1769 git format-patch --cover-letter -2 -o outdir &&
1770 git send-email \
1771 --force \
1772 --from="Example <nobody@example.com>" \
1773 --to=nobody@example.com \
1774 --smtp-server="$(pwd)/fake.sendmail" \
1775 outdir/0002-*.patch \
1776 outdir/0000-*.patch \
1777 outdir/0001-*.patch \
1778 2>errors >out &&
1779 ! grep "SUBJECT HERE" errors &&
1780 test -n "$(ls msgtxt*)"
1783 test_cover_addresses () {
1784 header="$1"
1785 shift
1786 clean_fake_sendmail &&
1787 rm -fr outdir &&
1788 git format-patch --cover-letter -2 -o outdir &&
1789 cover=$(echo outdir/0000-*.patch) &&
1790 mv $cover cover-to-edit.patch &&
1791 perl -pe "s/^From:/$header: extra\@address.com\nFrom:/" cover-to-edit.patch >"$cover" &&
1792 git send-email \
1793 --force \
1794 --from="Example <nobody@example.com>" \
1795 --no-to --no-cc \
1796 "$@" \
1797 --smtp-server="$(pwd)/fake.sendmail" \
1798 outdir/0000-*.patch \
1799 outdir/0001-*.patch \
1800 outdir/0002-*.patch \
1801 2>errors >out &&
1802 grep "^$header: extra@address.com" msgtxt1 >to1 &&
1803 grep "^$header: extra@address.com" msgtxt2 >to2 &&
1804 grep "^$header: extra@address.com" msgtxt3 >to3 &&
1805 test_line_count = 1 to1 &&
1806 test_line_count = 1 to2 &&
1807 test_line_count = 1 to3
1810 test_expect_success $PREREQ 'to-cover adds To to all mail' '
1811 test_cover_addresses "To" --to-cover
1814 test_expect_success $PREREQ 'cc-cover adds Cc to all mail' '
1815 test_cover_addresses "Cc" --cc-cover
1818 test_expect_success $PREREQ 'tocover adds To to all mail' '
1819 test_config sendemail.tocover true &&
1820 test_cover_addresses "To"
1823 test_expect_success $PREREQ 'cccover adds Cc to all mail' '
1824 test_config sendemail.cccover true &&
1825 test_cover_addresses "Cc"
1828 test_expect_success $PREREQ 'escaped quotes in sendemail.aliasfiletype=mutt' '
1829 clean_fake_sendmail &&
1830 echo "alias sbd \\\"Dot U. Sir\\\" <somebody@example.org>" >.mutt &&
1831 git config --replace-all sendemail.aliasesfile "$(pwd)/.mutt" &&
1832 git config sendemail.aliasfiletype mutt &&
1833 git send-email \
1834 --from="Example <nobody@example.com>" \
1835 --to=sbd \
1836 --smtp-server="$(pwd)/fake.sendmail" \
1837 outdir/0001-*.patch \
1838 2>errors >out &&
1839 grep "^!somebody@example\.org!$" commandline1 &&
1840 grep -F "To: \"Dot U. Sir\" <somebody@example.org>" out
1843 test_expect_success $PREREQ 'sendemail.aliasfiletype=mailrc' '
1844 clean_fake_sendmail &&
1845 echo "alias sbd somebody@example.org" >.mailrc &&
1846 git config --replace-all sendemail.aliasesfile "$(pwd)/.mailrc" &&
1847 git config sendemail.aliasfiletype mailrc &&
1848 git send-email \
1849 --from="Example <nobody@example.com>" \
1850 --to=sbd \
1851 --smtp-server="$(pwd)/fake.sendmail" \
1852 outdir/0001-*.patch \
1853 2>errors >out &&
1854 grep "^!somebody@example\.org!$" commandline1
1857 test_expect_success $PREREQ 'sendemail.aliasesfile=~/.mailrc' '
1858 clean_fake_sendmail &&
1859 echo "alias sbd someone@example.org" >"$HOME/.mailrc" &&
1860 git config --replace-all sendemail.aliasesfile "~/.mailrc" &&
1861 git config sendemail.aliasfiletype mailrc &&
1862 git send-email \
1863 --from="Example <nobody@example.com>" \
1864 --to=sbd \
1865 --smtp-server="$(pwd)/fake.sendmail" \
1866 outdir/0001-*.patch \
1867 2>errors >out &&
1868 grep "^!someone@example\.org!$" commandline1
1871 test_dump_aliases () {
1872 msg="$1" && shift &&
1873 filetype="$1" && shift &&
1874 printf '%s\n' "$@" >expect &&
1875 cat >.tmp-email-aliases &&
1877 test_expect_success $PREREQ "$msg" '
1878 clean_fake_sendmail && rm -fr outdir &&
1879 git config --replace-all sendemail.aliasesfile \
1880 "$(pwd)/.tmp-email-aliases" &&
1881 git config sendemail.aliasfiletype "$filetype" &&
1882 git send-email --dump-aliases 2>errors >actual &&
1883 test_cmp expect actual
1887 test_dump_aliases '--dump-aliases sendmail format' \
1888 'sendmail' \
1889 'abgroup' \
1890 'alice' \
1891 'bcgrp' \
1892 'bob' \
1893 'chloe' <<-\EOF
1894 alice: Alice W Land <awol@example.com>
1895 bob: Robert Bobbyton <bob@example.com>
1896 chloe: chloe@example.com
1897 abgroup: alice, bob
1898 bcgrp: bob, chloe, Other <o@example.com>
1901 test_dump_aliases '--dump-aliases mutt format' \
1902 'mutt' \
1903 'alice' \
1904 'bob' \
1905 'chloe' \
1906 'donald' <<-\EOF
1907 alias alice Alice W Land <awol@example.com>
1908 alias donald Donald C Carlton <donc@example.com>
1909 alias bob Robert Bobbyton <bob@example.com>
1910 alias chloe chloe@example.com
1913 test_dump_aliases '--dump-aliases mailrc format' \
1914 'mailrc' \
1915 'alice' \
1916 'bob' \
1917 'chloe' \
1918 'eve' <<-\EOF
1919 alias alice Alice W Land <awol@example.com>
1920 alias eve Eve <eve@example.com>
1921 alias bob Robert Bobbyton <bob@example.com>
1922 alias chloe chloe@example.com
1925 test_dump_aliases '--dump-aliases pine format' \
1926 'pine' \
1927 'alice' \
1928 'bob' \
1929 'chloe' \
1930 'eve' <<-\EOF
1931 alice Alice W Land <awol@example.com>
1932 eve Eve <eve@example.com>
1933 bob Robert Bobbyton <bob@example.com>
1934 chloe chloe@example.com
1937 test_dump_aliases '--dump-aliases gnus format' \
1938 'gnus' \
1939 'alice' \
1940 'bob' \
1941 'chloe' \
1942 'eve' <<-\EOF
1943 (define-mail-alias "alice" "awol@example.com")
1944 (define-mail-alias "eve" "eve@example.com")
1945 (define-mail-alias "bob" "bob@example.com")
1946 (define-mail-alias "chloe" "chloe@example.com")
1949 test_expect_success '--dump-aliases must be used alone' '
1950 test_must_fail git send-email --dump-aliases --to=janice@example.com -1 refs/heads/accounting
1953 test_expect_success $PREREQ 'aliases and sendemail.identity' '
1954 test_must_fail git \
1955 -c sendemail.identity=cloud \
1956 -c sendemail.aliasesfile=default-aliases \
1957 -c sendemail.cloud.aliasesfile=cloud-aliases \
1958 send-email -1 2>stderr &&
1959 test_i18ngrep "cloud-aliases" stderr
1962 test_sendmail_aliases () {
1963 msg="$1" && shift &&
1964 expect="$@" &&
1965 cat >.tmp-email-aliases &&
1967 test_expect_success $PREREQ "$msg" '
1968 clean_fake_sendmail && rm -fr outdir &&
1969 git format-patch -1 -o outdir &&
1970 git config --replace-all sendemail.aliasesfile \
1971 "$(pwd)/.tmp-email-aliases" &&
1972 git config sendemail.aliasfiletype sendmail &&
1973 git send-email \
1974 --from="Example <nobody@example.com>" \
1975 --to=alice --to=bcgrp \
1976 --smtp-server="$(pwd)/fake.sendmail" \
1977 outdir/0001-*.patch \
1978 2>errors >out &&
1979 for i in $expect
1981 grep "^!$i!$" commandline1 || return 1
1982 done
1986 test_sendmail_aliases 'sendemail.aliasfiletype=sendmail' \
1987 'awol@example\.com' \
1988 'bob@example\.com' \
1989 'chloe@example\.com' \
1990 'o@example\.com' <<-\EOF
1991 alice: Alice W Land <awol@example.com>
1992 bob: Robert Bobbyton <bob@example.com>
1993 # this is a comment
1994 # this is also a comment
1995 chloe: chloe@example.com
1996 abgroup: alice, bob
1997 bcgrp: bob, chloe, Other <o@example.com>
2000 test_sendmail_aliases 'sendmail aliases line folding' \
2001 alice1 \
2002 bob1 bob2 \
2003 chuck1 chuck2 \
2004 darla1 darla2 darla3 \
2005 elton1 elton2 elton3 \
2006 fred1 fred2 \
2007 greg1 <<-\EOF
2008 alice: alice1
2009 bob: bob1,\
2010 bob2
2011 chuck: chuck1,
2012 chuck2
2013 darla: darla1,\
2014 darla2,
2015 darla3
2016 elton: elton1,
2017 elton2,\
2018 elton3
2019 fred: fred1,\
2020 fred2
2021 greg: greg1
2022 bcgrp: bob, chuck, darla, elton, fred, greg
2025 test_sendmail_aliases 'sendmail aliases tolerate bogus line folding' \
2026 alice1 bob1 <<-\EOF
2027 alice: alice1
2028 bcgrp: bob1\
2031 test_sendmail_aliases 'sendmail aliases empty' alice bcgrp <<-\EOF
2034 test_expect_success $PREREQ 'alias support in To header' '
2035 clean_fake_sendmail &&
2036 echo "alias sbd someone@example.org" >.mailrc &&
2037 test_config sendemail.aliasesfile ".mailrc" &&
2038 test_config sendemail.aliasfiletype mailrc &&
2039 git format-patch --stdout -1 --to=sbd >aliased.patch &&
2040 git send-email \
2041 --from="Example <nobody@example.com>" \
2042 --smtp-server="$(pwd)/fake.sendmail" \
2043 aliased.patch \
2044 2>errors >out &&
2045 grep "^!someone@example\.org!$" commandline1
2048 test_expect_success $PREREQ 'alias support in Cc header' '
2049 clean_fake_sendmail &&
2050 echo "alias sbd someone@example.org" >.mailrc &&
2051 test_config sendemail.aliasesfile ".mailrc" &&
2052 test_config sendemail.aliasfiletype mailrc &&
2053 git format-patch --stdout -1 --cc=sbd >aliased.patch &&
2054 git send-email \
2055 --from="Example <nobody@example.com>" \
2056 --smtp-server="$(pwd)/fake.sendmail" \
2057 aliased.patch \
2058 2>errors >out &&
2059 grep "^!someone@example\.org!$" commandline1
2062 test_expect_success $PREREQ 'tocmd works with aliases' '
2063 clean_fake_sendmail &&
2064 echo "alias sbd someone@example.org" >.mailrc &&
2065 test_config sendemail.aliasesfile ".mailrc" &&
2066 test_config sendemail.aliasfiletype mailrc &&
2067 git format-patch --stdout -1 >tocmd.patch &&
2068 echo tocmd--sbd >>tocmd.patch &&
2069 git send-email \
2070 --from="Example <nobody@example.com>" \
2071 --to-cmd=./tocmd-sed \
2072 --smtp-server="$(pwd)/fake.sendmail" \
2073 tocmd.patch \
2074 2>errors >out &&
2075 grep "^!someone@example\.org!$" commandline1
2078 test_expect_success $PREREQ 'cccmd works with aliases' '
2079 clean_fake_sendmail &&
2080 echo "alias sbd someone@example.org" >.mailrc &&
2081 test_config sendemail.aliasesfile ".mailrc" &&
2082 test_config sendemail.aliasfiletype mailrc &&
2083 git format-patch --stdout -1 >cccmd.patch &&
2084 echo cccmd--sbd >>cccmd.patch &&
2085 git send-email \
2086 --from="Example <nobody@example.com>" \
2087 --cc-cmd=./cccmd-sed \
2088 --smtp-server="$(pwd)/fake.sendmail" \
2089 cccmd.patch \
2090 2>errors >out &&
2091 grep "^!someone@example\.org!$" commandline1
2094 do_xmailer_test () {
2095 expected=$1 params=$2 &&
2096 git format-patch -1 &&
2097 git send-email \
2098 --from="Example <nobody@example.com>" \
2099 --to=someone@example.com \
2100 --smtp-server="$(pwd)/fake.sendmail" \
2101 $params \
2102 0001-*.patch \
2103 2>errors >out &&
2104 { grep '^X-Mailer:' out || :; } >mailer &&
2105 test_line_count = $expected mailer
2108 test_expect_success $PREREQ '--[no-]xmailer without any configuration' '
2109 do_xmailer_test 1 "--xmailer" &&
2110 do_xmailer_test 0 "--no-xmailer"
2113 test_expect_success $PREREQ '--[no-]xmailer with sendemail.xmailer=true' '
2114 test_config sendemail.xmailer true &&
2115 do_xmailer_test 1 "" &&
2116 do_xmailer_test 0 "--no-xmailer" &&
2117 do_xmailer_test 1 "--xmailer"
2120 test_expect_success $PREREQ '--[no-]xmailer with sendemail.xmailer' '
2121 test_when_finished "test_unconfig sendemail.xmailer" &&
2122 cat >>.git/config <<-\EOF &&
2123 [sendemail]
2124 xmailer
2126 test_config sendemail.xmailer true &&
2127 do_xmailer_test 1 "" &&
2128 do_xmailer_test 0 "--no-xmailer" &&
2129 do_xmailer_test 1 "--xmailer"
2132 test_expect_success $PREREQ '--[no-]xmailer with sendemail.xmailer=false' '
2133 test_config sendemail.xmailer false &&
2134 do_xmailer_test 0 "" &&
2135 do_xmailer_test 0 "--no-xmailer" &&
2136 do_xmailer_test 1 "--xmailer"
2139 test_expect_success $PREREQ '--[no-]xmailer with sendemail.xmailer=' '
2140 test_config sendemail.xmailer "" &&
2141 do_xmailer_test 0 "" &&
2142 do_xmailer_test 0 "--no-xmailer" &&
2143 do_xmailer_test 1 "--xmailer"
2146 test_expect_success $PREREQ 'setup expected-list' '
2147 git send-email \
2148 --dry-run \
2149 --from="Example <from@example.com>" \
2150 --to="To 1 <to1@example.com>" \
2151 --to="to2@example.com" \
2152 --to="to3@example.com" \
2153 --cc="Cc 1 <cc1@example.com>" \
2154 --cc="Cc2 <cc2@example.com>" \
2155 --bcc="bcc1@example.com" \
2156 --bcc="bcc2@example.com" \
2157 0001-add-main.patch | replace_variable_fields \
2158 >expected-list
2161 test_expect_success $PREREQ 'use email list in --cc --to and --bcc' '
2162 git send-email \
2163 --dry-run \
2164 --from="Example <from@example.com>" \
2165 --to="To 1 <to1@example.com>, to2@example.com" \
2166 --to="to3@example.com" \
2167 --cc="Cc 1 <cc1@example.com>, Cc2 <cc2@example.com>" \
2168 --bcc="bcc1@example.com, bcc2@example.com" \
2169 0001-add-main.patch | replace_variable_fields \
2170 >actual-list &&
2171 test_cmp expected-list actual-list
2174 test_expect_success $PREREQ 'aliases work with email list' '
2175 echo "alias to2 to2@example.com" >.mutt &&
2176 echo "alias cc1 Cc 1 <cc1@example.com>" >>.mutt &&
2177 test_config sendemail.aliasesfile ".mutt" &&
2178 test_config sendemail.aliasfiletype mutt &&
2179 git send-email \
2180 --dry-run \
2181 --from="Example <from@example.com>" \
2182 --to="To 1 <to1@example.com>, to2, to3@example.com" \
2183 --cc="cc1, Cc2 <cc2@example.com>" \
2184 --bcc="bcc1@example.com, bcc2@example.com" \
2185 0001-add-main.patch | replace_variable_fields \
2186 >actual-list &&
2187 test_cmp expected-list actual-list
2190 test_expect_success $PREREQ 'leading and trailing whitespaces are removed' '
2191 echo "alias to2 to2@example.com" >.mutt &&
2192 echo "alias cc1 Cc 1 <cc1@example.com>" >>.mutt &&
2193 test_config sendemail.aliasesfile ".mutt" &&
2194 test_config sendemail.aliasfiletype mutt &&
2195 TO1=$(echo "QTo 1 <to1@example.com>" | q_to_tab) &&
2196 TO2=$(echo "QZto2" | qz_to_tab_space) &&
2197 CC1=$(echo "cc1" | append_cr) &&
2198 BCC1=$(echo " bcc1@example.com Q" | q_to_nul) &&
2199 git send-email \
2200 --dry-run \
2201 --from=" Example <from@example.com>" \
2202 --to="$TO1" \
2203 --to="$TO2" \
2204 --to=" to3@example.com " \
2205 --cc="$CC1" \
2206 --cc="Cc2 <cc2@example.com>" \
2207 --bcc="$BCC1" \
2208 --bcc="bcc2@example.com" \
2209 0001-add-main.patch | replace_variable_fields \
2210 >actual-list &&
2211 test_cmp expected-list actual-list
2214 test_expect_success $PREREQ 'test using command name with --sendmail-cmd' '
2215 clean_fake_sendmail &&
2216 PATH="$PWD:$PATH" \
2217 git send-email \
2218 --from="Example <nobody@example.com>" \
2219 --to=nobody@example.com \
2220 --sendmail-cmd="fake.sendmail" \
2221 HEAD^ &&
2222 test_path_is_file commandline1
2225 test_expect_success $PREREQ 'test using arguments with --sendmail-cmd' '
2226 clean_fake_sendmail &&
2227 git send-email \
2228 --from="Example <nobody@example.com>" \
2229 --to=nobody@example.com \
2230 --sendmail-cmd='\''"$(pwd)/fake.sendmail" -f nobody@example.com'\'' \
2231 HEAD^ &&
2232 test_path_is_file commandline1
2235 test_expect_success $PREREQ 'test shell expression with --sendmail-cmd' '
2236 clean_fake_sendmail &&
2237 git send-email \
2238 --from="Example <nobody@example.com>" \
2239 --to=nobody@example.com \
2240 --sendmail-cmd='\''f() { "$(pwd)/fake.sendmail" "$@"; };f'\'' \
2241 HEAD^ &&
2242 test_path_is_file commandline1
2245 test_expect_success $PREREQ 'set up in-reply-to/references patches' '
2246 cat >has-reply.patch <<-\EOF &&
2247 From: A U Thor <author@example.com>
2248 Subject: patch with in-reply-to
2249 Message-ID: <patch.with.in.reply.to@example.com>
2250 In-Reply-To: <replied.to@example.com>
2251 References: <replied.to@example.com>
2253 This is the body.
2255 cat >no-reply.patch <<-\EOF
2256 From: A U Thor <author@example.com>
2257 Subject: patch without in-reply-to
2258 Message-ID: <patch.without.in.reply.to@example.com>
2260 This is the body.
2264 test_expect_success $PREREQ 'patch reply headers correct with --no-thread' '
2265 clean_fake_sendmail &&
2266 git send-email \
2267 --no-thread \
2268 --to=nobody@example.com \
2269 --smtp-server="$(pwd)/fake.sendmail" \
2270 has-reply.patch no-reply.patch &&
2271 grep "In-Reply-To: <replied.to@example.com>" msgtxt1 &&
2272 grep "References: <replied.to@example.com>" msgtxt1 &&
2273 ! grep replied.to@example.com msgtxt2
2276 test_expect_success $PREREQ 'cmdline in-reply-to used with --no-thread' '
2277 clean_fake_sendmail &&
2278 git send-email \
2279 --no-thread \
2280 --in-reply-to="<cmdline.reply@example.com>" \
2281 --to=nobody@example.com \
2282 --smtp-server="$(pwd)/fake.sendmail" \
2283 has-reply.patch no-reply.patch &&
2284 grep "In-Reply-To: <cmdline.reply@example.com>" msgtxt1 &&
2285 grep "References: <cmdline.reply@example.com>" msgtxt1 &&
2286 grep "In-Reply-To: <cmdline.reply@example.com>" msgtxt2 &&
2287 grep "References: <cmdline.reply@example.com>" msgtxt2
2290 test_expect_success $PREREQ 'invoke hook' '
2291 test_hook sendemail-validate <<-\EOF &&
2292 # test that we have the correct environment variable, pwd, and
2293 # argument
2294 case "$GIT_DIR" in
2295 *.git)
2296 true
2299 false
2301 esac &&
2302 test -f 0001-add-main.patch &&
2303 grep "add main" "$1"
2306 mkdir subdir &&
2308 # Test that it works even if we are not at the root of the
2309 # working tree
2310 cd subdir &&
2311 git send-email \
2312 --from="Example <nobody@example.com>" \
2313 --to=nobody@example.com \
2314 --smtp-server="$(pwd)/../fake.sendmail" \
2315 ../0001-add-main.patch &&
2317 # Verify error message when a patch is rejected by the hook
2318 sed -e "s/add main/x/" ../0001-add-main.patch >../another.patch &&
2319 test_must_fail git send-email \
2320 --from="Example <nobody@example.com>" \
2321 --to=nobody@example.com \
2322 --smtp-server="$(pwd)/../fake.sendmail" \
2323 ../another.patch 2>err &&
2324 test_i18ngrep "rejected by sendemail-validate hook" err
2328 test_expect_success $PREREQ 'test that send-email works outside a repo' '
2329 nongit git send-email \
2330 --from="Example <nobody@example.com>" \
2331 --to=nobody@example.com \
2332 --smtp-server="$(pwd)/fake.sendmail" \
2333 "$(pwd)/0001-add-main.patch"
2336 test_expect_success $PREREQ 'test that sendmail config is rejected' '
2337 test_config sendmail.program sendmail &&
2338 test_must_fail git send-email \
2339 --from="Example <nobody@example.com>" \
2340 --to=nobody@example.com \
2341 --smtp-server="$(pwd)/fake.sendmail" \
2342 HEAD^ 2>err &&
2343 test_i18ngrep "found configuration options for '"'"sendmail"'"'" err
2346 test_expect_success $PREREQ 'test that sendmail config rejection is specific' '
2347 test_config resendmail.program sendmail &&
2348 git send-email \
2349 --from="Example <nobody@example.com>" \
2350 --to=nobody@example.com \
2351 --smtp-server="$(pwd)/fake.sendmail" \
2352 HEAD^
2355 test_expect_success $PREREQ 'test forbidSendmailVariables behavior override' '
2356 test_config sendmail.program sendmail &&
2357 test_config sendemail.forbidSendmailVariables false &&
2358 git send-email \
2359 --from="Example <nobody@example.com>" \
2360 --to=nobody@example.com \
2361 --smtp-server="$(pwd)/fake.sendmail" \
2362 HEAD^
2365 test_done