3 test_description
='git rev-list --pretty=format test'
8 test_expect_success
'setup' '
9 touch foo && git add foo && git-commit -m "added foo" &&
10 echo changed >foo && git-commit -a -m "changed foo"
13 # usage: test_format name format_string <expected_output
16 test_expect_success
"format $1" "
17 git rev-list --pretty=format:$2 master >output.$1 &&
18 git diff expect.$1 output.$1
22 test_format
hash %H
%n
%h
<<'EOF'
23 commit 131a310eb913d107dd3c09a65d1651175898735d
24 131a310eb913d107dd3c09a65d1651175898735d
26 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
27 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
31 test_format tree
%T
%n
%t
<<'EOF'
32 commit 131a310eb913d107dd3c09a65d1651175898735d
33 fe722612f26da5064c32ca3843aa154bdb0b08a0
35 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
36 4d5fcadc293a348e88f777dc0920f11e7d71441c
40 test_format parents
%P
%n
%p
<<'EOF'
41 commit 131a310eb913d107dd3c09a65d1651175898735d
42 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
44 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
49 # we don't test relative here
50 test_format author
%an
%n
%ae
%n
%ad
%n
%aD
%n
%at <<'EOF'
51 commit 131a310eb913d107dd3c09a65d1651175898735d
54 Thu Apr 7 15:13:13 2005 -0700
55 Thu, 7 Apr 2005 15:13:13 -0700
57 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
60 Thu Apr 7 15:13:13 2005 -0700
61 Thu, 7 Apr 2005 15:13:13 -0700
65 test_format committer
%cn
%n
%ce
%n
%cd%n
%cD
%n
%ct
<<'EOF'
66 commit 131a310eb913d107dd3c09a65d1651175898735d
69 Thu Apr 7 15:13:13 2005 -0700
70 Thu, 7 Apr 2005 15:13:13 -0700
72 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
75 Thu Apr 7 15:13:13 2005 -0700
76 Thu, 7 Apr 2005 15:13:13 -0700
80 test_format encoding
%e
<<'EOF'
81 commit 131a310eb913d107dd3c09a65d1651175898735d
82 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
85 test_format subject
%s
<<'EOF'
86 commit 131a310eb913d107dd3c09a65d1651175898735d
88 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
92 test_format body
%b
<<'EOF'
93 commit 131a310eb913d107dd3c09a65d1651175898735d
94 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
97 test_format colors
%Credfoo
%Cgreenbar
%Cbluebaz
%Cresetxyzzy
<<'EOF'
98 commit 131a310eb913d107dd3c09a65d1651175898735d
99 \e[31mfoo\e[32mbar\e[34mbaz\e[mxyzzy
100 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
101 \e[31mfoo\e[32mbar\e[34mbaz\e[mxyzzy
104 cat >commit-msg
<<'EOF'
105 Test printing of complex bodies
107 This commit message is much longer than the others,
108 and it will be encoded in iso8859-1. We should therefore
109 include an iso8859 character: ¡bueno!
111 test_expect_success
'setup complex body' '
112 git config i18n.commitencoding iso8859-1 &&
113 echo change2 >foo && git-commit -a -F commit-msg
116 test_format complex-encoding
%e
<<'EOF'
117 commit f58db70b055c5718631e5c61528b28b12090cdea
119 commit 131a310eb913d107dd3c09a65d1651175898735d
120 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
123 test_format complex-subject
%s
<<'EOF'
124 commit f58db70b055c5718631e5c61528b28b12090cdea
125 Test printing of complex bodies
126 commit 131a310eb913d107dd3c09a65d1651175898735d
128 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
132 test_format complex-body
%b
<<'EOF'
133 commit f58db70b055c5718631e5c61528b28b12090cdea
134 This commit message is much longer than the others,
135 and it will be encoded in iso8859-1. We should therefore
136 include an iso8859 character: ¡bueno!
138 commit 131a310eb913d107dd3c09a65d1651175898735d
139 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
142 test_expect_success
'empty email' '
144 C=$(GIT_AUTHOR_EMAIL= git commit-tree HEAD^{tree} </dev/null) &&
145 A=$(git show --pretty=format:%an,%ae,%ad%n -s $C) &&
146 test "$A" = "A U Thor,,Thu Apr 7 15:14:13 2005 -0700" || {
147 echo "Eh? $A" >failure