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 test_cmp expect.$1 output.$1
22 test_format percent
%%h
<<'EOF'
23 commit 131a310eb913d107dd3c09a65d1651175898735d
25 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
29 test_format
hash %H
%n
%h
<<'EOF'
30 commit 131a310eb913d107dd3c09a65d1651175898735d
31 131a310eb913d107dd3c09a65d1651175898735d
33 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
34 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
38 test_format tree
%T
%n
%t
<<'EOF'
39 commit 131a310eb913d107dd3c09a65d1651175898735d
40 fe722612f26da5064c32ca3843aa154bdb0b08a0
42 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
43 4d5fcadc293a348e88f777dc0920f11e7d71441c
47 test_format parents
%P
%n
%p
<<'EOF'
48 commit 131a310eb913d107dd3c09a65d1651175898735d
49 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
51 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
56 # we don't test relative here
57 test_format author
%an
%n
%ae
%n
%ad
%n
%aD
%n
%at <<'EOF'
58 commit 131a310eb913d107dd3c09a65d1651175898735d
61 Thu Apr 7 15:13:13 2005 -0700
62 Thu, 7 Apr 2005 15:13:13 -0700
64 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
67 Thu Apr 7 15:13:13 2005 -0700
68 Thu, 7 Apr 2005 15:13:13 -0700
72 test_format committer
%cn
%n
%ce
%n
%cd%n
%cD
%n
%ct
<<'EOF'
73 commit 131a310eb913d107dd3c09a65d1651175898735d
76 Thu Apr 7 15:13:13 2005 -0700
77 Thu, 7 Apr 2005 15:13:13 -0700
79 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
82 Thu Apr 7 15:13:13 2005 -0700
83 Thu, 7 Apr 2005 15:13:13 -0700
87 test_format encoding
%e
<<'EOF'
88 commit 131a310eb913d107dd3c09a65d1651175898735d
89 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
92 test_format subject
%s
<<'EOF'
93 commit 131a310eb913d107dd3c09a65d1651175898735d
95 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
99 test_format body
%b
<<'EOF'
100 commit 131a310eb913d107dd3c09a65d1651175898735d
101 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
104 test_format raw-body
%B
<<'EOF'
105 commit 131a310eb913d107dd3c09a65d1651175898735d
108 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
113 test_format colors
%Credfoo
%Cgreenbar
%Cbluebaz
%Cresetxyzzy
<<'EOF'
114 commit 131a310eb913d107dd3c09a65d1651175898735d
115 \e[31mfoo\e[32mbar\e[34mbaz\e[mxyzzy
116 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
117 \e[31mfoo\e[32mbar\e[34mbaz\e[mxyzzy
120 test_format advanced-colors
'%C(red yellow bold)foo%C(reset)' <<'EOF'
121 commit 131a310eb913d107dd3c09a65d1651175898735d
123 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
127 cat >commit-msg
<<'EOF'
128 Test printing of complex bodies
130 This commit message is much longer than the others,
131 and it will be encoded in iso8859-1. We should therefore
132 include an iso8859 character: ¡bueno!
134 test_expect_success
'setup complex body' '
135 git config i18n.commitencoding iso8859-1 &&
136 echo change2 >foo && git commit -a -F commit-msg
139 test_format complex-encoding
%e
<<'EOF'
140 commit f58db70b055c5718631e5c61528b28b12090cdea
142 commit 131a310eb913d107dd3c09a65d1651175898735d
143 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
146 test_format complex-subject
%s
<<'EOF'
147 commit f58db70b055c5718631e5c61528b28b12090cdea
148 Test printing of complex bodies
149 commit 131a310eb913d107dd3c09a65d1651175898735d
151 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
155 test_format complex-body
%b
<<'EOF'
156 commit f58db70b055c5718631e5c61528b28b12090cdea
157 This commit message is much longer than the others,
158 and it will be encoded in iso8859-1. We should therefore
159 include an iso8859 character: ¡bueno!
161 commit 131a310eb913d107dd3c09a65d1651175898735d
162 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
165 test_expect_success
'%x00 shows NUL' '
166 echo >expect commit f58db70b055c5718631e5c61528b28b12090cdea &&
167 echo >>expect fooQbar &&
168 git rev-list -1 --format=foo%x00bar HEAD >actual.nul &&
169 nul_to_q <actual.nul >actual &&
170 test_cmp expect actual
173 test_expect_success
'%ad respects --date=' '
174 echo 2005-04-07 >expect.ad-short &&
175 git log -1 --date=short --pretty=tformat:%ad >output.ad-short master &&
176 test_cmp expect.ad-short output.ad-short
179 test_expect_success
'empty email' '
181 C=$(GIT_AUTHOR_EMAIL= git commit-tree HEAD^{tree} </dev/null) &&
182 A=$(git show --pretty=format:%an,%ae,%ad%n -s $C) &&
183 test "$A" = "A U Thor,,Thu Apr 7 15:14:13 2005 -0700" || {
184 echo "Eh? $A" >failure
189 test_expect_success
'del LF before empty (1)' '
190 git show -s --pretty=format:"%s%n%-b%nThanks%n" HEAD^^ >actual &&
191 test $(wc -l <actual) = 2
194 test_expect_success
'del LF before empty (2)' '
195 git show -s --pretty=format:"%s%n%-b%nThanks%n" HEAD >actual &&
196 test $(wc -l <actual) = 6 &&
200 test_expect_success
'add LF before non-empty (1)' '
201 git show -s --pretty=format:"%s%+b%nThanks%n" HEAD^^ >actual &&
202 test $(wc -l <actual) = 2
205 test_expect_success
'add LF before non-empty (2)' '
206 git show -s --pretty=format:"%s%+b%nThanks%n" HEAD >actual &&
207 test $(wc -l <actual) = 6 &&
211 test_expect_success
'add SP before non-empty (1)' '
212 git show -s --pretty=format:"%s% bThanks" HEAD^^ >actual &&
213 test $(wc -w <actual) = 2
216 test_expect_success
'add SP before non-empty (2)' '
217 git show -s --pretty=format:"%s% sThanks" HEAD^^ >actual &&
218 test $(wc -w <actual) = 4
221 test_expect_success
'--abbrev' '
222 echo SHORT SHORT SHORT >expect2 &&
223 echo LONG LONG LONG >expect3 &&
224 git log -1 --format="%h %h %h" HEAD >actual1 &&
225 git log -1 --abbrev=5 --format="%h %h %h" HEAD >actual2 &&
226 git log -1 --abbrev=5 --format="%H %H %H" HEAD >actual3 &&
227 sed -e "s/$_x40/LONG/g" -e "s/$_x05/SHORT/g" <actual2 >fuzzy2 &&
228 sed -e "s/$_x40/LONG/g" -e "s/$_x05/SHORT/g" <actual3 >fuzzy3 &&
229 test_cmp expect2 fuzzy2 &&
230 test_cmp expect3 fuzzy3 &&
231 ! test_cmp actual1 actual2
234 test_expect_success
'%H is not affected by --abbrev-commit' '
235 git log -1 --format=%H --abbrev-commit --abbrev=20 HEAD >actual &&
236 len=$(wc -c <actual) &&
240 test_expect_success
'%h is not affected by --abbrev-commit' '
241 git log -1 --format=%h --abbrev-commit --abbrev=20 HEAD >actual &&
242 len=$(wc -c <actual) &&
246 test_expect_success
'"%h %gD: %gs" is same as git-reflog' '
247 git reflog >expect &&
248 git log -g --format="%h %gD: %gs" >actual &&
249 test_cmp expect actual
252 test_expect_success
'"%h %gD: %gs" is same as git-reflog (with date)' '
253 git reflog --date=raw >expect &&
254 git log -g --format="%h %gD: %gs" --date=raw >actual &&
255 test_cmp expect actual
258 test_expect_success
'"%h %gD: %gs" is same as git-reflog (with --abbrev)' '
259 git reflog --abbrev=13 --date=raw >expect &&
260 git log -g --abbrev=13 --format="%h %gD: %gs" --date=raw >actual &&
261 test_cmp expect actual
264 test_expect_success
'%gd shortens ref name' '
265 echo "master@{0}" >expect.gd-short &&
266 git log -g -1 --format=%gd refs/heads/master >actual.gd-short &&
267 test_cmp expect.gd-short actual.gd-short
270 test_expect_success
'reflog identity' '
271 echo "C O Mitter:committer@example.com" >expect &&
272 git log -g -1 --format="%gn:%ge" >actual &&
273 test_cmp expect actual
276 test_expect_success
'oneline with empty message' '
277 git commit -m "dummy" --allow-empty &&
278 git commit -m "dummy" --allow-empty &&
279 git filter-branch --msg-filter "sed -e s/dummy//" HEAD^^.. &&
280 git rev-list --oneline HEAD >test.txt &&
281 test $(git rev-list --oneline HEAD | wc -l) -eq 5 &&
282 test $(git rev-list --oneline --graph HEAD | wc -l) -eq 5