Merge git://repo.or.cz/git-gui
[git] / t / t9001-send-email.sh
1 #!/bin/sh
2
3 test_description='git-send-email'
4 . ./test-lib.sh
5
6 PROG='git send-email'
7 test_expect_success \
8     'prepare reference tree' \
9     'echo "1A quick brown fox jumps over the" >file &&
10      echo "lazy dog" >>file &&
11      git add file
12      GIT_AUTHOR_NAME="A" git commit -a -m "Initial."'
13
14 test_expect_success \
15     'Setup helper tool' \
16     '(echo "#!/bin/sh"
17       echo shift
18       echo for a
19       echo do
20       echo "  echo \"!\$a!\""
21       echo "done >commandline"
22       echo "cat > msgtxt"
23       ) >fake.sendmail
24      chmod +x ./fake.sendmail
25      git add fake.sendmail
26      GIT_AUTHOR_NAME="A" git commit -a -m "Second."'
27
28 test_expect_success 'Extract patches' '
29     patches=`git format-patch -n HEAD^1`
30 '
31
32 test_expect_success 'Send patches' '
33      git send-email --from="Example <nobody@example.com>" --to=nobody@example.com --smtp-server="$(pwd)/fake.sendmail" $patches 2>errors
34 '
35
36 cat >expected <<\EOF
37 !nobody@example.com!
38 !author@example.com!
39 EOF
40 test_expect_success \
41     'Verify commandline' \
42     'diff commandline expected'
43
44 cat >expected-show-all-headers <<\EOF
45 0001-Second.patch
46 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
47 Dry-OK. Log says:
48 Server: relay.example.com
49 MAIL FROM:<from@example.com>
50 RCPT TO:<to@example.com>,<cc@example.com>,<author@example.com>,<bcc@example.com>
51 From: Example <from@example.com>
52 To: to@example.com
53 Cc: cc@example.com, A <author@example.com>
54 Subject: [PATCH 1/1] Second.
55 Date: DATE-STRING
56 Message-Id: MESSAGE-ID-STRING
57 X-Mailer: X-MAILER-STRING
58 In-Reply-To: <unique-message-id@example.com>
59 References: <unique-message-id@example.com>
60
61 Result: OK
62 EOF
63
64 test_expect_success 'Show all headers' '
65         git send-email \
66                 --dry-run \
67                 --from="Example <from@example.com>" \
68                 --to=to@example.com \
69                 --cc=cc@example.com \
70                 --bcc=bcc@example.com \
71                 --in-reply-to="<unique-message-id@example.com>" \
72                 --smtp-server relay.example.com \
73                 $patches |
74         sed     -e "s/^\(Date:\).*/\1 DATE-STRING/" \
75                 -e "s/^\(Message-Id:\).*/\1 MESSAGE-ID-STRING/" \
76                 -e "s/^\(X-Mailer:\).*/\1 X-MAILER-STRING/" \
77                 >actual-show-all-headers &&
78         diff -u expected-show-all-headers actual-show-all-headers
79 '
80
81 test_done