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
83 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
87 test_format subject
%s
<<'EOF'
88 commit 131a310eb913d107dd3c09a65d1651175898735d
90 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
94 test_format body
%b
<<'EOF'
95 commit 131a310eb913d107dd3c09a65d1651175898735d
97 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
101 test_format colors
%Credfoo
%Cgreenbar
%Cbluebaz
%Cresetxyzzy
<<'EOF'
102 commit 131a310eb913d107dd3c09a65d1651175898735d
103 \e[31mfoo\e[32mbar\e[34mbaz\e[mxyzzy
104 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
105 \e[31mfoo\e[32mbar\e[34mbaz\e[mxyzzy
108 cat >commit-msg
<<'EOF'
109 Test printing of complex bodies
111 This commit message is much longer than the others,
112 and it will be encoded in iso8859-1. We should therefore
113 include an iso8859 character: ¡bueno!
115 test_expect_success
'setup complex body' '
116 git config i18n.commitencoding iso8859-1 &&
117 echo change2 >foo && git-commit -a -F commit-msg
120 test_format complex-encoding
%e
<<'EOF'
121 commit f58db70b055c5718631e5c61528b28b12090cdea
123 commit 131a310eb913d107dd3c09a65d1651175898735d
125 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
129 test_format complex-subject
%s
<<'EOF'
130 commit f58db70b055c5718631e5c61528b28b12090cdea
131 Test printing of complex bodies
132 commit 131a310eb913d107dd3c09a65d1651175898735d
134 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
138 test_format complex-body
%b
<<'EOF'
139 commit f58db70b055c5718631e5c61528b28b12090cdea
140 This commit message is much longer than the others,
141 and it will be encoded in iso8859-1. We should therefore
142 include an iso8859 character: ¡bueno!
144 commit 131a310eb913d107dd3c09a65d1651175898735d
146 commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873