]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4205-log-pretty-formats.sh
pretty: add pointer and tag options to %(decorate)
[thirdparty/git.git] / t / t4205-log-pretty-formats.sh
CommitLineData
8028184e
WP
1#!/bin/sh
2#
3# Copyright (c) 2010, Will Palmer
de6029a2 4# Copyright (c) 2011, Alexey Shumkin (+ non-UTF-8 commit encoding tests)
8028184e
WP
5#
6
7test_description='Test pretty formats'
8. ./test-lib.sh
9
ee3efaf6
AS
10# Tested non-UTF-8 encoding
11test_encoding="ISO8859-1"
12
37eb772e
AS
13sample_utf8_part=$(printf "f\303\244ng")
14
de6029a2 15commit_msg () {
17cc2ef1
AS
16 # String "initial. initial" partly in German
17 # (translated with Google Translate),
de6029a2 18 # encoded in UTF-8, used as a commit log message below.
37eb772e 19 msg="initial. an${sample_utf8_part}lich\n"
de6029a2
AS
20 if test -n "$1"
21 then
37eb772e
AS
22 printf "$msg" | iconv -f utf-8 -t "$1"
23 else
24 printf "$msg"
de6029a2 25 fi
de6029a2
AS
26}
27
8028184e
WP
28test_expect_success 'set up basic repos' '
29 >foo &&
30 >bar &&
31 git add foo &&
32 test_tick &&
ee3efaf6 33 git config i18n.commitEncoding $test_encoding &&
e6ce2be2 34 commit_msg $test_encoding | git commit -F - &&
8028184e
WP
35 git add bar &&
36 test_tick &&
de6029a2
AS
37 git commit -m "add bar" &&
38 git config --unset i18n.commitEncoding
8028184e
WP
39'
40
41test_expect_success 'alias builtin format' '
42 git log --pretty=oneline >expected &&
43 git config pretty.test-alias oneline &&
44 git log --pretty=test-alias >actual &&
45 test_cmp expected actual
46'
47
48test_expect_success 'alias masking builtin format' '
49 git log --pretty=oneline >expected &&
50 git config pretty.oneline "%H" &&
51 git log --pretty=oneline >actual &&
52 test_cmp expected actual
53'
54
55test_expect_success 'alias user-defined format' '
56 git log --pretty="format:%h" >expected &&
57 git config pretty.test-alias "format:%h" &&
58 git log --pretty=test-alias >actual &&
59 test_cmp expected actual
60'
61
ee3efaf6
AS
62test_expect_success 'alias user-defined tformat with %s (ISO8859-1 encoding)' '
63 git config i18n.logOutputEncoding $test_encoding &&
de6029a2
AS
64 git log --oneline >expected-s &&
65 git log --pretty="tformat:%h %s" >actual-s &&
66 git config --unset i18n.logOutputEncoding &&
67 test_cmp expected-s actual-s
68'
69
ecaee805 70test_expect_success 'alias user-defined tformat with %s (utf-8 encoding)' '
de6029a2
AS
71 git log --oneline >expected-s &&
72 git log --pretty="tformat:%h %s" >actual-s &&
73 test_cmp expected-s actual-s
74'
75
8028184e
WP
76test_expect_success 'alias user-defined tformat' '
77 git log --pretty="tformat:%h" >expected &&
78 git config pretty.test-alias "tformat:%h" &&
79 git log --pretty=test-alias >actual &&
80 test_cmp expected actual
81'
82
7be8b3ba 83test_expect_success 'alias non-existent format' '
8028184e
WP
84 git config pretty.test-alias format-that-will-never-exist &&
85 test_must_fail git log --pretty=test-alias
86'
87
88test_expect_success 'alias of an alias' '
89 git log --pretty="tformat:%h" >expected &&
90 git config pretty.test-foo "tformat:%h" &&
91 git config pretty.test-bar test-foo &&
92 git log --pretty=test-bar >actual && test_cmp expected actual
93'
94
95test_expect_success 'alias masking an alias' '
96 git log --pretty=format:"Two %H" >expected &&
97 git config pretty.duplicate "format:One %H" &&
98 git config --add pretty.duplicate "format:Two %H" &&
99 git log --pretty=duplicate >actual &&
100 test_cmp expected actual
101'
102
103test_expect_success 'alias loop' '
104 git config pretty.test-foo test-bar &&
105 git config pretty.test-bar test-foo &&
106 test_must_fail git log --pretty=test-foo
107'
108
ecaee805 109test_expect_success 'NUL separation' '
de6029a2 110 printf "add bar\0$(commit_msg)" >expected &&
3e065308
JK
111 git log -z --pretty="format:%s" >actual &&
112 test_cmp expected actual
113'
114
ecaee805 115test_expect_success 'NUL termination' '
de6029a2 116 printf "add bar\0$(commit_msg)\0" >expected &&
3e065308
JK
117 git log -z --pretty="tformat:%s" >actual &&
118 test_cmp expected actual
119'
120
ecaee805 121test_expect_success 'NUL separation with --stat' '
fafd3829 122 stat0_part=$(git diff --stat HEAD^ HEAD) &&
74faaa16 123 stat1_part=$(git diff-tree --no-commit-id --stat --root HEAD^) &&
de6029a2 124 printf "add bar\n$stat0_part\n\0$(commit_msg)\n$stat1_part\n" >expected &&
fafd3829 125 git log -z --stat --pretty="format:%s" >actual &&
1108cea7 126 test_cmp expected actual
fafd3829
JH
127'
128
a926c4b9 129test_expect_failure 'NUL termination with --stat' '
fafd3829 130 stat0_part=$(git diff --stat HEAD^ HEAD) &&
74faaa16 131 stat1_part=$(git diff-tree --no-commit-id --stat --root HEAD^) &&
de6029a2 132 printf "add bar\n$stat0_part\n\0$(commit_msg)\n$stat1_part\n0" >expected &&
fafd3829 133 git log -z --stat --pretty="tformat:%s" >actual &&
0d75bfe6 134 test_cmp expected actual
fafd3829
JH
135'
136
ac52d941
DL
137for p in short medium full fuller email raw
138do
139 test_expect_success "NUL termination with --reflog --pretty=$p" '
140 revs="$(git rev-list --reflog)" &&
141 for r in $revs
142 do
143 git show -s "$r" --pretty="$p" &&
144 printf "\0" || return 1
145 done >expect &&
146 {
147 git log -z --reflog --pretty="$p" &&
148 printf "\0"
149 } >actual &&
150 test_cmp expect actual
151 '
152done
153
154test_expect_success 'NUL termination with --reflog --pretty=oneline' '
155 revs="$(git rev-list --reflog)" &&
156 for r in $revs
157 do
158 git show -s --pretty=oneline "$r" >raw &&
77e04b2e 159 cat raw | lf_to_nul || return 1
ac52d941
DL
160 done >expect &&
161 # the trailing NUL is already produced so we do not need to
162 # output another one
163 git log -z --pretty=oneline --reflog >actual &&
164 test_cmp expect actual
165'
166
a5752342
NTND
167test_expect_success 'setup more commits' '
168 test_commit "message one" one one message-one &&
a742f2a0
AS
169 test_commit "message two" two two message-two &&
170 head1=$(git rev-parse --verify --short HEAD~0) &&
171 head2=$(git rev-parse --verify --short HEAD~1) &&
172 head3=$(git rev-parse --verify --short HEAD~2) &&
173 head4=$(git rev-parse --verify --short HEAD~3)
a5752342
NTND
174'
175
f3445f78 176test_expect_success 'left alignment formatting' '
c82134a9 177 git log --pretty="tformat:%<(40)%s" >actual &&
9d1ca1da
JK
178 qz_to_tab_space <<-EOF >expected &&
179 message two Z
180 message one Z
181 add bar Z
182 $(commit_msg) Z
183 EOF
a5752342 184 test_cmp expected actual
f3445f78 185'
a5752342 186
d928d810
AS
187test_expect_success 'left alignment formatting. i18n.logOutputEncoding' '
188 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%<(40)%s" >actual &&
9d1ca1da
JK
189 qz_to_tab_space <<-EOF | iconv -f utf-8 -t $test_encoding >expected &&
190 message two Z
191 message one Z
192 add bar Z
193 $(commit_msg) Z
194 EOF
d928d810
AS
195 test_cmp expected actual
196'
197
f3445f78 198test_expect_success 'left alignment formatting at the nth column' '
c82134a9 199 git log --pretty="tformat:%h %<|(40)%s" >actual &&
9d1ca1da
JK
200 qz_to_tab_space <<-EOF >expected &&
201 $head1 message two Z
202 $head2 message one Z
203 $head3 add bar Z
204 $head4 $(commit_msg) Z
205 EOF
a5752342 206 test_cmp expected actual
f3445f78 207'
a5752342 208
066790d7
NTND
209test_expect_success 'left alignment formatting at the nth column' '
210 COLUMNS=50 git log --pretty="tformat:%h %<|(-10)%s" >actual &&
9d1ca1da
JK
211 qz_to_tab_space <<-EOF >expected &&
212 $head1 message two Z
213 $head2 message one Z
214 $head3 add bar Z
215 $head4 $(commit_msg) Z
216 EOF
066790d7
NTND
217 test_cmp expected actual
218'
219
d928d810
AS
220test_expect_success 'left alignment formatting at the nth column. i18n.logOutputEncoding' '
221 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%h %<|(40)%s" >actual &&
9d1ca1da
JK
222 qz_to_tab_space <<-EOF | iconv -f utf-8 -t $test_encoding >expected &&
223 $head1 message two Z
224 $head2 message one Z
225 $head3 add bar Z
226 $head4 $(commit_msg) Z
227 EOF
d928d810
AS
228 test_cmp expected actual
229'
230
f3445f78 231test_expect_success 'left alignment formatting with no padding' '
c82134a9 232 git log --pretty="tformat:%<(1)%s" >actual &&
9d1ca1da
JK
233 cat <<-EOF >expected &&
234 message two
235 message one
236 add bar
237 $(commit_msg)
238 EOF
a5752342 239 test_cmp expected actual
f3445f78 240'
a5752342 241
d928d810
AS
242test_expect_success 'left alignment formatting with no padding. i18n.logOutputEncoding' '
243 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%<(1)%s" >actual &&
9d1ca1da
JK
244 cat <<-EOF | iconv -f utf-8 -t $test_encoding >expected &&
245 message two
246 message one
247 add bar
248 $(commit_msg)
249 EOF
d928d810
AS
250 test_cmp expected actual
251'
252
f3445f78 253test_expect_success 'left alignment formatting with trunc' '
c82134a9 254 git log --pretty="tformat:%<(10,trunc)%s" >actual &&
9d1ca1da
JK
255 qz_to_tab_space <<-\EOF >expected &&
256 message ..
257 message ..
258 add bar Z
259 initial...
260 EOF
a7f01c6b 261 test_cmp expected actual
f3445f78 262'
a7f01c6b 263
7d509878 264test_expect_success 'left alignment formatting with trunc. i18n.logOutputEncoding' '
d928d810 265 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%<(10,trunc)%s" >actual &&
9d1ca1da
JK
266 qz_to_tab_space <<-\EOF | iconv -f utf-8 -t $test_encoding >expected &&
267 message ..
268 message ..
269 add bar Z
270 initial...
271 EOF
d928d810
AS
272 test_cmp expected actual
273'
274
f3445f78 275test_expect_success 'left alignment formatting with ltrunc' '
c82134a9 276 git log --pretty="tformat:%<(10,ltrunc)%s" >actual &&
9d1ca1da
JK
277 qz_to_tab_space <<-EOF >expected &&
278 ..sage two
279 ..sage one
280 add bar Z
281 ..${sample_utf8_part}lich
282 EOF
a7f01c6b 283 test_cmp expected actual
f3445f78 284'
a7f01c6b 285
7d509878 286test_expect_success 'left alignment formatting with ltrunc. i18n.logOutputEncoding' '
d928d810 287 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%<(10,ltrunc)%s" >actual &&
9d1ca1da
JK
288 qz_to_tab_space <<-EOF | iconv -f utf-8 -t $test_encoding >expected &&
289 ..sage two
290 ..sage one
291 add bar Z
292 ..${sample_utf8_part}lich
293 EOF
d928d810
AS
294 test_cmp expected actual
295'
296
f3445f78 297test_expect_success 'left alignment formatting with mtrunc' '
c82134a9 298 git log --pretty="tformat:%<(10,mtrunc)%s" >actual &&
9d1ca1da
JK
299 qz_to_tab_space <<-\EOF >expected &&
300 mess.. two
301 mess.. one
302 add bar Z
303 init..lich
304 EOF
a7f01c6b 305 test_cmp expected actual
f3445f78 306'
a7f01c6b 307
7d509878 308test_expect_success 'left alignment formatting with mtrunc. i18n.logOutputEncoding' '
d928d810 309 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%<(10,mtrunc)%s" >actual &&
9d1ca1da
JK
310 qz_to_tab_space <<-\EOF | iconv -f utf-8 -t $test_encoding >expected &&
311 mess.. two
312 mess.. one
313 add bar Z
314 init..lich
315 EOF
d928d810
AS
316 test_cmp expected actual
317'
318
f3445f78 319test_expect_success 'right alignment formatting' '
c82134a9 320 git log --pretty="tformat:%>(40)%s" >actual &&
9d1ca1da
JK
321 qz_to_tab_space <<-EOF >expected &&
322 Z message two
323 Z message one
324 Z add bar
325 Z $(commit_msg)
326 EOF
a5752342 327 test_cmp expected actual
f3445f78 328'
a5752342 329
d928d810
AS
330test_expect_success 'right alignment formatting. i18n.logOutputEncoding' '
331 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%>(40)%s" >actual &&
9d1ca1da
JK
332 qz_to_tab_space <<-EOF | iconv -f utf-8 -t $test_encoding >expected &&
333 Z message two
334 Z message one
335 Z add bar
336 Z $(commit_msg)
337 EOF
d928d810
AS
338 test_cmp expected actual
339'
340
f3445f78 341test_expect_success 'right alignment formatting at the nth column' '
c82134a9 342 git log --pretty="tformat:%h %>|(40)%s" >actual &&
9d1ca1da
JK
343 qz_to_tab_space <<-EOF >expected &&
344 $head1 message two
345 $head2 message one
346 $head3 add bar
347 $head4 $(commit_msg)
348 EOF
a5752342 349 test_cmp expected actual
f3445f78 350'
a5752342 351
066790d7
NTND
352test_expect_success 'right alignment formatting at the nth column' '
353 COLUMNS=50 git log --pretty="tformat:%h %>|(-10)%s" >actual &&
9d1ca1da
JK
354 qz_to_tab_space <<-EOF >expected &&
355 $head1 message two
356 $head2 message one
357 $head3 add bar
358 $head4 $(commit_msg)
359 EOF
066790d7
NTND
360 test_cmp expected actual
361'
362
d928d810
AS
363test_expect_success 'right alignment formatting at the nth column. i18n.logOutputEncoding' '
364 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%h %>|(40)%s" >actual &&
9d1ca1da
JK
365 qz_to_tab_space <<-EOF | iconv -f utf-8 -t $test_encoding >expected &&
366 $head1 message two
367 $head2 message one
368 $head3 add bar
369 $head4 $(commit_msg)
370 EOF
d928d810
AS
371 test_cmp expected actual
372'
373
3ad87c80
JK
374# Note: Space between 'message' and 'two' should be in the same column
375# as in previous test.
376test_expect_success 'right alignment formatting at the nth column with --graph. i18n.logOutputEncoding' '
377 git -c i18n.logOutputEncoding=$test_encoding log --graph --pretty="tformat:%h %>|(40)%s" >actual &&
9d1ca1da
JK
378 iconv -f utf-8 -t $test_encoding >expected <<-EOF &&
379 * $head1 message two
380 * $head2 message one
381 * $head3 add bar
382 * $head4 $(commit_msg)
383 EOF
3ad87c80
JK
384 test_cmp expected actual
385'
386
f3445f78 387test_expect_success 'right alignment formatting with no padding' '
c82134a9 388 git log --pretty="tformat:%>(1)%s" >actual &&
9d1ca1da
JK
389 cat <<-EOF >expected &&
390 message two
391 message one
392 add bar
393 $(commit_msg)
394 EOF
a5752342 395 test_cmp expected actual
f3445f78 396'
a5752342 397
3ad87c80
JK
398test_expect_success 'right alignment formatting with no padding and with --graph' '
399 git log --graph --pretty="tformat:%>(1)%s" >actual &&
9d1ca1da
JK
400 cat <<-EOF >expected &&
401 * message two
402 * message one
403 * add bar
404 * $(commit_msg)
405 EOF
3ad87c80
JK
406 test_cmp expected actual
407'
408
d928d810
AS
409test_expect_success 'right alignment formatting with no padding. i18n.logOutputEncoding' '
410 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%>(1)%s" >actual &&
9d1ca1da
JK
411 cat <<-EOF | iconv -f utf-8 -t $test_encoding >expected &&
412 message two
413 message one
414 add bar
415 $(commit_msg)
416 EOF
d928d810
AS
417 test_cmp expected actual
418'
419
f3445f78 420test_expect_success 'center alignment formatting' '
c82134a9 421 git log --pretty="tformat:%><(40)%s" >actual &&
9d1ca1da
JK
422 qz_to_tab_space <<-EOF >expected &&
423 Z message two Z
424 Z message one Z
425 Z add bar Z
426 Z $(commit_msg) Z
427 EOF
a5752342 428 test_cmp expected actual
f3445f78 429'
a5752342 430
d928d810
AS
431test_expect_success 'center alignment formatting. i18n.logOutputEncoding' '
432 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%><(40)%s" >actual &&
9d1ca1da
JK
433 qz_to_tab_space <<-EOF | iconv -f utf-8 -t $test_encoding >expected &&
434 Z message two Z
435 Z message one Z
436 Z add bar Z
437 Z $(commit_msg) Z
438 EOF
d928d810
AS
439 test_cmp expected actual
440'
f3445f78 441test_expect_success 'center alignment formatting at the nth column' '
c82134a9 442 git log --pretty="tformat:%h %><|(40)%s" >actual &&
9d1ca1da
JK
443 qz_to_tab_space <<-EOF >expected &&
444 $head1 message two Z
445 $head2 message one Z
446 $head3 add bar Z
447 $head4 $(commit_msg) Z
448 EOF
a5752342 449 test_cmp expected actual
f3445f78 450'
a5752342 451
066790d7
NTND
452test_expect_success 'center alignment formatting at the nth column' '
453 COLUMNS=70 git log --pretty="tformat:%h %><|(-30)%s" >actual &&
9d1ca1da
JK
454 qz_to_tab_space <<-EOF >expected &&
455 $head1 message two Z
456 $head2 message one Z
457 $head3 add bar Z
458 $head4 $(commit_msg) Z
459 EOF
066790d7
NTND
460 test_cmp expected actual
461'
462
d928d810
AS
463test_expect_success 'center alignment formatting at the nth column. i18n.logOutputEncoding' '
464 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%h %><|(40)%s" >actual &&
9d1ca1da
JK
465 qz_to_tab_space <<-EOF | iconv -f utf-8 -t $test_encoding >expected &&
466 $head1 message two Z
467 $head2 message one Z
468 $head3 add bar Z
469 $head4 $(commit_msg) Z
470 EOF
d928d810
AS
471 test_cmp expected actual
472'
473
f3445f78 474test_expect_success 'center alignment formatting with no padding' '
c82134a9 475 git log --pretty="tformat:%><(1)%s" >actual &&
9d1ca1da
JK
476 cat <<-EOF >expected &&
477 message two
478 message one
479 add bar
480 $(commit_msg)
481 EOF
a5752342 482 test_cmp expected actual
f3445f78 483'
a5752342 484
496a6980
AS
485# save HEAD's SHA-1 digest (with no abbreviations) to use it below
486# as far as the next test amends HEAD
487old_head1=$(git rev-parse --verify HEAD~0)
d928d810
AS
488test_expect_success 'center alignment formatting with no padding. i18n.logOutputEncoding' '
489 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%><(1)%s" >actual &&
9d1ca1da
JK
490 cat <<-EOF | iconv -f utf-8 -t $test_encoding >expected &&
491 message two
492 message one
493 add bar
494 $(commit_msg)
495 EOF
d928d810
AS
496 test_cmp expected actual
497'
496a6980 498
f3445f78
AS
499test_expect_success 'left/right alignment formatting with stealing' '
500 git commit --amend -m short --author "long long long <long@me.com>" &&
c82134a9 501 git log --pretty="tformat:%<(10,trunc)%s%>>(10,ltrunc)% an" >actual &&
9d1ca1da
JK
502 cat <<-\EOF >expected &&
503 short long long long
504 message .. A U Thor
505 add bar A U Thor
506 initial... A U Thor
507 EOF
1640632b 508 test_cmp expected actual
f3445f78 509'
7d509878 510test_expect_success 'left/right alignment formatting with stealing. i18n.logOutputEncoding' '
d928d810 511 git -c i18n.logOutputEncoding=$test_encoding log --pretty="tformat:%<(10,trunc)%s%>>(10,ltrunc)% an" >actual &&
9d1ca1da
JK
512 cat <<-\EOF | iconv -f utf-8 -t $test_encoding >expected &&
513 short long long long
514 message .. A U Thor
515 add bar A U Thor
516 initial... A U Thor
517 EOF
d928d810
AS
518 test_cmp expected actual
519'
1640632b 520
43087596
NTND
521test_expect_success 'strbuf_utf8_replace() not producing NUL' '
522 git log --color --pretty="tformat:%<(10,trunc)%s%>>(10,ltrunc)%C(auto)%d" |
523 test_decode_color |
524 nul_to_q >actual &&
525 ! grep Q actual
526'
527
3593ebd3
ÆAB
528# --date=[XXX] and corresponding %a[X] %c[X] format equivalency
529test_expect_success '--date=iso-strict %ad%cd is the same as %aI%cI' '
fbfcaec8 530 git log --format=%ad%n%cd --date=iso-strict >expected &&
466fb674
BB
531 git log --format=%aI%n%cI >actual &&
532 test_cmp expected actual
533'
534
3593ebd3 535test_expect_success '--date=short %ad%cd is the same as %as%cs' '
0df62117
RS
536 git log --format=%ad%n%cd --date=short >expected &&
537 git log --format=%as%n%cs >actual &&
538 test_cmp expected actual
539'
540
b722d456
ZH
541test_expect_success '--date=human %ad%cd is the same as %ah%ch' '
542 git log --format=%ad%n%cd --date=human >expected &&
543 git log --format=%ah%n%ch >actual &&
544 test_cmp expected actual
545'
546
496a6980 547# get new digests (with no abbreviations)
1bd37509
JK
548test_expect_success 'set up log decoration tests' '
549 head1=$(git rev-parse --verify HEAD~0) &&
550 head2=$(git rev-parse --verify HEAD~1)
551'
496a6980 552
5e1361cc 553test_expect_success 'log decoration properly follows tag chain' '
554 git tag -a tag1 -m tag1 &&
555 git tag -a tag2 -m tag2 tag1 &&
556 git tag -d tag1 &&
557 git commit --amend -m shorter &&
558 git log --no-walk --tags --pretty="%H %d" --decorate=full >actual &&
9d1ca1da 559 cat <<-EOF >expected &&
9d1ca1da
JK
560 $head2 (tag: refs/tags/message-one)
561 $old_head1 (tag: refs/tags/message-two)
2a73022e 562 $head1 (tag: refs/tags/tag2)
9d1ca1da 563 EOF
2a73022e 564 sort -k3 actual >actual1 &&
5e1361cc 565 test_cmp expected actual1
566'
567
9271095c
HJ
568test_expect_success 'clean log decoration' '
569 git log --no-walk --tags --pretty="%H %D" --decorate=full >actual &&
9d1ca1da 570 cat >expected <<-EOF &&
9d1ca1da
JK
571 $head2 tag: refs/tags/message-one
572 $old_head1 tag: refs/tags/message-two
2a73022e 573 $head1 tag: refs/tags/tag2
9d1ca1da 574 EOF
2a73022e 575 sort -k3 actual >actual1 &&
9271095c
HJ
576 test_cmp expected actual1
577'
578
a58dd835
AK
579test_expect_success 'pretty format %decorate' '
580 git checkout -b foo &&
581 git commit --allow-empty -m "new commit" &&
582 git tag bar &&
583 git branch qux &&
584
585 echo " (HEAD -> foo, tag: bar, qux)" >expect1 &&
586 git log --format="%(decorate)" -1 >actual1 &&
587 test_cmp expect1 actual1 &&
588
589 echo "HEAD -> foo, tag: bar, qux" >expect2 &&
590 git log --format="%(decorate:prefix=,suffix=)" -1 >actual2 &&
591 test_cmp expect2 actual2 &&
592
593 echo "[ HEAD -> foo; tag: bar; qux ]" >expect3 &&
594 git log --format="%(decorate:prefix=[ ,suffix= ],separator=%x3B )" \
595 -1 >actual3 &&
596 test_cmp expect3 actual3 &&
597
598 # Try with a typo (in "separator"), in which case the placeholder should
599 # not be replaced.
600 echo "%(decorate:prefix=[ ,suffix= ],separater=; )" >expect4 &&
601 git log --format="%(decorate:prefix=[ ,suffix= ],separater=%x3B )" \
602 -1 >actual4 &&
f1f8a258
AK
603 test_cmp expect4 actual4 &&
604
605 echo "HEAD->foo bar qux" >expect5 &&
606 git log --format="%(decorate:prefix=,suffix=,separator= ,tag=,pointer=->)" \
607 -1 >actual5 &&
608 test_cmp expect5 actual5
a58dd835
AK
609'
610
d9f31fbf
JK
611cat >trailers <<EOF
612Signed-off-by: A U Thor <author@example.com>
613Acked-by: A U Thor <author@example.com>
614[ v2 updated patch description ]
cc1735c4
JK
615Signed-off-by: A U Thor
616 <author@example.com>
d9f31fbf
JK
617EOF
618
58311c66 619unfold () {
6f5c77a1 620 perl -0pe 's/\n\s+/ /g'
58311c66
JK
621}
622
cc1735c4 623test_expect_success 'set up trailer tests' '
d9f31fbf
JK
624 echo "Some contents" >trailerfile &&
625 git add trailerfile &&
cc1735c4 626 git commit -F - <<-EOF
d9f31fbf
JK
627 trailers: this commit message has trailers
628
629 This commit is a test commit with trailers at the end. We parse this
cc1735c4 630 message and display the trailers using %(trailers).
d9f31fbf
JK
631
632 $(cat trailers)
633 EOF
cc1735c4 634'
d9f31fbf 635
cc1735c4
JK
636test_expect_success 'pretty format %(trailers) shows trailers' '
637 git log --no-walk --pretty="%(trailers)" >actual &&
638 {
639 cat trailers &&
640 echo
641 } >expect &&
d9f31fbf
JK
642 test_cmp expect actual
643'
644
8b966a05
ÆAB
645test_expect_success 'pretty format %(trailers:) enables no options' '
646 git log --no-walk --pretty="%(trailers:)" >actual &&
647 # "expect" the same as the test above
648 test_cmp expect actual
649'
650
58311c66
JK
651test_expect_success '%(trailers:only) shows only "key: value" trailers' '
652 git log --no-walk --pretty="%(trailers:only)" >actual &&
653 {
654 grep -v patch.description <trailers &&
655 echo
656 } >expect &&
657 test_cmp expect actual
658'
659
4f732e0f
AW
660test_expect_success '%(trailers:only=yes) shows only "key: value" trailers' '
661 git log --no-walk --pretty=format:"%(trailers:only=yes)" >actual &&
662 grep -v patch.description <trailers >expect &&
663 test_cmp expect actual
664'
665
666test_expect_success '%(trailers:only=no) shows all trailers' '
667 git log --no-walk --pretty=format:"%(trailers:only=no)" >actual &&
668 cat trailers >expect &&
669 test_cmp expect actual
670'
671
672test_expect_success '%(trailers:only=no,only=true) shows only "key: value" trailers' '
673 git log --no-walk --pretty=format:"%(trailers:only=yes)" >actual &&
674 grep -v patch.description <trailers >expect &&
675 test_cmp expect actual
58311c66
JK
676'
677
678test_expect_success '%(trailers:unfold) unfolds trailers' '
679 git log --no-walk --pretty="%(trailers:unfold)" >actual &&
680 {
681 unfold <trailers &&
682 echo
683 } >expect &&
684 test_cmp expect actual
685'
686
687test_expect_success ':only and :unfold work together' '
84ff053d
TB
688 git log --no-walk --pretty="%(trailers:only,unfold)" >actual &&
689 git log --no-walk --pretty="%(trailers:unfold,only)" >reverse &&
58311c66
JK
690 test_cmp actual reverse &&
691 {
692 grep -v patch.description <trailers | unfold &&
693 echo
694 } >expect &&
695 test_cmp expect actual
696'
697
250bea0c
AW
698test_expect_success 'pretty format %(trailers:key=foo) shows that trailer' '
699 git log --no-walk --pretty="format:%(trailers:key=Acked-by)" >actual &&
700 echo "Acked-by: A U Thor <author@example.com>" >expect &&
701 test_cmp expect actual
702'
703
704test_expect_success 'pretty format %(trailers:key=foo) is case insensitive' '
705 git log --no-walk --pretty="format:%(trailers:key=AcKed-bY)" >actual &&
706 echo "Acked-by: A U Thor <author@example.com>" >expect &&
707 test_cmp expect actual
708'
709
710test_expect_success 'pretty format %(trailers:key=foo:) trailing colon also works' '
711 git log --no-walk --pretty="format:%(trailers:key=Acked-by:)" >actual &&
712 echo "Acked-by: A U Thor <author@example.com>" >expect &&
713 test_cmp expect actual
714'
715
716test_expect_success 'pretty format %(trailers:key=foo) multiple keys' '
717 git log --no-walk --pretty="format:%(trailers:key=Acked-by:,key=Signed-off-By)" >actual &&
718 grep -v patch.description <trailers >expect &&
719 test_cmp expect actual
720'
721
4dc8b1c1 722test_expect_success '%(trailers:key=nonexistent) becomes empty' '
250bea0c
AW
723 git log --no-walk --pretty="x%(trailers:key=Nacked-by)x" >actual &&
724 echo "xx" >expect &&
725 test_cmp expect actual
726'
727
728test_expect_success '%(trailers:key=foo) handles multiple lines even if folded' '
729 git log --no-walk --pretty="format:%(trailers:key=Signed-Off-by)" >actual &&
730 grep -v patch.description <trailers | grep -v Acked-by >expect &&
731 test_cmp expect actual
732'
733
734test_expect_success '%(trailers:key=foo,unfold) properly unfolds' '
735 git log --no-walk --pretty="format:%(trailers:key=Signed-Off-by,unfold)" >actual &&
736 unfold <trailers | grep Signed-off-by >expect &&
737 test_cmp expect actual
738'
739
740test_expect_success 'pretty format %(trailers:key=foo,only=no) also includes nontrailer lines' '
741 git log --no-walk --pretty="format:%(trailers:key=Acked-by,only=no)" >actual &&
742 {
743 echo "Acked-by: A U Thor <author@example.com>" &&
744 grep patch.description <trailers
745 } >expect &&
746 test_cmp expect actual
747'
748
749test_expect_success '%(trailers:key) without value is error' '
750 git log --no-walk --pretty="tformat:%(trailers:key)" >actual &&
751 echo "%(trailers:key)" >expect &&
752 test_cmp expect actual
753'
754
9d87d5ae
ÆAB
755test_expect_success '%(trailers:keyonly) shows only keys' '
756 git log --no-walk --pretty="format:%(trailers:keyonly)" >actual &&
757 test_write_lines \
758 "Signed-off-by" \
759 "Acked-by" \
760 "[ v2 updated patch description ]" \
761 "Signed-off-by" >expect &&
762 test_cmp expect actual
763'
764
765test_expect_success '%(trailers:key=foo,keyonly) shows only key' '
766 git log --no-walk --pretty="format:%(trailers:key=Acked-by,keyonly)" >actual &&
767 echo "Acked-by" >expect &&
768 test_cmp expect actual
769'
770
d9b936db
AW
771test_expect_success '%(trailers:key=foo,valueonly) shows only value' '
772 git log --no-walk --pretty="format:%(trailers:key=Acked-by,valueonly)" >actual &&
773 echo "A U Thor <author@example.com>" >expect &&
774 test_cmp expect actual
775'
776
8b966a05
ÆAB
777test_expect_success '%(trailers:valueonly) shows only values' '
778 git log --no-walk --pretty="format:%(trailers:valueonly)" >actual &&
779 test_write_lines \
780 "A U Thor <author@example.com>" \
781 "A U Thor <author@example.com>" \
782 "[ v2 updated patch description ]" \
783 "A U Thor" \
784 " <author@example.com>" >expect &&
785 test_cmp expect actual
786'
787
9d87d5ae
ÆAB
788test_expect_success '%(trailers:key=foo,keyonly,valueonly) shows nothing' '
789 git log --no-walk --pretty="format:%(trailers:key=Acked-by,keyonly,valueonly)" >actual &&
790 echo >expect &&
791 test_cmp expect actual
792'
793
0b691d86 794test_expect_success 'pretty format %(trailers:separator) changes separator' '
8b966a05
ÆAB
795 git log --no-walk --pretty=format:"X%(trailers:separator=%x00)X" >actual &&
796 (
797 printf "XSigned-off-by: A U Thor <author@example.com>\0" &&
798 printf "Acked-by: A U Thor <author@example.com>\0" &&
799 printf "[ v2 updated patch description ]\0" &&
800 printf "Signed-off-by: A U Thor\n <author@example.com>X"
801 ) >expect &&
802 test_cmp expect actual
803'
804
805test_expect_success 'pretty format %(trailers:separator=X,unfold) changes separator' '
0b691d86 806 git log --no-walk --pretty=format:"X%(trailers:separator=%x00,unfold)X" >actual &&
7c1f79fc
ÆAB
807 (
808 printf "XSigned-off-by: A U Thor <author@example.com>\0" &&
809 printf "Acked-by: A U Thor <author@example.com>\0" &&
810 printf "[ v2 updated patch description ]\0" &&
811 printf "Signed-off-by: A U Thor <author@example.com>X"
812 ) >expect &&
0b691d86 813 test_cmp expect actual
058761f1
ÆAB
814'
815
816test_expect_success 'pretty format %(trailers:key_value_separator) changes key-value separator' '
817 git log --no-walk --pretty=format:"X%(trailers:key_value_separator=%x00)X" >actual &&
818 (
819 printf "XSigned-off-by\0A U Thor <author@example.com>\n" &&
820 printf "Acked-by\0A U Thor <author@example.com>\n" &&
821 printf "[ v2 updated patch description ]\n" &&
822 printf "Signed-off-by\0A U Thor\n <author@example.com>\nX"
823 ) >expect &&
824 test_cmp expect actual
825'
826
827test_expect_success 'pretty format %(trailers:key_value_separator,unfold) changes key-value separator' '
828 git log --no-walk --pretty=format:"X%(trailers:key_value_separator=%x00,unfold)X" >actual &&
829 (
830 printf "XSigned-off-by\0A U Thor <author@example.com>\n" &&
831 printf "Acked-by\0A U Thor <author@example.com>\n" &&
832 printf "[ v2 updated patch description ]\n" &&
833 printf "Signed-off-by\0A U Thor <author@example.com>\nX"
834 ) >expect &&
835 test_cmp expect actual
836'
837
838test_expect_success 'pretty format %(trailers:separator,key_value_separator) changes both separators' '
839 git log --no-walk --pretty=format:"%(trailers:separator=%x00,key_value_separator=%x00%x00,unfold)" >actual &&
840 (
841 printf "Signed-off-by\0\0A U Thor <author@example.com>\0" &&
842 printf "Acked-by\0\0A U Thor <author@example.com>\0" &&
843 printf "[ v2 updated patch description ]\0" &&
844 printf "Signed-off-by\0\0A U Thor <author@example.com>"
845 ) >expect &&
846 test_cmp expect actual
0b691d86
AW
847'
848
9d87d5ae 849test_expect_success 'pretty format %(trailers) combining separator/key/keyonly/valueonly' '
0b691d86
AW
850 git commit --allow-empty -F - <<-\EOF &&
851 Important fix
852
853 The fix is explained here
854
855 Closes: #1234
856 EOF
857
858 git commit --allow-empty -F - <<-\EOF &&
859 Another fix
860
861 The fix is explained here
862
863 Closes: #567
864 Closes: #890
865 EOF
866
867 git commit --allow-empty -F - <<-\EOF &&
868 Does not close any tickets
869 EOF
870
871 git log --pretty="%s% (trailers:separator=%x2c%x20,key=Closes,valueonly)" HEAD~3.. >actual &&
872 test_write_lines \
873 "Does not close any tickets" \
874 "Another fix #567, #890" \
875 "Important fix #1234" >expect &&
9d87d5ae
ÆAB
876 test_cmp expect actual &&
877
878 git log --pretty="%s% (trailers:separator=%x2c%x20,key=Closes,keyonly)" HEAD~3.. >actual &&
879 test_write_lines \
880 "Does not close any tickets" \
881 "Another fix Closes, Closes" \
882 "Important fix Closes" >expect &&
0b691d86
AW
883 test_cmp expect actual
884'
885
e5fba5d5
JK
886test_expect_success 'trailer parsing not fooled by --- line' '
887 git commit --allow-empty -F - <<-\EOF &&
888 this is the subject
889
890 This is the body. The message has a "---" line which would confuse a
891 message+patch parser. But here we know we have only a commit message,
892 so we get it right.
893
894 trailer: wrong
895 ---
896 This is more body.
897
898 trailer: right
899 EOF
900
901 {
902 echo "trailer: right" &&
903 echo
904 } >expect &&
905 git log --no-walk --format="%(trailers)" >actual &&
906 test_cmp expect actual
907'
908
ad6f028f
IT
909test_expect_success 'set up %S tests' '
910 git checkout --orphan source-a &&
911 test_commit one &&
912 test_commit two &&
913 git checkout -b source-b HEAD^ &&
914 test_commit three
915'
916
917test_expect_success 'log --format=%S paints branch names' '
918 cat >expect <<-\EOF &&
919 source-b
920 source-a
921 source-b
922 EOF
923 git log --format=%S source-a source-b >actual &&
924 test_cmp expect actual
925'
926
927test_expect_success 'log --format=%S paints tag names' '
928 git tag -m tagged source-tag &&
929 cat >expect <<-\EOF &&
930 source-tag
931 source-a
932 source-tag
933 EOF
934 git log --format=%S source-tag source-a >actual &&
935 test_cmp expect actual
936'
937
938test_expect_success 'log --format=%S paints symmetric ranges' '
939 cat >expect <<-\EOF &&
940 source-b
941 source-a
942 EOF
943 git log --format=%S source-a...source-b >actual &&
944 test_cmp expect actual
945'
946
947test_expect_success '%S in git log --format works with other placeholders (part 1)' '
948 git log --format="source-b %h" source-b >expect &&
949 git log --format="%S %h" source-b >actual &&
950 test_cmp expect actual
951'
952
953test_expect_success '%S in git log --format works with other placeholders (part 2)' '
954 git log --format="%h source-b" source-b >expect &&
955 git log --format="%h %S" source-b >actual &&
956 test_cmp expect actual
957'
958
1f0fc1db
DL
959test_expect_success 'log --pretty=reference' '
960 git log --pretty="tformat:%h (%s, %as)" >expect &&
961 git log --pretty=reference >actual &&
962 test_cmp expect actual
963'
964
965test_expect_success 'log --pretty=reference with log.date is overridden by short date' '
966 git log --pretty="tformat:%h (%s, %as)" >expect &&
967 test_config log.date rfc &&
968 git log --pretty=reference >actual &&
969 test_cmp expect actual
970'
971
972test_expect_success 'log --pretty=reference with explicit date overrides short date' '
973 git log --date=rfc --pretty="tformat:%h (%s, %ad)" >expect &&
974 git log --date=rfc --pretty=reference >actual &&
975 test_cmp expect actual
976'
977
978test_expect_success 'log --pretty=reference is never unabbreviated' '
979 git log --pretty="tformat:%h (%s, %as)" >expect &&
980 git log --no-abbrev-commit --pretty=reference >actual &&
981 test_cmp expect actual
982'
983
984test_expect_success 'log --pretty=reference is never decorated' '
985 git log --pretty="tformat:%h (%s, %as)" >expect &&
986 git log --decorate=short --pretty=reference >actual &&
987 test_cmp expect actual
988'
989
990test_expect_success 'log --pretty=reference does not output reflog info' '
991 git log --walk-reflogs --pretty="tformat:%h (%s, %as)" >expect &&
992 git log --walk-reflogs --pretty=reference >actual &&
993 test_cmp expect actual
994'
995
996test_expect_success 'log --pretty=reference is colored appropriately' '
997 git log --color=always --pretty="tformat:%C(auto)%h (%s, %as)" >expect &&
998 git log --color=always --pretty=reference >actual &&
999 test_cmp expect actual
1000'
1001
15ae82d5
RS
1002test_expect_success '%(describe) vs git describe' '
1003 git log --format="%H" | while read hash
1004 do
09fe8ca9
RS
1005 if desc=$(git describe $hash)
1006 then
1007 : >expect-contains-good
1008 else
1009 : >expect-contains-bad
1010 fi &&
cbe1d9d6 1011 echo "$hash $desc" || return 1
15ae82d5 1012 done >expect &&
09fe8ca9
RS
1013 test_path_exists expect-contains-good &&
1014 test_path_exists expect-contains-bad &&
1015
15ae82d5
RS
1016 git log --format="%H %(describe)" >actual 2>err &&
1017 test_cmp expect actual &&
1018 test_must_be_empty err
1019'
1020
b081547e
RS
1021test_expect_success '%(describe:match=...) vs git describe --match ...' '
1022 test_when_finished "git tag -d tag-match" &&
52ff891c 1023 git tag -a -m tagged tag-match &&
b081547e
RS
1024 git describe --match "*-match" >expect &&
1025 git log -1 --format="%(describe:match=*-match)" >actual &&
1026 test_cmp expect actual
1027'
1028
1029test_expect_success '%(describe:exclude=...) vs git describe --exclude ...' '
1030 test_when_finished "git tag -d tag-exclude" &&
1031 git tag -a -m tagged tag-exclude &&
1032 git describe --exclude "*-exclude" >expect &&
1033 git log -1 --format="%(describe:exclude=*-exclude)" >actual &&
1034 test_cmp expect actual
1035'
1036
1d517cea
ES
1037test_expect_success '%(describe:tags) vs git describe --tags' '
1038 test_when_finished "git tag -d tagname" &&
1039 git tag tagname &&
1040 git describe --tags >expect &&
1041 git log -1 --format="%(describe:tags)" >actual &&
1042 test_cmp expect actual
1043'
1044
eccd97d0
ES
1045test_expect_success '%(describe:abbrev=...) vs git describe --abbrev=...' '
1046 test_when_finished "git tag -d tagname" &&
1876a5ae
KS
1047
1048 # Case 1: We have commits between HEAD and the most recent tag
1049 # reachable from it
1050 test_commit --no-tag file &&
1051 git describe --abbrev=15 >expect &&
1052 git log -1 --format="%(describe:abbrev=15)" >actual &&
1053 test_cmp expect actual &&
1054
1055 # Make sure the hash used is at least 15 digits long
1056 sed -e "s/^.*-g\([0-9a-f]*\)$/\1/" <actual >hexpart &&
1057 test 16 -le $(wc -c <hexpart) &&
1058
1059 # Case 2: We have a tag at HEAD, describe directly gives the
1060 # name of the tag
eccd97d0
ES
1061 git tag -a -m tagged tagname &&
1062 git describe --abbrev=15 >expect &&
1063 git log -1 --format="%(describe:abbrev=15)" >actual &&
1876a5ae
KS
1064 test_cmp expect actual &&
1065 test tagname = $(cat actual)
eccd97d0
ES
1066'
1067
b49f309a
PS
1068test_expect_success 'log --pretty with space stealing' '
1069 printf mm0 >expect &&
1070 git log -1 --pretty="format:mm%>>|(1)%x30" >actual &&
1071 test_cmp expect actual
1072'
1073
f6e0b9f3
PS
1074test_expect_success 'log --pretty with invalid padding format' '
1075 printf "%s%%<(20" "$(git rev-parse HEAD)" >expect &&
1076 git log -1 --pretty="format:%H%<(20" >actual &&
1077 test_cmp expect actual
1078'
1079
1de69c0c
PS
1080test_expect_success 'log --pretty with magical wrapping directives' '
1081 commit_id=$(git commit-tree HEAD^{tree} -m "describe me") &&
1082 git tag describe-me $commit_id &&
1083 printf "\n(tag:\ndescribe-me)%%+w(2)" >expect &&
1084 git log -1 --pretty="format:%w(1)%+d%+w(2)" $commit_id >actual &&
1085 test_cmp expect actual
1086'
1087
48050c42 1088test_expect_success SIZE_T_IS_64BIT 'log --pretty with overflowing wrapping directive' '
304a50ad
PS
1089 printf "%%w(2147483649,1,1)0" >expect &&
1090 git log -1 --pretty="format:%w(2147483649,1,1)%x30" >actual &&
1091 test_cmp expect actual &&
1092 printf "%%w(1,2147483649,1)0" >expect &&
1093 git log -1 --pretty="format:%w(1,2147483649,1)%x30" >actual &&
1094 test_cmp expect actual &&
1095 printf "%%w(1,1,2147483649)0" >expect &&
1096 git log -1 --pretty="format:%w(1,1,2147483649)%x30" >actual &&
1097 test_cmp expect actual
1098'
1099
1100test_expect_success SIZE_T_IS_64BIT 'log --pretty with overflowing padding directive' '
1101 printf "%%<(2147483649)0" >expect &&
1102 git log -1 --pretty="format:%<(2147483649)%x30" >actual &&
1103 test_cmp expect actual
48050c42
PS
1104'
1105
17d23e8a
PS
1106test_expect_success 'log --pretty with padding and preceding control chars' '
1107 printf "\20\20 0" >expect &&
1108 git log -1 --pretty="format:%x10%x10%>|(4)%x30" >actual &&
1109 test_cmp expect actual
81c2d4c3
PS
1110'
1111
1112test_expect_success 'log --pretty truncation with control chars' '
1113 test_commit "$(printf "\20\20\20\20xxxx")" file contents commit-with-control-chars &&
1114 printf "\20\20\20\20x.." >expect &&
1115 git log -1 --pretty="format:%<(3,trunc)%s" commit-with-control-chars >actual &&
1116 test_cmp expect actual
17d23e8a
PS
1117'
1118
81dc898d
PS
1119test_expect_success EXPENSIVE,SIZE_T_IS_64BIT 'log --pretty with huge commit message' '
1120 # We only assert that this command does not crash. This needs to be
1121 # executed with the address sanitizer to demonstrate failure.
1122 git log -1 --pretty="format:%>(2147483646)%x41%41%>(2147483646)%x41" >/dev/null
1123'
1124
1125test_expect_success EXPENSIVE,SIZE_T_IS_64BIT 'set up huge commit' '
1126 test-tool genzeros 2147483649 | tr "\000" "1" >expect &&
1127 huge_commit=$(git commit-tree -F expect HEAD^{tree})
1128'
1129
1130test_expect_success EXPENSIVE,SIZE_T_IS_64BIT 'log --pretty with huge commit message' '
1131 git log -1 --format="%B%<(1)%x30" $huge_commit >actual &&
1132 echo 0 >>expect &&
1133 test_cmp expect actual
1134'
1135
937b71cc
PS
1136test_expect_success EXPENSIVE,SIZE_T_IS_64BIT 'log --pretty with huge commit message does not cause allocation failure' '
1137 test_must_fail git log -1 --format="%<(1)%B" $huge_commit 2>error &&
1138 cat >expect <<-EOF &&
1139 fatal: number too large to represent as int on this platform: 2147483649
1140 EOF
1141 test_cmp expect error
1142'
1143
540e7bc4
PO
1144# pretty-formats note wide char limitations, and add tests
1145test_expect_failure 'wide and decomposed characters column counting' '
1146
1147# from t/lib-unicode-nfc-nfd.sh hex values converted to octal
1148 utf8_nfc=$(printf "\303\251") && # e acute combined.
1149 utf8_nfd=$(printf "\145\314\201") && # e with a combining acute (i.e. decomposed)
1150 utf8_emoji=$(printf "\360\237\221\250") &&
1151
1152# replacement character when requesting a wide char fits in a single display colum.
1153# "half wide" alternative could be a plain ASCII dot `.`
1154 utf8_vert_ell=$(printf "\342\213\256") &&
1155
1156# use ${xxx} here!
1157 nfc10="${utf8_nfc}${utf8_nfc}${utf8_nfc}${utf8_nfc}${utf8_nfc}${utf8_nfc}${utf8_nfc}${utf8_nfc}${utf8_nfc}${utf8_nfc}" &&
1158 nfd10="${utf8_nfd}${utf8_nfd}${utf8_nfd}${utf8_nfd}${utf8_nfd}${utf8_nfd}${utf8_nfd}${utf8_nfd}${utf8_nfd}${utf8_nfd}" &&
1159 emoji5="${utf8_emoji}${utf8_emoji}${utf8_emoji}${utf8_emoji}${utf8_emoji}" &&
1160# emoji5 uses 10 display columns
1161
1162 test_commit "abcdefghij" &&
1163 test_commit --no-tag "${nfc10}" &&
1164 test_commit --no-tag "${nfd10}" &&
1165 test_commit --no-tag "${emoji5}" &&
1166 printf "${utf8_emoji}..${utf8_emoji}${utf8_vert_ell}\n${utf8_nfd}..${utf8_nfd}${utf8_nfd}\n${utf8_nfc}..${utf8_nfc}${utf8_nfc}\na..ij\n" >expected &&
1167 git log --format="%<(5,mtrunc)%s" -4 >actual &&
1168 test_cmp expected actual
1169'
1170
8028184e 1171test_done