]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5100-mailinfo.sh
t/t3700-add.sh: use the $( ... ) construct for command substitution
[thirdparty/git.git] / t / t5100-mailinfo.sh
CommitLineData
4839c0b5
JH
1#!/bin/sh
2#
3# Copyright (c) 2005 Junio C Hamano
4#
5
5be60078 6test_description='git mailinfo and git mailsplit test'
4839c0b5
JH
7
8. ./test-lib.sh
9
10test_expect_success 'split sample box' \
bfdbee98 11 'git mailsplit -o. "$TEST_DIRECTORY"/t5100/sample.mbox >last &&
4839c0b5
JH
12 last=`cat last` &&
13 echo total is $last &&
176943b9 14 test `cat last` = 17'
4839c0b5 15
017678b4
JH
16check_mailinfo () {
17 mail=$1 opt=$2
18 mo="$mail$opt"
19 git mailinfo -u $opt msg$mo patch$mo <$mail >info$mo &&
20 test_cmp "$TEST_DIRECTORY"/t5100/msg$mo msg$mo &&
21 test_cmp "$TEST_DIRECTORY"/t5100/patch$mo patch$mo &&
22 test_cmp "$TEST_DIRECTORY"/t5100/info$mo info$mo
23}
24
25
4839c0b5
JH
26for mail in `echo 00*`
27do
bfdbee98 28 test_expect_success "mailinfo $mail" '
017678b4
JH
29 check_mailinfo $mail "" &&
30 if test -f "$TEST_DIRECTORY"/t5100/msg$mail--scissors
31 then
32 check_mailinfo $mail --scissors
d25e5159
LS
33 fi &&
34 if test -f "$TEST_DIRECTORY"/t5100/msg$mail--no-inbody-headers
35 then
36 check_mailinfo $mail --no-inbody-headers
8fb26872 37 fi &&
452dfbed
PB
38 if test -f "$TEST_DIRECTORY"/t5100/msg$mail--message-id
39 then
40 check_mailinfo $mail --message-id
41 fi
bfdbee98 42 '
4839c0b5
JH
43done
44
c32815f9
KS
45
46test_expect_success 'split box with rfc2047 samples' \
47 'mkdir rfc2047 &&
48 git mailsplit -orfc2047 "$TEST_DIRECTORY"/t5100/rfc2047-samples.mbox \
49 >rfc2047/last &&
50 last=`cat rfc2047/last` &&
51 echo total is $last &&
52 test `cat rfc2047/last` = 11'
53
54for mail in `echo rfc2047/00*`
55do
56 test_expect_success "mailinfo $mail" '
57 git mailinfo -u $mail-msg $mail-patch <$mail >$mail-info &&
58 echo msg &&
59 test_cmp "$TEST_DIRECTORY"/t5100/empty $mail-msg &&
60 echo patch &&
61 test_cmp "$TEST_DIRECTORY"/t5100/empty $mail-patch &&
62 echo info &&
63 test_cmp "$TEST_DIRECTORY"/t5100/rfc2047-info-$(basename $mail) $mail-info
64 '
65done
66
cce8d6fd
JS
67test_expect_success 'respect NULs' '
68
bfdbee98
JH
69 git mailsplit -d3 -o. "$TEST_DIRECTORY"/t5100/nul-plain &&
70 test_cmp "$TEST_DIRECTORY"/t5100/nul-plain 001 &&
cce8d6fd 71 (cat 001 | git mailinfo msg patch) &&
3fb0459b 72 test_line_count = 4 patch
cce8d6fd
JS
73
74'
75
9aa23094
JH
76test_expect_success 'Preserve NULs out of MIME encoded message' '
77
bfdbee98
JH
78 git mailsplit -d5 -o. "$TEST_DIRECTORY"/t5100/nul-b64.in &&
79 test_cmp "$TEST_DIRECTORY"/t5100/nul-b64.in 00001 &&
9aa23094 80 git mailinfo msg patch <00001 &&
bfdbee98 81 test_cmp "$TEST_DIRECTORY"/t5100/nul-b64.expect patch
9aa23094
JH
82
83'
84
e9d7d10a
JK
85test_expect_success 'mailinfo on from header without name works' '
86
87 mkdir info-from &&
88 git mailsplit -oinfo-from "$TEST_DIRECTORY"/t5100/info-from.in &&
89 test_cmp "$TEST_DIRECTORY"/t5100/info-from.in info-from/0001 &&
90 git mailinfo info-from/msg info-from/patch \
91 <info-from/0001 >info-from/out &&
92 test_cmp "$TEST_DIRECTORY"/t5100/info-from.expect info-from/out
93
94'
95
2da1f366
JK
96test_expect_success 'mailinfo finds headers after embedded From line' '
97 mkdir embed-from &&
98 git mailsplit -oembed-from "$TEST_DIRECTORY"/t5100/embed-from.in &&
99 test_cmp "$TEST_DIRECTORY"/t5100/embed-from.in embed-from/0001 &&
100 git mailinfo embed-from/msg embed-from/patch \
101 <embed-from/0001 >embed-from/out &&
102 test_cmp "$TEST_DIRECTORY"/t5100/embed-from.expect embed-from/out
103'
104
105test_expect_success 'mailinfo on message with quoted >From' '
106 mkdir quoted-from &&
107 git mailsplit -oquoted-from "$TEST_DIRECTORY"/t5100/quoted-from.in &&
108 test_cmp "$TEST_DIRECTORY"/t5100/quoted-from.in quoted-from/0001 &&
109 git mailinfo quoted-from/msg quoted-from/patch \
110 <quoted-from/0001 >quoted-from/out &&
111 test_cmp "$TEST_DIRECTORY"/t5100/quoted-from.expect quoted-from/msg
112'
113
4839c0b5 114test_done