t / t9001-send-email.shon commit send-email: remove cargo-culted multi-patch pattern in tests (2554dd1)
   1#!/bin/sh
   2
   3test_description='git send-email'
   4. ./test-lib.sh
   5
   6# May be altered later in the test
   7PREREQ="PERL"
   8
   9replace_variable_fields () {
  10        sed     -e "s/^\(Date:\).*/\1 DATE-STRING/" \
  11                -e "s/^\(Message-Id:\).*/\1 MESSAGE-ID-STRING/" \
  12                -e "s/^\(X-Mailer:\).*/\1 X-MAILER-STRING/"
  13}
  14
  15test_expect_success $PREREQ 'prepare reference tree' '
  16        echo "1A quick brown fox jumps over the" >file &&
  17        echo "lazy dog" >>file &&
  18        git add file &&
  19        GIT_AUTHOR_NAME="A" git commit -a -m "Initial."
  20'
  21
  22test_expect_success $PREREQ 'Setup helper tool' '
  23        write_script fake.sendmail <<-\EOF &&
  24        shift
  25        output=1
  26        while test -f commandline$output
  27        do
  28                output=$(($output+1))
  29        done
  30        for a
  31        do
  32                echo "!$a!"
  33        done >commandline$output
  34        cat >"msgtxt$output"
  35        EOF
  36        git add fake.sendmail &&
  37        GIT_AUTHOR_NAME="A" git commit -a -m "Second."
  38'
  39
  40clean_fake_sendmail () {
  41        rm -f commandline* msgtxt*
  42}
  43
  44test_expect_success $PREREQ 'Extract patches' '
  45        patches=$(git format-patch -s --cc="One <one@example.com>" --cc=two@example.com -n HEAD^1)
  46'
  47
  48# Test no confirm early to ensure remaining tests will not hang
  49test_no_confirm () {
  50        rm -f no_confirm_okay
  51        echo n | \
  52                GIT_SEND_EMAIL_NOTTY=1 \
  53                git send-email \
  54                --from="Example <from@example.com>" \
  55                --to=nobody@example.com \
  56                --smtp-server="$(pwd)/fake.sendmail" \
  57                $@ \
  58                $patches >stdout &&
  59                ! grep "Send this email" stdout &&
  60                >no_confirm_okay
  61}
  62
  63# Exit immediately to prevent hang if a no-confirm test fails
  64check_no_confirm () {
  65        if ! test -f no_confirm_okay
  66        then
  67                say 'confirm test failed; skipping remaining tests to prevent hanging'
  68                PREREQ="$PREREQ,CHECK_NO_CONFIRM"
  69        fi
  70        return 0
  71}
  72
  73test_expect_success $PREREQ 'No confirm with --suppress-cc' '
  74        test_no_confirm --suppress-cc=sob &&
  75        check_no_confirm
  76'
  77
  78
  79test_expect_success $PREREQ 'No confirm with --confirm=never' '
  80        test_no_confirm --confirm=never &&
  81        check_no_confirm
  82'
  83
  84# leave sendemail.confirm set to never after this so that none of the
  85# remaining tests prompt unintentionally.
  86test_expect_success $PREREQ 'No confirm with sendemail.confirm=never' '
  87        git config sendemail.confirm never &&
  88        test_no_confirm --compose --subject=foo &&
  89        check_no_confirm
  90'
  91
  92test_expect_success $PREREQ 'Send patches' '
  93        git send-email --suppress-cc=sob --from="Example <nobody@example.com>" --to=nobody@example.com --smtp-server="$(pwd)/fake.sendmail" $patches 2>errors
  94'
  95
  96test_expect_success $PREREQ 'setup expect' '
  97        cat >expected <<-\EOF
  98        !nobody@example.com!
  99        !author@example.com!
 100        !one@example.com!
 101        !two@example.com!
 102        EOF
 103'
 104
 105test_expect_success $PREREQ 'Verify commandline' '
 106        test_cmp expected commandline1
 107'
 108
 109test_expect_success $PREREQ 'Send patches with --envelope-sender' '
 110        clean_fake_sendmail &&
 111        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
 112'
 113
 114test_expect_success $PREREQ 'setup expect' '
 115        cat >expected <<-\EOF
 116        !patch@example.com!
 117        !-i!
 118        !nobody@example.com!
 119        !author@example.com!
 120        !one@example.com!
 121        !two@example.com!
 122        EOF
 123'
 124
 125test_expect_success $PREREQ 'Verify commandline' '
 126        test_cmp expected commandline1
 127'
 128
 129test_expect_success $PREREQ 'Send patches with --envelope-sender=auto' '
 130        clean_fake_sendmail &&
 131        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
 132'
 133
 134test_expect_success $PREREQ 'setup expect' '
 135        cat >expected <<-\EOF
 136        !nobody@example.com!
 137        !-i!
 138        !nobody@example.com!
 139        !author@example.com!
 140        !one@example.com!
 141        !two@example.com!
 142        EOF
 143'
 144
 145test_expect_success $PREREQ 'Verify commandline' '
 146        test_cmp expected commandline1
 147'
 148
 149test_expect_success $PREREQ 'setup expect for cc trailer' "
 150cat >expected-cc <<\EOF
 151!recipient@example.com!
 152!author@example.com!
 153!one@example.com!
 154!two@example.com!
 155!three@example.com!
 156!four@example.com!
 157!five@example.com!
 158!six@example.com!
 159EOF
 160"
 161
 162test_expect_success $PREREQ 'cc trailer with various syntax' '
 163        test_commit cc-trailer &&
 164        test_when_finished "git reset --hard HEAD^" &&
 165        git commit --amend -F - <<-EOF &&
 166        Test Cc: trailers.
 167
 168        Cc: one@example.com
 169        Cc: <two@example.com> # trailing comments are ignored
 170        Cc: <three@example.com>, <not.four@example.com> one address per line
 171        Cc: "Some # Body" <four@example.com> [ <also.a.comment> ]
 172        Cc: five@example.com # not.six@example.com
 173        Cc: six@example.com, not.seven@example.com
 174        EOF
 175        clean_fake_sendmail &&
 176        git send-email -1 --to=recipient@example.com \
 177                --smtp-server="$(pwd)/fake.sendmail" &&
 178        test_cmp expected-cc commandline1
 179'
 180
 181test_expect_success $PREREQ 'setup fake get_maintainer.pl script for cc trailer' "
 182        write_script expected-cc-script.sh <<-EOF
 183        echo 'One Person <one@example.com> (supporter:THIS (FOO/bar))'
 184        echo 'Two Person <two@example.com> (maintainer:THIS THING)'
 185        echo 'Third List <three@example.com> (moderated list:THIS THING (FOO/bar))'
 186        echo '<four@example.com> (moderated list:FOR THING)'
 187        echo 'five@example.com (open list:FOR THING (FOO/bar))'
 188        echo 'six@example.com (open list)'
 189        EOF
 190"
 191
 192test_expect_success $PREREQ 'cc trailer with get_maintainer.pl output' '
 193        clean_fake_sendmail &&
 194        git send-email -1 --to=recipient@example.com \
 195                --cc-cmd=./expected-cc-script.sh \
 196                --smtp-server="$(pwd)/fake.sendmail" &&
 197        test_cmp expected-cc commandline1
 198'
 199
 200test_expect_success $PREREQ 'setup expect' "
 201cat >expected-show-all-headers <<\EOF
 2020001-Second.patch
 203(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
 204(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
 205(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
 206Dry-OK. Log says:
 207Server: relay.example.com
 208MAIL FROM:<from@example.com>
 209RCPT TO:<to@example.com>
 210RCPT TO:<cc@example.com>
 211RCPT TO:<author@example.com>
 212RCPT TO:<one@example.com>
 213RCPT TO:<two@example.com>
 214RCPT TO:<bcc@example.com>
 215From: Example <from@example.com>
 216To: to@example.com
 217Cc: cc@example.com,
 218        A <author@example.com>,
 219        One <one@example.com>,
 220        two@example.com
 221Subject: [PATCH 1/1] Second.
 222Date: DATE-STRING
 223Message-Id: MESSAGE-ID-STRING
 224X-Mailer: X-MAILER-STRING
 225In-Reply-To: <unique-message-id@example.com>
 226References: <unique-message-id@example.com>
 227Reply-To: Reply <reply@example.com>
 228MIME-Version: 1.0
 229Content-Transfer-Encoding: 8bit
 230
 231Result: OK
 232EOF
 233"
 234
 235test_suppress_self () {
 236        test_commit $3 &&
 237        test_when_finished "git reset --hard HEAD^" &&
 238
 239        write_script cccmd-sed <<-EOF &&
 240                sed -n -e s/^cccmd--//p "\$1"
 241        EOF
 242
 243        git commit --amend --author="$1 <$2>" -F - &&
 244        clean_fake_sendmail &&
 245        git format-patch --stdout -1 >"suppress-self-$3.patch" &&
 246
 247        git send-email --from="$1 <$2>" \
 248                --to=nobody@example.com \
 249                --cc-cmd=./cccmd-sed \
 250                --suppress-cc=self \
 251                --smtp-server="$(pwd)/fake.sendmail" \
 252                suppress-self-$3.patch &&
 253
 254        mv msgtxt1 msgtxt1-$3 &&
 255        sed -e '/^$/q' msgtxt1-$3 >"msghdr1-$3" &&
 256        >"expected-no-cc-$3" &&
 257
 258        (grep '^Cc:' msghdr1-$3 >"actual-no-cc-$3";
 259         test_cmp expected-no-cc-$3 actual-no-cc-$3)
 260}
 261
 262test_suppress_self_unquoted () {
 263        test_suppress_self "$1" "$2" "unquoted-$3" <<-EOF
 264                test suppress-cc.self unquoted-$3 with name $1 email $2
 265
 266                unquoted-$3
 267
 268                cccmd--$1 <$2>
 269
 270                Cc: $1 <$2>
 271                Signed-off-by: $1 <$2>
 272        EOF
 273}
 274
 275test_suppress_self_quoted () {
 276        test_suppress_self "$1" "$2" "quoted-$3" <<-EOF
 277                test suppress-cc.self quoted-$3 with name $1 email $2
 278
 279                quoted-$3
 280
 281                cccmd--"$1" <$2>
 282
 283                Cc: $1 <$2>
 284                Cc: "$1" <$2>
 285                Signed-off-by: $1 <$2>
 286                Signed-off-by: "$1" <$2>
 287        EOF
 288}
 289
 290test_expect_success $PREREQ 'self name is suppressed' "
 291        test_suppress_self_unquoted 'A U Thor' 'author@example.com' \
 292                'self_name_suppressed'
 293"
 294
 295test_expect_success $PREREQ 'self name with dot is suppressed' "
 296        test_suppress_self_quoted 'A U. Thor' 'author@example.com' \
 297                'self_name_dot_suppressed'
 298"
 299
 300test_expect_success $PREREQ 'non-ascii self name is suppressed' "
 301        test_suppress_self_quoted 'Füñný Nâmé' 'odd_?=mail@example.com' \
 302                'non_ascii_self_suppressed'
 303"
 304
 305# This name is long enough to force format-patch to split it into multiple
 306# encoded-words, assuming it uses UTF-8 with the "Q" encoding.
 307test_expect_success $PREREQ 'long non-ascii self name is suppressed' "
 308        test_suppress_self_quoted 'Ƒüñníęř €. Nâṁé' 'odd_?=mail@example.com' \
 309                'long_non_ascii_self_suppressed'
 310"
 311
 312test_expect_success $PREREQ 'sanitized self name is suppressed' "
 313        test_suppress_self_unquoted '\"A U. Thor\"' 'author@example.com' \
 314                'self_name_sanitized_suppressed'
 315"
 316
 317test_expect_success $PREREQ 'Show all headers' '
 318        git send-email \
 319                --dry-run \
 320                --suppress-cc=sob \
 321                --from="Example <from@example.com>" \
 322                --reply-to="Reply <reply@example.com>" \
 323                --to=to@example.com \
 324                --cc=cc@example.com \
 325                --bcc=bcc@example.com \
 326                --in-reply-to="<unique-message-id@example.com>" \
 327                --smtp-server relay.example.com \
 328                $patches | replace_variable_fields \
 329                >actual-show-all-headers &&
 330        test_cmp expected-show-all-headers actual-show-all-headers
 331'
 332
 333test_expect_success $PREREQ 'Prompting works' '
 334        clean_fake_sendmail &&
 335        (echo "to@example.com"
 336         echo ""
 337        ) | GIT_SEND_EMAIL_NOTTY=1 git send-email \
 338                --smtp-server="$(pwd)/fake.sendmail" \
 339                $patches \
 340                2>errors &&
 341                grep "^From: A U Thor <author@example.com>\$" msgtxt1 &&
 342                grep "^To: to@example.com\$" msgtxt1
 343'
 344
 345test_expect_success $PREREQ,AUTOIDENT 'implicit ident is allowed' '
 346        clean_fake_sendmail &&
 347        (sane_unset GIT_AUTHOR_NAME &&
 348        sane_unset GIT_AUTHOR_EMAIL &&
 349        sane_unset GIT_COMMITTER_NAME &&
 350        sane_unset GIT_COMMITTER_EMAIL &&
 351        GIT_SEND_EMAIL_NOTTY=1 git send-email \
 352                --smtp-server="$(pwd)/fake.sendmail" \
 353                --to=to@example.com \
 354                $patches </dev/null 2>errors
 355        )
 356'
 357
 358test_expect_success $PREREQ,!AUTOIDENT 'broken implicit ident aborts send-email' '
 359        clean_fake_sendmail &&
 360        (sane_unset GIT_AUTHOR_NAME &&
 361        sane_unset GIT_AUTHOR_EMAIL &&
 362        sane_unset GIT_COMMITTER_NAME &&
 363        sane_unset GIT_COMMITTER_EMAIL &&
 364        GIT_SEND_EMAIL_NOTTY=1 && export GIT_SEND_EMAIL_NOTTY &&
 365        test_must_fail git send-email \
 366                --smtp-server="$(pwd)/fake.sendmail" \
 367                --to=to@example.com \
 368                $patches </dev/null 2>errors &&
 369        test_i18ngrep "tell me who you are" errors
 370        )
 371'
 372
 373test_expect_success $PREREQ 'setup tocmd and cccmd scripts' '
 374        write_script tocmd-sed <<-\EOF &&
 375        sed -n -e "s/^tocmd--//p" "$1"
 376        EOF
 377        write_script cccmd-sed <<-\EOF
 378        sed -n -e "s/^cccmd--//p" "$1"
 379        EOF
 380'
 381
 382test_expect_success $PREREQ 'tocmd works' '
 383        clean_fake_sendmail &&
 384        cp $patches tocmd.patch &&
 385        echo tocmd--tocmd@example.com >>tocmd.patch &&
 386        git send-email \
 387                --from="Example <nobody@example.com>" \
 388                --to-cmd=./tocmd-sed \
 389                --smtp-server="$(pwd)/fake.sendmail" \
 390                tocmd.patch \
 391                &&
 392        grep "^To: tocmd@example.com" msgtxt1
 393'
 394
 395test_expect_success $PREREQ 'cccmd works' '
 396        clean_fake_sendmail &&
 397        cp $patches cccmd.patch &&
 398        echo "cccmd--  cccmd@example.com" >>cccmd.patch &&
 399        git send-email \
 400                --from="Example <nobody@example.com>" \
 401                --to=nobody@example.com \
 402                --cc-cmd=./cccmd-sed \
 403                --smtp-server="$(pwd)/fake.sendmail" \
 404                cccmd.patch \
 405                &&
 406        grep "^ cccmd@example.com" msgtxt1
 407'
 408
 409test_expect_success $PREREQ 'reject long lines' '
 410        z8=zzzzzzzz &&
 411        z64=$z8$z8$z8$z8$z8$z8$z8$z8 &&
 412        z512=$z64$z64$z64$z64$z64$z64$z64$z64 &&
 413        clean_fake_sendmail &&
 414        cp $patches longline.patch &&
 415        echo $z512$z512 >>longline.patch &&
 416        test_must_fail git send-email \
 417                --from="Example <nobody@example.com>" \
 418                --to=nobody@example.com \
 419                --smtp-server="$(pwd)/fake.sendmail" \
 420                --transfer-encoding=8bit \
 421                $patches longline.patch \
 422                2>errors &&
 423        grep longline.patch errors
 424'
 425
 426test_expect_success $PREREQ 'no patch was sent' '
 427        ! test -e commandline1
 428'
 429
 430test_expect_success $PREREQ 'Author From: in message body' '
 431        clean_fake_sendmail &&
 432        git send-email \
 433                --from="Example <nobody@example.com>" \
 434                --to=nobody@example.com \
 435                --smtp-server="$(pwd)/fake.sendmail" \
 436                $patches &&
 437        sed "1,/^\$/d" <msgtxt1 >msgbody1 &&
 438        grep "From: A <author@example.com>" msgbody1
 439'
 440
 441test_expect_success $PREREQ 'Author From: not in message body' '
 442        clean_fake_sendmail &&
 443        git send-email \
 444                --from="A <author@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
 450'
 451
 452test_expect_success $PREREQ 'allow long lines with --no-validate' '
 453        git send-email \
 454                --from="Example <nobody@example.com>" \
 455                --to=nobody@example.com \
 456                --smtp-server="$(pwd)/fake.sendmail" \
 457                --no-validate \
 458                $patches longline.patch \
 459                2>errors
 460'
 461
 462test_expect_success $PREREQ 'short lines with auto encoding are 8bit' '
 463        clean_fake_sendmail &&
 464        git send-email \
 465                --from="A <author@example.com>" \
 466                --to=nobody@example.com \
 467                --smtp-server="$(pwd)/fake.sendmail" \
 468                --transfer-encoding=auto \
 469                $patches &&
 470        grep "Content-Transfer-Encoding: 8bit" msgtxt1
 471'
 472
 473test_expect_success $PREREQ 'long lines with auto encoding are quoted-printable' '
 474        clean_fake_sendmail &&
 475        git send-email \
 476                --from="Example <nobody@example.com>" \
 477                --to=nobody@example.com \
 478                --smtp-server="$(pwd)/fake.sendmail" \
 479                --transfer-encoding=auto \
 480                --no-validate \
 481                longline.patch &&
 482        grep "Content-Transfer-Encoding: quoted-printable" msgtxt1
 483'
 484
 485for enc in auto quoted-printable base64
 486do
 487        test_expect_success $PREREQ "--validate passes with encoding $enc" '
 488                git send-email \
 489                        --from="Example <nobody@example.com>" \
 490                        --to=nobody@example.com \
 491                        --smtp-server="$(pwd)/fake.sendmail" \
 492                        --transfer-encoding=$enc \
 493                        --validate \
 494                        $patches longline.patch
 495        '
 496done
 497
 498test_expect_success $PREREQ 'Invalid In-Reply-To' '
 499        clean_fake_sendmail &&
 500        git send-email \
 501                --from="Example <nobody@example.com>" \
 502                --to=nobody@example.com \
 503                --in-reply-to=" " \
 504                --smtp-server="$(pwd)/fake.sendmail" \
 505                $patches \
 506                2>errors &&
 507        ! grep "^In-Reply-To: < *>" msgtxt1
 508'
 509
 510test_expect_success $PREREQ 'Valid In-Reply-To when prompting' '
 511        clean_fake_sendmail &&
 512        (echo "From Example <from@example.com>"
 513         echo "To Example <to@example.com>"
 514         echo ""
 515        ) | GIT_SEND_EMAIL_NOTTY=1 git send-email \
 516                --smtp-server="$(pwd)/fake.sendmail" \
 517                $patches 2>errors &&
 518        ! grep "^In-Reply-To: < *>" msgtxt1
 519'
 520
 521test_expect_success $PREREQ 'In-Reply-To without --chain-reply-to' '
 522        clean_fake_sendmail &&
 523        echo "<unique-message-id@example.com>" >expect &&
 524        git send-email \
 525                --from="Example <nobody@example.com>" \
 526                --to=nobody@example.com \
 527                --no-chain-reply-to \
 528                --in-reply-to="$(cat expect)" \
 529                --smtp-server="$(pwd)/fake.sendmail" \
 530                $patches $patches $patches \
 531                2>errors &&
 532        # The first message is a reply to --in-reply-to
 533        sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt1 >actual &&
 534        test_cmp expect actual &&
 535        # Second and subsequent messages are replies to the first one
 536        sed -n -e "s/^Message-Id: *\(.*\)/\1/p" msgtxt1 >expect &&
 537        sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt2 >actual &&
 538        test_cmp expect actual &&
 539        sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt3 >actual &&
 540        test_cmp expect actual
 541'
 542
 543test_expect_success $PREREQ 'In-Reply-To with --chain-reply-to' '
 544        clean_fake_sendmail &&
 545        echo "<unique-message-id@example.com>" >expect &&
 546        git send-email \
 547                --from="Example <nobody@example.com>" \
 548                --to=nobody@example.com \
 549                --chain-reply-to \
 550                --in-reply-to="$(cat expect)" \
 551                --smtp-server="$(pwd)/fake.sendmail" \
 552                $patches $patches $patches \
 553                2>errors &&
 554        sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt1 >actual &&
 555        test_cmp expect actual &&
 556        sed -n -e "s/^Message-Id: *\(.*\)/\1/p" msgtxt1 >expect &&
 557        sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt2 >actual &&
 558        test_cmp expect actual &&
 559        sed -n -e "s/^Message-Id: *\(.*\)/\1/p" msgtxt2 >expect &&
 560        sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt3 >actual &&
 561        test_cmp expect actual
 562'
 563
 564test_expect_success $PREREQ 'setup fake editor' '
 565        write_script fake-editor <<-\EOF
 566        echo fake edit >>"$1"
 567        EOF
 568'
 569
 570test_set_editor "$(pwd)/fake-editor"
 571
 572test_expect_success $PREREQ '--compose works' '
 573        clean_fake_sendmail &&
 574        git send-email \
 575        --compose --subject foo \
 576        --from="Example <nobody@example.com>" \
 577        --to=nobody@example.com \
 578        --smtp-server="$(pwd)/fake.sendmail" \
 579        $patches \
 580        2>errors
 581'
 582
 583test_expect_success $PREREQ 'first message is compose text' '
 584        grep "^fake edit" msgtxt1
 585'
 586
 587test_expect_success $PREREQ 'second message is patch' '
 588        grep "Subject:.*Second" msgtxt2
 589'
 590
 591test_expect_success $PREREQ 'setup expect' "
 592cat >expected-suppress-sob <<\EOF
 5930001-Second.patch
 594(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
 595(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
 596(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
 597Dry-OK. Log says:
 598Server: relay.example.com
 599MAIL FROM:<from@example.com>
 600RCPT TO:<to@example.com>
 601RCPT TO:<cc@example.com>
 602RCPT TO:<author@example.com>
 603RCPT TO:<one@example.com>
 604RCPT TO:<two@example.com>
 605From: Example <from@example.com>
 606To: to@example.com
 607Cc: cc@example.com,
 608        A <author@example.com>,
 609        One <one@example.com>,
 610        two@example.com
 611Subject: [PATCH 1/1] Second.
 612Date: DATE-STRING
 613Message-Id: MESSAGE-ID-STRING
 614X-Mailer: X-MAILER-STRING
 615MIME-Version: 1.0
 616Content-Transfer-Encoding: 8bit
 617
 618Result: OK
 619EOF
 620"
 621
 622test_suppression () {
 623        git send-email \
 624                --dry-run \
 625                --suppress-cc=$1 ${2+"--suppress-cc=$2"} \
 626                --from="Example <from@example.com>" \
 627                --to=to@example.com \
 628                --smtp-server relay.example.com \
 629                $patches | replace_variable_fields \
 630                >actual-suppress-$1${2+"-$2"} &&
 631        test_cmp expected-suppress-$1${2+"-$2"} actual-suppress-$1${2+"-$2"}
 632}
 633
 634test_expect_success $PREREQ 'sendemail.cc set' '
 635        git config sendemail.cc cc@example.com &&
 636        test_suppression sob
 637'
 638
 639test_expect_success $PREREQ 'setup expect' "
 640cat >expected-suppress-sob <<\EOF
 6410001-Second.patch
 642(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
 643(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
 644(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
 645Dry-OK. Log says:
 646Server: relay.example.com
 647MAIL FROM:<from@example.com>
 648RCPT TO:<to@example.com>
 649RCPT TO:<author@example.com>
 650RCPT TO:<one@example.com>
 651RCPT TO:<two@example.com>
 652From: Example <from@example.com>
 653To: to@example.com
 654Cc: A <author@example.com>,
 655        One <one@example.com>,
 656        two@example.com
 657Subject: [PATCH 1/1] Second.
 658Date: DATE-STRING
 659Message-Id: MESSAGE-ID-STRING
 660X-Mailer: X-MAILER-STRING
 661MIME-Version: 1.0
 662Content-Transfer-Encoding: 8bit
 663
 664Result: OK
 665EOF
 666"
 667
 668test_expect_success $PREREQ 'sendemail.cc unset' '
 669        git config --unset sendemail.cc &&
 670        test_suppression sob
 671'
 672
 673test_expect_success $PREREQ 'setup expect' "
 674cat >expected-suppress-cccmd <<\EOF
 6750001-Second.patch
 676(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
 677(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
 678(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
 679(body) Adding cc: C O Mitter <committer@example.com> from line 'Signed-off-by: C O Mitter <committer@example.com>'
 680Dry-OK. Log says:
 681Server: relay.example.com
 682MAIL FROM:<from@example.com>
 683RCPT TO:<to@example.com>
 684RCPT TO:<author@example.com>
 685RCPT TO:<one@example.com>
 686RCPT TO:<two@example.com>
 687RCPT TO:<committer@example.com>
 688From: Example <from@example.com>
 689To: to@example.com
 690Cc: A <author@example.com>,
 691        One <one@example.com>,
 692        two@example.com,
 693        C O Mitter <committer@example.com>
 694Subject: [PATCH 1/1] Second.
 695Date: DATE-STRING
 696Message-Id: MESSAGE-ID-STRING
 697X-Mailer: X-MAILER-STRING
 698MIME-Version: 1.0
 699Content-Transfer-Encoding: 8bit
 700
 701Result: OK
 702EOF
 703"
 704
 705test_expect_success $PREREQ 'sendemail.cccmd' '
 706        write_script cccmd <<-\EOF &&
 707        echo cc-cmd@example.com
 708        EOF
 709        git config sendemail.cccmd ./cccmd &&
 710        test_suppression cccmd
 711'
 712
 713test_expect_success $PREREQ 'setup expect' '
 714cat >expected-suppress-all <<\EOF
 7150001-Second.patch
 716Dry-OK. Log says:
 717Server: relay.example.com
 718MAIL FROM:<from@example.com>
 719RCPT TO:<to@example.com>
 720From: Example <from@example.com>
 721To: to@example.com
 722Subject: [PATCH 1/1] Second.
 723Date: DATE-STRING
 724Message-Id: MESSAGE-ID-STRING
 725X-Mailer: X-MAILER-STRING
 726MIME-Version: 1.0
 727Content-Transfer-Encoding: 8bit
 728
 729Result: OK
 730EOF
 731'
 732
 733test_expect_success $PREREQ '--suppress-cc=all' '
 734        test_suppression all
 735'
 736
 737test_expect_success $PREREQ 'setup expect' "
 738cat >expected-suppress-body <<\EOF
 7390001-Second.patch
 740(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
 741(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
 742(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
 743(cc-cmd) Adding cc: cc-cmd@example.com from: './cccmd'
 744Dry-OK. Log says:
 745Server: relay.example.com
 746MAIL FROM:<from@example.com>
 747RCPT TO:<to@example.com>
 748RCPT TO:<author@example.com>
 749RCPT TO:<one@example.com>
 750RCPT TO:<two@example.com>
 751RCPT TO:<cc-cmd@example.com>
 752From: Example <from@example.com>
 753To: to@example.com
 754Cc: A <author@example.com>,
 755        One <one@example.com>,
 756        two@example.com,
 757        cc-cmd@example.com
 758Subject: [PATCH 1/1] Second.
 759Date: DATE-STRING
 760Message-Id: MESSAGE-ID-STRING
 761X-Mailer: X-MAILER-STRING
 762MIME-Version: 1.0
 763Content-Transfer-Encoding: 8bit
 764
 765Result: OK
 766EOF
 767"
 768
 769test_expect_success $PREREQ '--suppress-cc=body' '
 770        test_suppression body
 771'
 772
 773test_expect_success $PREREQ 'setup expect' "
 774cat >expected-suppress-body-cccmd <<\EOF
 7750001-Second.patch
 776(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
 777(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
 778(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
 779Dry-OK. Log says:
 780Server: relay.example.com
 781MAIL FROM:<from@example.com>
 782RCPT TO:<to@example.com>
 783RCPT TO:<author@example.com>
 784RCPT TO:<one@example.com>
 785RCPT TO:<two@example.com>
 786From: Example <from@example.com>
 787To: to@example.com
 788Cc: A <author@example.com>,
 789        One <one@example.com>,
 790        two@example.com
 791Subject: [PATCH 1/1] Second.
 792Date: DATE-STRING
 793Message-Id: MESSAGE-ID-STRING
 794X-Mailer: X-MAILER-STRING
 795MIME-Version: 1.0
 796Content-Transfer-Encoding: 8bit
 797
 798Result: OK
 799EOF
 800"
 801
 802test_expect_success $PREREQ '--suppress-cc=body --suppress-cc=cccmd' '
 803        test_suppression body cccmd
 804'
 805
 806test_expect_success $PREREQ 'setup expect' "
 807cat >expected-suppress-sob <<\EOF
 8080001-Second.patch
 809(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
 810(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
 811(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
 812Dry-OK. Log says:
 813Server: relay.example.com
 814MAIL FROM:<from@example.com>
 815RCPT TO:<to@example.com>
 816RCPT TO:<author@example.com>
 817RCPT TO:<one@example.com>
 818RCPT TO:<two@example.com>
 819From: Example <from@example.com>
 820To: to@example.com
 821Cc: A <author@example.com>,
 822        One <one@example.com>,
 823        two@example.com
 824Subject: [PATCH 1/1] Second.
 825Date: DATE-STRING
 826Message-Id: MESSAGE-ID-STRING
 827X-Mailer: X-MAILER-STRING
 828MIME-Version: 1.0
 829Content-Transfer-Encoding: 8bit
 830
 831Result: OK
 832EOF
 833"
 834
 835test_expect_success $PREREQ '--suppress-cc=sob' '
 836        test_might_fail git config --unset sendemail.cccmd &&
 837        test_suppression sob
 838'
 839
 840test_expect_success $PREREQ 'setup expect' "
 841cat >expected-suppress-bodycc <<\EOF
 8420001-Second.patch
 843(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
 844(mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
 845(mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
 846(body) Adding cc: C O Mitter <committer@example.com> from line 'Signed-off-by: C O Mitter <committer@example.com>'
 847Dry-OK. Log says:
 848Server: relay.example.com
 849MAIL FROM:<from@example.com>
 850RCPT TO:<to@example.com>
 851RCPT TO:<author@example.com>
 852RCPT TO:<one@example.com>
 853RCPT TO:<two@example.com>
 854RCPT TO:<committer@example.com>
 855From: Example <from@example.com>
 856To: to@example.com
 857Cc: A <author@example.com>,
 858        One <one@example.com>,
 859        two@example.com,
 860        C O Mitter <committer@example.com>
 861Subject: [PATCH 1/1] Second.
 862Date: DATE-STRING
 863Message-Id: MESSAGE-ID-STRING
 864X-Mailer: X-MAILER-STRING
 865MIME-Version: 1.0
 866Content-Transfer-Encoding: 8bit
 867
 868Result: OK
 869EOF
 870"
 871
 872test_expect_success $PREREQ '--suppress-cc=bodycc' '
 873        test_suppression bodycc
 874'
 875
 876test_expect_success $PREREQ 'setup expect' "
 877cat >expected-suppress-cc <<\EOF
 8780001-Second.patch
 879(mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
 880(body) Adding cc: C O Mitter <committer@example.com> from line 'Signed-off-by: C O Mitter <committer@example.com>'
 881Dry-OK. Log says:
 882Server: relay.example.com
 883MAIL FROM:<from@example.com>
 884RCPT TO:<to@example.com>
 885RCPT TO:<author@example.com>
 886RCPT TO:<committer@example.com>
 887From: Example <from@example.com>
 888To: to@example.com
 889Cc: A <author@example.com>,
 890        C O Mitter <committer@example.com>
 891Subject: [PATCH 1/1] Second.
 892Date: DATE-STRING
 893Message-Id: MESSAGE-ID-STRING
 894X-Mailer: X-MAILER-STRING
 895MIME-Version: 1.0
 896Content-Transfer-Encoding: 8bit
 897
 898Result: OK
 899EOF
 900"
 901
 902test_expect_success $PREREQ '--suppress-cc=cc' '
 903        test_suppression cc
 904'
 905
 906test_confirm () {
 907        echo y | \
 908                GIT_SEND_EMAIL_NOTTY=1 \
 909                git send-email \
 910                --from="Example <nobody@example.com>" \
 911                --to=nobody@example.com \
 912                --smtp-server="$(pwd)/fake.sendmail" \
 913                $@ $patches >stdout &&
 914        grep "Send this email" stdout
 915}
 916
 917test_expect_success $PREREQ '--confirm=always' '
 918        test_confirm --confirm=always --suppress-cc=all
 919'
 920
 921test_expect_success $PREREQ '--confirm=auto' '
 922        test_confirm --confirm=auto
 923'
 924
 925test_expect_success $PREREQ '--confirm=cc' '
 926        test_confirm --confirm=cc
 927'
 928
 929test_expect_success $PREREQ '--confirm=compose' '
 930        test_confirm --confirm=compose --compose
 931'
 932
 933test_expect_success $PREREQ 'confirm by default (due to cc)' '
 934        test_when_finished git config sendemail.confirm never &&
 935        git config --unset sendemail.confirm &&
 936        test_confirm
 937'
 938
 939test_expect_success $PREREQ 'confirm by default (due to --compose)' '
 940        test_when_finished git config sendemail.confirm never &&
 941        git config --unset sendemail.confirm &&
 942        test_confirm --suppress-cc=all --compose
 943'
 944
 945test_expect_success $PREREQ 'confirm detects EOF (inform assumes y)' '
 946        test_when_finished git config sendemail.confirm never &&
 947        git config --unset sendemail.confirm &&
 948        rm -fr outdir &&
 949        git format-patch -2 -o outdir &&
 950        GIT_SEND_EMAIL_NOTTY=1 \
 951                git send-email \
 952                        --from="Example <nobody@example.com>" \
 953                        --to=nobody@example.com \
 954                        --smtp-server="$(pwd)/fake.sendmail" \
 955                        outdir/*.patch </dev/null
 956'
 957
 958test_expect_success $PREREQ 'confirm detects EOF (auto causes failure)' '
 959        test_when_finished git config sendemail.confirm never &&
 960        git config sendemail.confirm auto &&
 961        GIT_SEND_EMAIL_NOTTY=1 &&
 962        export GIT_SEND_EMAIL_NOTTY &&
 963                test_must_fail git send-email \
 964                        --from="Example <nobody@example.com>" \
 965                        --to=nobody@example.com \
 966                        --smtp-server="$(pwd)/fake.sendmail" \
 967                        $patches </dev/null
 968'
 969
 970test_expect_success $PREREQ 'confirm does not loop forever' '
 971        test_when_finished git config sendemail.confirm never &&
 972        git config sendemail.confirm auto &&
 973        GIT_SEND_EMAIL_NOTTY=1 &&
 974        export GIT_SEND_EMAIL_NOTTY &&
 975                yes "bogus" | test_must_fail git send-email \
 976                        --from="Example <nobody@example.com>" \
 977                        --to=nobody@example.com \
 978                        --smtp-server="$(pwd)/fake.sendmail" \
 979                        $patches
 980'
 981
 982test_expect_success $PREREQ 'utf8 Cc is rfc2047 encoded' '
 983        clean_fake_sendmail &&
 984        rm -fr outdir &&
 985        git format-patch -1 -o outdir --cc="àéìöú <utf8@example.com>" &&
 986        git send-email \
 987        --from="Example <nobody@example.com>" \
 988        --to=nobody@example.com \
 989        --smtp-server="$(pwd)/fake.sendmail" \
 990        outdir/*.patch &&
 991        grep "^ " msgtxt1 |
 992        grep "=?UTF-8?q?=C3=A0=C3=A9=C3=AC=C3=B6=C3=BA?= <utf8@example.com>"
 993'
 994
 995test_expect_success $PREREQ '--compose adds MIME for utf8 body' '
 996        clean_fake_sendmail &&
 997        write_script fake-editor-utf8 <<-\EOF &&
 998        echo "utf8 body: àéìöú" >>"$1"
 999        EOF
1000        GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1001        git send-email \
1002                --compose --subject foo \
1003                --from="Example <nobody@example.com>" \
1004                --to=nobody@example.com \
1005                --smtp-server="$(pwd)/fake.sendmail" \
1006                $patches &&
1007        grep "^utf8 body" msgtxt1 &&
1008        grep "^Content-Type: text/plain; charset=UTF-8" msgtxt1
1009'
1010
1011test_expect_success $PREREQ '--compose respects user mime type' '
1012        clean_fake_sendmail &&
1013        write_script fake-editor-utf8-mime <<-\EOF &&
1014        cat >"$1" <<-\EOM
1015        MIME-Version: 1.0
1016        Content-Type: text/plain; charset=iso-8859-1
1017        Content-Transfer-Encoding: 8bit
1018        Subject: foo
1019
1020        utf8 body: àéìöú
1021        EOM
1022        EOF
1023        GIT_EDITOR="\"$(pwd)/fake-editor-utf8-mime\"" \
1024        git send-email \
1025                --compose --subject foo \
1026                --from="Example <nobody@example.com>" \
1027                --to=nobody@example.com \
1028                --smtp-server="$(pwd)/fake.sendmail" \
1029                $patches &&
1030        grep "^utf8 body" msgtxt1 &&
1031        grep "^Content-Type: text/plain; charset=iso-8859-1" msgtxt1 &&
1032        ! grep "^Content-Type: text/plain; charset=UTF-8" msgtxt1
1033'
1034
1035test_expect_success $PREREQ '--compose adds MIME for utf8 subject' '
1036        clean_fake_sendmail &&
1037        GIT_EDITOR="\"$(pwd)/fake-editor\"" \
1038        git send-email \
1039                --compose --subject utf8-sübjëct \
1040                --from="Example <nobody@example.com>" \
1041                --to=nobody@example.com \
1042                --smtp-server="$(pwd)/fake.sendmail" \
1043                $patches &&
1044        grep "^fake edit" msgtxt1 &&
1045        grep "^Subject: =?UTF-8?q?utf8-s=C3=BCbj=C3=ABct?=" msgtxt1
1046'
1047
1048test_expect_success $PREREQ 'utf8 author is correctly passed on' '
1049        clean_fake_sendmail &&
1050        test_commit weird_author &&
1051        test_when_finished "git reset --hard HEAD^" &&
1052        git commit --amend --author "Füñný Nâmé <odd_?=mail@example.com>" &&
1053        git format-patch --stdout -1 >funny_name.patch &&
1054        git send-email --from="Example <nobody@example.com>" \
1055                --to=nobody@example.com \
1056                --smtp-server="$(pwd)/fake.sendmail" \
1057                funny_name.patch &&
1058        grep "^From: Füñný Nâmé <odd_?=mail@example.com>" msgtxt1
1059'
1060
1061test_expect_success $PREREQ 'utf8 sender is not duplicated' '
1062        clean_fake_sendmail &&
1063        test_commit weird_sender &&
1064        test_when_finished "git reset --hard HEAD^" &&
1065        git commit --amend --author "Füñný Nâmé <odd_?=mail@example.com>" &&
1066        git format-patch --stdout -1 >funny_name.patch &&
1067        git send-email --from="Füñný Nâmé <odd_?=mail@example.com>" \
1068                --to=nobody@example.com \
1069                --smtp-server="$(pwd)/fake.sendmail" \
1070                funny_name.patch &&
1071        grep "^From: " msgtxt1 >msgfrom &&
1072        test_line_count = 1 msgfrom
1073'
1074
1075test_expect_success $PREREQ 'sendemail.composeencoding works' '
1076        clean_fake_sendmail &&
1077        git config sendemail.composeencoding iso-8859-1 &&
1078        write_script fake-editor-utf8 <<-\EOF &&
1079        echo "utf8 body: àéìöú" >>"$1"
1080        EOF
1081        GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1082        git send-email \
1083                --compose --subject foo \
1084                --from="Example <nobody@example.com>" \
1085                --to=nobody@example.com \
1086                --smtp-server="$(pwd)/fake.sendmail" \
1087                $patches &&
1088        grep "^utf8 body" msgtxt1 &&
1089        grep "^Content-Type: text/plain; charset=iso-8859-1" msgtxt1
1090'
1091
1092test_expect_success $PREREQ '--compose-encoding works' '
1093        clean_fake_sendmail &&
1094        write_script fake-editor-utf8 <<-\EOF &&
1095        echo "utf8 body: àéìöú" >>"$1"
1096        EOF
1097        GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1098        git send-email \
1099                --compose-encoding iso-8859-1 \
1100                --compose --subject foo \
1101                --from="Example <nobody@example.com>" \
1102                --to=nobody@example.com \
1103                --smtp-server="$(pwd)/fake.sendmail" \
1104                $patches &&
1105        grep "^utf8 body" msgtxt1 &&
1106        grep "^Content-Type: text/plain; charset=iso-8859-1" msgtxt1
1107'
1108
1109test_expect_success $PREREQ '--compose-encoding overrides sendemail.composeencoding' '
1110        clean_fake_sendmail &&
1111        git config sendemail.composeencoding iso-8859-1 &&
1112        write_script fake-editor-utf8 <<-\EOF &&
1113        echo "utf8 body: àéìöú" >>"$1"
1114        EOF
1115        GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1116        git send-email \
1117                --compose-encoding iso-8859-2 \
1118                --compose --subject foo \
1119                --from="Example <nobody@example.com>" \
1120                --to=nobody@example.com \
1121                --smtp-server="$(pwd)/fake.sendmail" \
1122                $patches &&
1123        grep "^utf8 body" msgtxt1 &&
1124        grep "^Content-Type: text/plain; charset=iso-8859-2" msgtxt1
1125'
1126
1127test_expect_success $PREREQ '--compose-encoding adds correct MIME for subject' '
1128        clean_fake_sendmail &&
1129        GIT_EDITOR="\"$(pwd)/fake-editor\"" \
1130        git send-email \
1131                --compose-encoding iso-8859-2 \
1132                --compose --subject utf8-sübjëct \
1133                --from="Example <nobody@example.com>" \
1134                --to=nobody@example.com \
1135                --smtp-server="$(pwd)/fake.sendmail" \
1136                $patches &&
1137        grep "^fake edit" msgtxt1 &&
1138        grep "^Subject: =?iso-8859-2?q?utf8-s=C3=BCbj=C3=ABct?=" msgtxt1
1139'
1140
1141test_expect_success $PREREQ 'detects ambiguous reference/file conflict' '
1142        echo master >master &&
1143        git add master &&
1144        git commit -m"add master" &&
1145        test_must_fail git send-email --dry-run master 2>errors &&
1146        grep disambiguate errors
1147'
1148
1149test_expect_success $PREREQ 'feed two files' '
1150        rm -fr outdir &&
1151        git format-patch -2 -o outdir &&
1152        git send-email \
1153                --dry-run \
1154                --from="Example <nobody@example.com>" \
1155                --to=nobody@example.com \
1156                outdir/000?-*.patch 2>errors >out &&
1157        grep "^Subject: " out >subjects &&
1158        test "z$(sed -n -e 1p subjects)" = "zSubject: [PATCH 1/2] Second." &&
1159        test "z$(sed -n -e 2p subjects)" = "zSubject: [PATCH 2/2] add master"
1160'
1161
1162test_expect_success $PREREQ 'in-reply-to but no threading' '
1163        git send-email \
1164                --dry-run \
1165                --from="Example <nobody@example.com>" \
1166                --to=nobody@example.com \
1167                --in-reply-to="<in-reply-id@example.com>" \
1168                --no-thread \
1169                $patches |
1170        grep "In-Reply-To: <in-reply-id@example.com>"
1171'
1172
1173test_expect_success $PREREQ 'no in-reply-to and no threading' '
1174        git send-email \
1175                --dry-run \
1176                --from="Example <nobody@example.com>" \
1177                --to=nobody@example.com \
1178                --no-thread \
1179                $patches >stdout &&
1180        ! grep "In-Reply-To: " stdout
1181'
1182
1183test_expect_success $PREREQ 'threading but no chain-reply-to' '
1184        git send-email \
1185                --dry-run \
1186                --from="Example <nobody@example.com>" \
1187                --to=nobody@example.com \
1188                --thread \
1189                --no-chain-reply-to \
1190                $patches $patches >stdout &&
1191        grep "In-Reply-To: " stdout
1192'
1193
1194test_expect_success $PREREQ 'sendemail.to works' '
1195        git config --replace-all sendemail.to "Somebody <somebody@ex.com>" &&
1196        git send-email \
1197                --dry-run \
1198                --from="Example <nobody@example.com>" \
1199                $patches >stdout &&
1200        grep "To: Somebody <somebody@ex.com>" stdout
1201'
1202
1203test_expect_success $PREREQ '--no-to overrides sendemail.to' '
1204        git send-email \
1205                --dry-run \
1206                --from="Example <nobody@example.com>" \
1207                --no-to \
1208                --to=nobody@example.com \
1209                $patches >stdout &&
1210        grep "To: nobody@example.com" stdout &&
1211        ! grep "To: Somebody <somebody@ex.com>" stdout
1212'
1213
1214test_expect_success $PREREQ 'sendemail.cc works' '
1215        git config --replace-all sendemail.cc "Somebody <somebody@ex.com>" &&
1216        git send-email \
1217                --dry-run \
1218                --from="Example <nobody@example.com>" \
1219                --to=nobody@example.com \
1220                $patches >stdout &&
1221        grep "Cc: Somebody <somebody@ex.com>" stdout
1222'
1223
1224test_expect_success $PREREQ '--no-cc overrides sendemail.cc' '
1225        git send-email \
1226                --dry-run \
1227                --from="Example <nobody@example.com>" \
1228                --no-cc \
1229                --cc=bodies@example.com \
1230                --to=nobody@example.com \
1231                $patches >stdout &&
1232        grep "Cc: bodies@example.com" stdout &&
1233        ! grep "Cc: Somebody <somebody@ex.com>" stdout
1234'
1235
1236test_expect_success $PREREQ 'sendemail.bcc works' '
1237        git config --replace-all sendemail.bcc "Other <other@ex.com>" &&
1238        git send-email \
1239                --dry-run \
1240                --from="Example <nobody@example.com>" \
1241                --to=nobody@example.com \
1242                --smtp-server relay.example.com \
1243                $patches >stdout &&
1244        grep "RCPT TO:<other@ex.com>" stdout
1245'
1246
1247test_expect_success $PREREQ '--no-bcc overrides sendemail.bcc' '
1248        git send-email \
1249                --dry-run \
1250                --from="Example <nobody@example.com>" \
1251                --no-bcc \
1252                --bcc=bodies@example.com \
1253                --to=nobody@example.com \
1254                --smtp-server relay.example.com \
1255                $patches >stdout &&
1256        grep "RCPT TO:<bodies@example.com>" stdout &&
1257        ! grep "RCPT TO:<other@ex.com>" stdout
1258'
1259
1260test_expect_success $PREREQ 'patches To headers are used by default' '
1261        patch=$(git format-patch -1 --to="bodies@example.com") &&
1262        test_when_finished "rm $patch" &&
1263        git send-email \
1264                --dry-run \
1265                --from="Example <nobody@example.com>" \
1266                --smtp-server relay.example.com \
1267                $patch >stdout &&
1268        grep "RCPT TO:<bodies@example.com>" stdout
1269'
1270
1271test_expect_success $PREREQ 'patches To headers are appended to' '
1272        patch=$(git format-patch -1 --to="bodies@example.com") &&
1273        test_when_finished "rm $patch" &&
1274        git send-email \
1275                --dry-run \
1276                --from="Example <nobody@example.com>" \
1277                --to=nobody@example.com \
1278                --smtp-server relay.example.com \
1279                $patch >stdout &&
1280        grep "RCPT TO:<bodies@example.com>" stdout &&
1281        grep "RCPT TO:<nobody@example.com>" stdout
1282'
1283
1284test_expect_success $PREREQ 'To headers from files reset each patch' '
1285        patch1=$(git format-patch -1 --to="bodies@example.com") &&
1286        patch2=$(git format-patch -1 --to="other@example.com" HEAD~) &&
1287        test_when_finished "rm $patch1 && rm $patch2" &&
1288        git send-email \
1289                --dry-run \
1290                --from="Example <nobody@example.com>" \
1291                --to="nobody@example.com" \
1292                --smtp-server relay.example.com \
1293                $patch1 $patch2 >stdout &&
1294        test $(grep -c "RCPT TO:<bodies@example.com>" stdout) = 1 &&
1295        test $(grep -c "RCPT TO:<nobody@example.com>" stdout) = 2 &&
1296        test $(grep -c "RCPT TO:<other@example.com>" stdout) = 1
1297'
1298
1299test_expect_success $PREREQ 'setup expect' '
1300cat >email-using-8bit <<\EOF
1301From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1302Message-Id: <bogus-message-id@example.com>
1303From: author@example.com
1304Date: Sat, 12 Jun 2010 15:53:58 +0200
1305Subject: subject goes here
1306
1307Dieser deutsche Text enthält einen Umlaut!
1308EOF
1309'
1310
1311test_expect_success $PREREQ 'setup expect' '
1312        echo "Subject: subject goes here" >expected
1313'
1314
1315test_expect_success $PREREQ 'ASCII subject is not RFC2047 quoted' '
1316        clean_fake_sendmail &&
1317        echo bogus |
1318        git send-email --from=author@example.com --to=nobody@example.com \
1319                        --smtp-server="$(pwd)/fake.sendmail" \
1320                        --8bit-encoding=UTF-8 \
1321                        email-using-8bit >stdout &&
1322        grep "Subject" msgtxt1 >actual &&
1323        test_cmp expected actual
1324'
1325
1326test_expect_success $PREREQ 'setup expect' '
1327        cat >content-type-decl <<-\EOF
1328        MIME-Version: 1.0
1329        Content-Type: text/plain; charset=UTF-8
1330        Content-Transfer-Encoding: 8bit
1331        EOF
1332'
1333
1334test_expect_success $PREREQ 'asks about and fixes 8bit encodings' '
1335        clean_fake_sendmail &&
1336        echo |
1337        git send-email --from=author@example.com --to=nobody@example.com \
1338                        --smtp-server="$(pwd)/fake.sendmail" \
1339                        email-using-8bit >stdout &&
1340        grep "do not declare a Content-Transfer-Encoding" stdout &&
1341        grep email-using-8bit stdout &&
1342        grep "Which 8bit encoding" stdout &&
1343        egrep "Content|MIME" msgtxt1 >actual &&
1344        test_cmp content-type-decl actual
1345'
1346
1347test_expect_success $PREREQ 'sendemail.8bitEncoding works' '
1348        clean_fake_sendmail &&
1349        git config sendemail.assume8bitEncoding UTF-8 &&
1350        echo bogus |
1351        git send-email --from=author@example.com --to=nobody@example.com \
1352                        --smtp-server="$(pwd)/fake.sendmail" \
1353                        email-using-8bit >stdout &&
1354        egrep "Content|MIME" msgtxt1 >actual &&
1355        test_cmp content-type-decl actual
1356'
1357
1358test_expect_success $PREREQ '--8bit-encoding overrides sendemail.8bitEncoding' '
1359        clean_fake_sendmail &&
1360        git config sendemail.assume8bitEncoding "bogus too" &&
1361        echo bogus |
1362        git send-email --from=author@example.com --to=nobody@example.com \
1363                        --smtp-server="$(pwd)/fake.sendmail" \
1364                        --8bit-encoding=UTF-8 \
1365                        email-using-8bit >stdout &&
1366        egrep "Content|MIME" msgtxt1 >actual &&
1367        test_cmp content-type-decl actual
1368'
1369
1370test_expect_success $PREREQ 'setup expect' '
1371        cat >email-using-8bit <<-\EOF
1372        From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1373        Message-Id: <bogus-message-id@example.com>
1374        From: author@example.com
1375        Date: Sat, 12 Jun 2010 15:53:58 +0200
1376        Subject: Dieser Betreff enthält auch einen Umlaut!
1377
1378        Nothing to see here.
1379        EOF
1380'
1381
1382test_expect_success $PREREQ 'setup expect' '
1383        cat >expected <<-\EOF
1384        Subject: =?UTF-8?q?Dieser=20Betreff=20enth=C3=A4lt=20auch=20einen=20Umlaut!?=
1385        EOF
1386'
1387
1388test_expect_success $PREREQ '--8bit-encoding also treats subject' '
1389        clean_fake_sendmail &&
1390        echo bogus |
1391        git send-email --from=author@example.com --to=nobody@example.com \
1392                        --smtp-server="$(pwd)/fake.sendmail" \
1393                        --8bit-encoding=UTF-8 \
1394                        email-using-8bit >stdout &&
1395        grep "Subject" msgtxt1 >actual &&
1396        test_cmp expected actual
1397'
1398
1399test_expect_success $PREREQ 'setup expect' '
1400        cat >email-using-8bit <<-\EOF
1401        From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1402        Message-Id: <bogus-message-id@example.com>
1403        From: A U Thor <author@example.com>
1404        Date: Sat, 12 Jun 2010 15:53:58 +0200
1405        Content-Type: text/plain; charset=UTF-8
1406        Subject: Nothing to see here.
1407
1408        Dieser Betreff enthält auch einen Umlaut!
1409        EOF
1410'
1411
1412test_expect_success $PREREQ 'sendemail.transferencoding=7bit fails on 8bit data' '
1413        clean_fake_sendmail &&
1414        git config sendemail.transferEncoding 7bit &&
1415        test_must_fail git send-email \
1416                --transfer-encoding=7bit \
1417                --smtp-server="$(pwd)/fake.sendmail" \
1418                email-using-8bit \
1419                2>errors >out &&
1420        grep "cannot send message as 7bit" errors &&
1421        test -z "$(ls msgtxt*)"
1422'
1423
1424test_expect_success $PREREQ '--transfer-encoding overrides sendemail.transferEncoding' '
1425        clean_fake_sendmail &&
1426        git config sendemail.transferEncoding 8bit &&
1427        test_must_fail git send-email \
1428                --transfer-encoding=7bit \
1429                --smtp-server="$(pwd)/fake.sendmail" \
1430                email-using-8bit \
1431                2>errors >out &&
1432        grep "cannot send message as 7bit" errors &&
1433        test -z "$(ls msgtxt*)"
1434'
1435
1436test_expect_success $PREREQ 'sendemail.transferencoding=8bit via config' '
1437        clean_fake_sendmail &&
1438        git -c sendemail.transferencoding=8bit send-email \
1439                --smtp-server="$(pwd)/fake.sendmail" \
1440                email-using-8bit \
1441                2>errors >out &&
1442        sed '1,/^$/d' msgtxt1 >actual &&
1443        sed '1,/^$/d' email-using-8bit >expected &&
1444        test_cmp expected actual
1445'
1446
1447test_expect_success $PREREQ 'sendemail.transferencoding=8bit via cli' '
1448        clean_fake_sendmail &&
1449        git send-email \
1450                --transfer-encoding=8bit \
1451                --smtp-server="$(pwd)/fake.sendmail" \
1452                email-using-8bit \
1453                2>errors >out &&
1454        sed '1,/^$/d' msgtxt1 >actual &&
1455        sed '1,/^$/d' email-using-8bit >expected &&
1456        test_cmp expected actual
1457'
1458
1459test_expect_success $PREREQ 'setup expect' '
1460        cat >expected <<-\EOF
1461        Dieser Betreff enth=C3=A4lt auch einen Umlaut!
1462        EOF
1463'
1464
1465test_expect_success $PREREQ '8-bit and sendemail.transferencoding=quoted-printable' '
1466        clean_fake_sendmail &&
1467        git send-email \
1468                --transfer-encoding=quoted-printable \
1469                --smtp-server="$(pwd)/fake.sendmail" \
1470                email-using-8bit \
1471                2>errors >out &&
1472        sed '1,/^$/d' msgtxt1 >actual &&
1473        test_cmp expected actual
1474'
1475
1476test_expect_success $PREREQ 'setup expect' '
1477        cat >expected <<-\EOF
1478        RGllc2VyIEJldHJlZmYgZW50aMOkbHQgYXVjaCBlaW5lbiBVbWxhdXQhCg==
1479        EOF
1480'
1481
1482test_expect_success $PREREQ '8-bit and sendemail.transferencoding=base64' '
1483        clean_fake_sendmail &&
1484        git send-email \
1485                --transfer-encoding=base64 \
1486                --smtp-server="$(pwd)/fake.sendmail" \
1487                email-using-8bit \
1488                2>errors >out &&
1489        sed '1,/^$/d' msgtxt1 >actual &&
1490        test_cmp expected actual
1491'
1492
1493test_expect_success $PREREQ 'setup expect' '
1494        cat >email-using-qp <<-\EOF
1495        From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1496        Message-Id: <bogus-message-id@example.com>
1497        From: A U Thor <author@example.com>
1498        Date: Sat, 12 Jun 2010 15:53:58 +0200
1499        MIME-Version: 1.0
1500        Content-Transfer-Encoding: quoted-printable
1501        Content-Type: text/plain; charset=UTF-8
1502        Subject: Nothing to see here.
1503
1504        Dieser Betreff enth=C3=A4lt auch einen Umlaut!
1505        EOF
1506'
1507
1508test_expect_success $PREREQ 'convert from quoted-printable to base64' '
1509        clean_fake_sendmail &&
1510        git send-email \
1511                --transfer-encoding=base64 \
1512                --smtp-server="$(pwd)/fake.sendmail" \
1513                email-using-qp \
1514                2>errors >out &&
1515        sed '1,/^$/d' msgtxt1 >actual &&
1516        test_cmp expected actual
1517'
1518
1519test_expect_success $PREREQ 'setup expect' "
1520tr -d '\\015' | tr '%' '\\015' >email-using-crlf <<EOF
1521From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1522Message-Id: <bogus-message-id@example.com>
1523From: A U Thor <author@example.com>
1524Date: Sat, 12 Jun 2010 15:53:58 +0200
1525Content-Type: text/plain; charset=UTF-8
1526Subject: Nothing to see here.
1527
1528Look, I have a CRLF and an = sign!%
1529EOF
1530"
1531
1532test_expect_success $PREREQ 'setup expect' '
1533        cat >expected <<-\EOF
1534        Look, I have a CRLF and an =3D sign!=0D
1535        EOF
1536'
1537
1538test_expect_success $PREREQ 'CRLF and sendemail.transferencoding=quoted-printable' '
1539        clean_fake_sendmail &&
1540        git send-email \
1541                --transfer-encoding=quoted-printable \
1542                --smtp-server="$(pwd)/fake.sendmail" \
1543                email-using-crlf \
1544                2>errors >out &&
1545        sed '1,/^$/d' msgtxt1 >actual &&
1546        test_cmp expected actual
1547'
1548
1549test_expect_success $PREREQ 'setup expect' '
1550        cat >expected <<-\EOF
1551        TG9vaywgSSBoYXZlIGEgQ1JMRiBhbmQgYW4gPSBzaWduIQ0K
1552        EOF
1553'
1554
1555test_expect_success $PREREQ 'CRLF and sendemail.transferencoding=base64' '
1556        clean_fake_sendmail &&
1557        git send-email \
1558                --transfer-encoding=base64 \
1559                --smtp-server="$(pwd)/fake.sendmail" \
1560                email-using-crlf \
1561                2>errors >out &&
1562        sed '1,/^$/d' msgtxt1 >actual &&
1563        test_cmp expected actual
1564'
1565
1566
1567# Note that the patches in this test are deliberately out of order; we
1568# want to make sure it works even if the cover-letter is not in the
1569# first mail.
1570test_expect_success $PREREQ 'refusing to send cover letter template' '
1571        clean_fake_sendmail &&
1572        rm -fr outdir &&
1573        git format-patch --cover-letter -2 -o outdir &&
1574        test_must_fail git send-email \
1575                --from="Example <nobody@example.com>" \
1576                --to=nobody@example.com \
1577                --smtp-server="$(pwd)/fake.sendmail" \
1578                outdir/0002-*.patch \
1579                outdir/0000-*.patch \
1580                outdir/0001-*.patch \
1581                2>errors >out &&
1582        grep "SUBJECT HERE" errors &&
1583        test -z "$(ls msgtxt*)"
1584'
1585
1586test_expect_success $PREREQ '--force sends cover letter template anyway' '
1587        clean_fake_sendmail &&
1588        rm -fr outdir &&
1589        git format-patch --cover-letter -2 -o outdir &&
1590        git send-email \
1591                --force \
1592                --from="Example <nobody@example.com>" \
1593                --to=nobody@example.com \
1594                --smtp-server="$(pwd)/fake.sendmail" \
1595                outdir/0002-*.patch \
1596                outdir/0000-*.patch \
1597                outdir/0001-*.patch \
1598                2>errors >out &&
1599        ! grep "SUBJECT HERE" errors &&
1600        test -n "$(ls msgtxt*)"
1601'
1602
1603test_cover_addresses () {
1604        header="$1"
1605        shift
1606        clean_fake_sendmail &&
1607        rm -fr outdir &&
1608        git format-patch --cover-letter -2 -o outdir &&
1609        cover=$(echo outdir/0000-*.patch) &&
1610        mv $cover cover-to-edit.patch &&
1611        perl -pe "s/^From:/$header: extra\@address.com\nFrom:/" cover-to-edit.patch >"$cover" &&
1612        git send-email \
1613                --force \
1614                --from="Example <nobody@example.com>" \
1615                --no-to --no-cc \
1616                "$@" \
1617                --smtp-server="$(pwd)/fake.sendmail" \
1618                outdir/0000-*.patch \
1619                outdir/0001-*.patch \
1620                outdir/0002-*.patch \
1621                2>errors >out &&
1622        grep "^$header: extra@address.com" msgtxt1 >to1 &&
1623        grep "^$header: extra@address.com" msgtxt2 >to2 &&
1624        grep "^$header: extra@address.com" msgtxt3 >to3 &&
1625        test_line_count = 1 to1 &&
1626        test_line_count = 1 to2 &&
1627        test_line_count = 1 to3
1628}
1629
1630test_expect_success $PREREQ 'to-cover adds To to all mail' '
1631        test_cover_addresses "To" --to-cover
1632'
1633
1634test_expect_success $PREREQ 'cc-cover adds Cc to all mail' '
1635        test_cover_addresses "Cc" --cc-cover
1636'
1637
1638test_expect_success $PREREQ 'tocover adds To to all mail' '
1639        test_config sendemail.tocover true &&
1640        test_cover_addresses "To"
1641'
1642
1643test_expect_success $PREREQ 'cccover adds Cc to all mail' '
1644        test_config sendemail.cccover true &&
1645        test_cover_addresses "Cc"
1646'
1647
1648test_expect_success $PREREQ 'escaped quotes in sendemail.aliasfiletype=mutt' '
1649        clean_fake_sendmail &&
1650        echo "alias sbd \\\"Dot U. Sir\\\" <somebody@example.org>" >.mutt &&
1651        git config --replace-all sendemail.aliasesfile "$(pwd)/.mutt" &&
1652        git config sendemail.aliasfiletype mutt &&
1653        git send-email \
1654                --from="Example <nobody@example.com>" \
1655                --to=sbd \
1656                --smtp-server="$(pwd)/fake.sendmail" \
1657                outdir/0001-*.patch \
1658                2>errors >out &&
1659        grep "^!somebody@example\.org!$" commandline1 &&
1660        grep -F "To: \"Dot U. Sir\" <somebody@example.org>" out
1661'
1662
1663test_expect_success $PREREQ 'sendemail.aliasfiletype=mailrc' '
1664        clean_fake_sendmail &&
1665        echo "alias sbd  somebody@example.org" >.mailrc &&
1666        git config --replace-all sendemail.aliasesfile "$(pwd)/.mailrc" &&
1667        git config sendemail.aliasfiletype mailrc &&
1668        git send-email \
1669                --from="Example <nobody@example.com>" \
1670                --to=sbd \
1671                --smtp-server="$(pwd)/fake.sendmail" \
1672                outdir/0001-*.patch \
1673                2>errors >out &&
1674        grep "^!somebody@example\.org!$" commandline1
1675'
1676
1677test_expect_success $PREREQ 'sendemail.aliasfile=~/.mailrc' '
1678        clean_fake_sendmail &&
1679        echo "alias sbd  someone@example.org" >"$HOME/.mailrc" &&
1680        git config --replace-all sendemail.aliasesfile "~/.mailrc" &&
1681        git config sendemail.aliasfiletype mailrc &&
1682        git send-email \
1683                --from="Example <nobody@example.com>" \
1684                --to=sbd \
1685                --smtp-server="$(pwd)/fake.sendmail" \
1686                outdir/0001-*.patch \
1687                2>errors >out &&
1688        grep "^!someone@example\.org!$" commandline1
1689'
1690
1691test_dump_aliases () {
1692        msg="$1" && shift &&
1693        filetype="$1" && shift &&
1694        printf '%s\n' "$@" >expect &&
1695        cat >.tmp-email-aliases &&
1696
1697        test_expect_success $PREREQ "$msg" '
1698                clean_fake_sendmail && rm -fr outdir &&
1699                git config --replace-all sendemail.aliasesfile \
1700                        "$(pwd)/.tmp-email-aliases" &&
1701                git config sendemail.aliasfiletype "$filetype" &&
1702                git send-email --dump-aliases 2>errors >actual &&
1703                test_cmp expect actual
1704        '
1705}
1706
1707test_dump_aliases '--dump-aliases sendmail format' \
1708        'sendmail' \
1709        'abgroup' \
1710        'alice' \
1711        'bcgrp' \
1712        'bob' \
1713        'chloe' <<-\EOF
1714        alice: Alice W Land <awol@example.com>
1715        bob: Robert Bobbyton <bob@example.com>
1716        chloe: chloe@example.com
1717        abgroup: alice, bob
1718        bcgrp: bob, chloe, Other <o@example.com>
1719        EOF
1720
1721test_dump_aliases '--dump-aliases mutt format' \
1722        'mutt' \
1723        'alice' \
1724        'bob' \
1725        'chloe' \
1726        'donald' <<-\EOF
1727        alias alice Alice W Land <awol@example.com>
1728        alias donald Donald C Carlton <donc@example.com>
1729        alias bob Robert Bobbyton <bob@example.com>
1730        alias chloe chloe@example.com
1731        EOF
1732
1733test_dump_aliases '--dump-aliases mailrc format' \
1734        'mailrc' \
1735        'alice' \
1736        'bob' \
1737        'chloe' \
1738        'eve' <<-\EOF
1739        alias alice   Alice W Land <awol@example.com>
1740        alias eve     Eve <eve@example.com>
1741        alias bob     Robert Bobbyton <bob@example.com>
1742        alias chloe   chloe@example.com
1743        EOF
1744
1745test_dump_aliases '--dump-aliases pine format' \
1746        'pine' \
1747        'alice' \
1748        'bob' \
1749        'chloe' \
1750        'eve' <<-\EOF
1751        alice   Alice W Land    <awol@example.com>
1752        eve     Eve     <eve@example.com>
1753        bob     Robert  Bobbyton <bob@example.com>
1754        chloe           chloe@example.com
1755        EOF
1756
1757test_dump_aliases '--dump-aliases gnus format' \
1758        'gnus' \
1759        'alice' \
1760        'bob' \
1761        'chloe' \
1762        'eve' <<-\EOF
1763        (define-mail-alias "alice" "awol@example.com")
1764        (define-mail-alias "eve" "eve@example.com")
1765        (define-mail-alias "bob" "bob@example.com")
1766        (define-mail-alias "chloe" "chloe@example.com")
1767        EOF
1768
1769test_expect_success '--dump-aliases must be used alone' '
1770        test_must_fail git send-email --dump-aliases --to=janice@example.com -1 refs/heads/accounting
1771'
1772
1773test_sendmail_aliases () {
1774        msg="$1" && shift &&
1775        expect="$@" &&
1776        cat >.tmp-email-aliases &&
1777
1778        test_expect_success $PREREQ "$msg" '
1779                clean_fake_sendmail && rm -fr outdir &&
1780                git format-patch -1 -o outdir &&
1781                git config --replace-all sendemail.aliasesfile \
1782                        "$(pwd)/.tmp-email-aliases" &&
1783                git config sendemail.aliasfiletype sendmail &&
1784                git send-email \
1785                        --from="Example <nobody@example.com>" \
1786                        --to=alice --to=bcgrp \
1787                        --smtp-server="$(pwd)/fake.sendmail" \
1788                        outdir/0001-*.patch \
1789                        2>errors >out &&
1790                for i in $expect
1791                do
1792                        grep "^!$i!$" commandline1 || return 1
1793                done
1794        '
1795}
1796
1797test_sendmail_aliases 'sendemail.aliasfiletype=sendmail' \
1798        'awol@example\.com' \
1799        'bob@example\.com' \
1800        'chloe@example\.com' \
1801        'o@example\.com' <<-\EOF
1802        alice: Alice W Land <awol@example.com>
1803        bob: Robert Bobbyton <bob@example.com>
1804        # this is a comment
1805           # this is also a comment
1806        chloe: chloe@example.com
1807        abgroup: alice, bob
1808        bcgrp: bob, chloe, Other <o@example.com>
1809        EOF
1810
1811test_sendmail_aliases 'sendmail aliases line folding' \
1812        alice1 \
1813        bob1 bob2 \
1814        chuck1 chuck2 \
1815        darla1 darla2 darla3 \
1816        elton1 elton2 elton3 \
1817        fred1 fred2 \
1818        greg1 <<-\EOF
1819        alice: alice1
1820        bob: bob1,\
1821        bob2
1822        chuck: chuck1,
1823            chuck2
1824        darla: darla1,\
1825        darla2,
1826            darla3
1827        elton: elton1,
1828            elton2,\
1829        elton3
1830        fred: fred1,\
1831            fred2
1832        greg: greg1
1833        bcgrp: bob, chuck, darla, elton, fred, greg
1834        EOF
1835
1836test_sendmail_aliases 'sendmail aliases tolerate bogus line folding' \
1837        alice1 bob1 <<-\EOF
1838            alice: alice1
1839        bcgrp: bob1\
1840        EOF
1841
1842test_sendmail_aliases 'sendmail aliases empty' alice bcgrp <<-\EOF
1843        EOF
1844
1845test_expect_success $PREREQ 'alias support in To header' '
1846        clean_fake_sendmail &&
1847        echo "alias sbd  someone@example.org" >.mailrc &&
1848        test_config sendemail.aliasesfile ".mailrc" &&
1849        test_config sendemail.aliasfiletype mailrc &&
1850        git format-patch --stdout -1 --to=sbd >aliased.patch &&
1851        git send-email \
1852                --from="Example <nobody@example.com>" \
1853                --smtp-server="$(pwd)/fake.sendmail" \
1854                aliased.patch \
1855                2>errors >out &&
1856        grep "^!someone@example\.org!$" commandline1
1857'
1858
1859test_expect_success $PREREQ 'alias support in Cc header' '
1860        clean_fake_sendmail &&
1861        echo "alias sbd  someone@example.org" >.mailrc &&
1862        test_config sendemail.aliasesfile ".mailrc" &&
1863        test_config sendemail.aliasfiletype mailrc &&
1864        git format-patch --stdout -1 --cc=sbd >aliased.patch &&
1865        git send-email \
1866                --from="Example <nobody@example.com>" \
1867                --smtp-server="$(pwd)/fake.sendmail" \
1868                aliased.patch \
1869                2>errors >out &&
1870        grep "^!someone@example\.org!$" commandline1
1871'
1872
1873test_expect_success $PREREQ 'tocmd works with aliases' '
1874        clean_fake_sendmail &&
1875        echo "alias sbd  someone@example.org" >.mailrc &&
1876        test_config sendemail.aliasesfile ".mailrc" &&
1877        test_config sendemail.aliasfiletype mailrc &&
1878        git format-patch --stdout -1 >tocmd.patch &&
1879        echo tocmd--sbd >>tocmd.patch &&
1880        git send-email \
1881                --from="Example <nobody@example.com>" \
1882                --to-cmd=./tocmd-sed \
1883                --smtp-server="$(pwd)/fake.sendmail" \
1884                tocmd.patch \
1885                2>errors >out &&
1886        grep "^!someone@example\.org!$" commandline1
1887'
1888
1889test_expect_success $PREREQ 'cccmd works with aliases' '
1890        clean_fake_sendmail &&
1891        echo "alias sbd  someone@example.org" >.mailrc &&
1892        test_config sendemail.aliasesfile ".mailrc" &&
1893        test_config sendemail.aliasfiletype mailrc &&
1894        git format-patch --stdout -1 >cccmd.patch &&
1895        echo cccmd--sbd >>cccmd.patch &&
1896        git send-email \
1897                --from="Example <nobody@example.com>" \
1898                --cc-cmd=./cccmd-sed \
1899                --smtp-server="$(pwd)/fake.sendmail" \
1900                cccmd.patch \
1901                2>errors >out &&
1902        grep "^!someone@example\.org!$" commandline1
1903'
1904
1905do_xmailer_test () {
1906        expected=$1 params=$2 &&
1907        git format-patch -1 &&
1908        git send-email \
1909                --from="Example <nobody@example.com>" \
1910                --to=someone@example.com \
1911                --smtp-server="$(pwd)/fake.sendmail" \
1912                $params \
1913                0001-*.patch \
1914                2>errors >out &&
1915        { grep '^X-Mailer:' out || :; } >mailer &&
1916        test_line_count = $expected mailer
1917}
1918
1919test_expect_success $PREREQ '--[no-]xmailer without any configuration' '
1920        do_xmailer_test 1 "--xmailer" &&
1921        do_xmailer_test 0 "--no-xmailer"
1922'
1923
1924test_expect_success $PREREQ '--[no-]xmailer with sendemail.xmailer=true' '
1925        test_config sendemail.xmailer true &&
1926        do_xmailer_test 1 "" &&
1927        do_xmailer_test 0 "--no-xmailer" &&
1928        do_xmailer_test 1 "--xmailer"
1929'
1930
1931test_expect_success $PREREQ '--[no-]xmailer with sendemail.xmailer=false' '
1932        test_config sendemail.xmailer false &&
1933        do_xmailer_test 0 "" &&
1934        do_xmailer_test 0 "--no-xmailer" &&
1935        do_xmailer_test 1 "--xmailer"
1936'
1937
1938test_expect_success $PREREQ 'setup expected-list' '
1939        git send-email \
1940        --dry-run \
1941        --from="Example <from@example.com>" \
1942        --to="To 1 <to1@example.com>" \
1943        --to="to2@example.com" \
1944        --to="to3@example.com" \
1945        --cc="Cc 1 <cc1@example.com>" \
1946        --cc="Cc2 <cc2@example.com>" \
1947        --bcc="bcc1@example.com" \
1948        --bcc="bcc2@example.com" \
1949        0001-add-master.patch | replace_variable_fields \
1950        >expected-list
1951'
1952
1953test_expect_success $PREREQ 'use email list in --cc --to and --bcc' '
1954        git send-email \
1955        --dry-run \
1956        --from="Example <from@example.com>" \
1957        --to="To 1 <to1@example.com>, to2@example.com" \
1958        --to="to3@example.com" \
1959        --cc="Cc 1 <cc1@example.com>, Cc2 <cc2@example.com>" \
1960        --bcc="bcc1@example.com, bcc2@example.com" \
1961        0001-add-master.patch | replace_variable_fields \
1962        >actual-list &&
1963        test_cmp expected-list actual-list
1964'
1965
1966test_expect_success $PREREQ 'aliases work with email list' '
1967        echo "alias to2 to2@example.com" >.mutt &&
1968        echo "alias cc1 Cc 1 <cc1@example.com>" >>.mutt &&
1969        test_config sendemail.aliasesfile ".mutt" &&
1970        test_config sendemail.aliasfiletype mutt &&
1971        git send-email \
1972        --dry-run \
1973        --from="Example <from@example.com>" \
1974        --to="To 1 <to1@example.com>, to2, to3@example.com" \
1975        --cc="cc1, Cc2 <cc2@example.com>" \
1976        --bcc="bcc1@example.com, bcc2@example.com" \
1977        0001-add-master.patch | replace_variable_fields \
1978        >actual-list &&
1979        test_cmp expected-list actual-list
1980'
1981
1982test_expect_success $PREREQ 'leading and trailing whitespaces are removed' '
1983        echo "alias to2 to2@example.com" >.mutt &&
1984        echo "alias cc1 Cc 1 <cc1@example.com>" >>.mutt &&
1985        test_config sendemail.aliasesfile ".mutt" &&
1986        test_config sendemail.aliasfiletype mutt &&
1987        TO1=$(echo "QTo 1 <to1@example.com>" | q_to_tab) &&
1988        TO2=$(echo "QZto2" | qz_to_tab_space) &&
1989        CC1=$(echo "cc1" | append_cr) &&
1990        BCC1=$(echo "Q bcc1@example.com Q" | q_to_nul) &&
1991        git send-email \
1992        --dry-run \
1993        --from="        Example <from@example.com>" \
1994        --to="$TO1" \
1995        --to="$TO2" \
1996        --to="  to3@example.com   " \
1997        --cc="$CC1" \
1998        --cc="Cc2 <cc2@example.com>" \
1999        --bcc="$BCC1" \
2000        --bcc="bcc2@example.com" \
2001        0001-add-master.patch | replace_variable_fields \
2002        >actual-list &&
2003        test_cmp expected-list actual-list
2004'
2005
2006test_expect_success $PREREQ 'invoke hook' '
2007        mkdir -p .git/hooks &&
2008
2009        write_script .git/hooks/sendemail-validate <<-\EOF &&
2010        # test that we have the correct environment variable, pwd, and
2011        # argument
2012        case "$GIT_DIR" in
2013        *.git)
2014                true
2015                ;;
2016        *)
2017                false
2018                ;;
2019        esac &&
2020        test -f 0001-add-master.patch &&
2021        grep "add master" "$1"
2022        EOF
2023
2024        mkdir subdir &&
2025        (
2026                # Test that it works even if we are not at the root of the
2027                # working tree
2028                cd subdir &&
2029                git send-email \
2030                        --from="Example <nobody@example.com>" \
2031                        --to=nobody@example.com \
2032                        --smtp-server="$(pwd)/../fake.sendmail" \
2033                        ../0001-add-master.patch &&
2034
2035                # Verify error message when a patch is rejected by the hook
2036                sed -e "s/add master/x/" ../0001-add-master.patch >../another.patch &&
2037                git send-email \
2038                        --from="Example <nobody@example.com>" \
2039                        --to=nobody@example.com \
2040                        --smtp-server="$(pwd)/../fake.sendmail" \
2041                        ../another.patch 2>err
2042                test_i18ngrep "rejected by sendemail-validate hook" err
2043        )
2044'
2045
2046test_expect_success $PREREQ 'test that send-email works outside a repo' '
2047        nongit git send-email \
2048                --from="Example <nobody@example.com>" \
2049                --to=nobody@example.com \
2050                --smtp-server="$(pwd)/fake.sendmail" \
2051                "$(pwd)/0001-add-master.patch"
2052'
2053
2054test_done