3 test_description
='git log'
7 test_expect_success setup
'
12 git commit -m initial &&
17 git commit -m second &&
21 git commit -m third &&
26 git commit -m fourth &&
32 git commit -m fifth &&
40 printf "sixth\nfifth\nfourth\nthird\nsecond\ninitial" > expect
41 test_expect_success
'pretty' '
43 git log --pretty="format:%s" > actual &&
44 test_cmp expect actual
47 printf "sixth\nfifth\nfourth\nthird\nsecond\ninitial\n" > expect
48 test_expect_success
'pretty (tformat)' '
50 git log --pretty="tformat:%s" > actual &&
51 test_cmp expect actual
54 test_expect_success
'pretty (shortcut)' '
56 git log --pretty="%s" > actual &&
57 test_cmp expect actual
60 test_expect_success
'format' '
62 git log --format="%s" > actual &&
63 test_cmp expect actual
74 test_expect_success
'oneline' '
76 git log --oneline > actual &&
77 test_cmp expect actual
80 test_expect_success
'diff-filter=A' '
82 actual=$(git log --pretty="format:%s" --diff-filter=A HEAD) &&
83 expect=$(echo fifth ; echo fourth ; echo third ; echo initial) &&
84 test "$actual" = "$expect" || {
86 echo "Actual: $actual"
92 test_expect_success
'diff-filter=M' '
94 actual=$(git log --pretty="format:%s" --diff-filter=M HEAD) &&
95 expect=$(echo second) &&
96 test "$actual" = "$expect" || {
98 echo "Actual: $actual"
104 test_expect_success
'diff-filter=D' '
106 actual=$(git log --pretty="format:%s" --diff-filter=D HEAD) &&
107 expect=$(echo sixth ; echo third) &&
108 test "$actual" = "$expect" || {
110 echo "Actual: $actual"
116 test_expect_success
'diff-filter=R' '
118 actual=$(git log -M --pretty="format:%s" --diff-filter=R HEAD) &&
119 expect=$(echo third) &&
120 test "$actual" = "$expect" || {
122 echo "Actual: $actual"
128 test_expect_success
'diff-filter=C' '
130 actual=$(git log -C -C --pretty="format:%s" --diff-filter=C HEAD) &&
131 expect=$(echo fourth) &&
132 test "$actual" = "$expect" || {
134 echo "Actual: $actual"
140 test_expect_success
'git log --follow' '
142 actual=$(git log --follow --pretty="format:%s" ichi) &&
143 expect=$(echo third ; echo second ; echo initial) &&
144 test "$actual" = "$expect" || {
146 echo "Actual: $actual"
152 test_expect_success
'setup case sensitivity tests' '
156 git commit -a -m Second
159 test_expect_success
'log --grep' '
160 echo second >expect &&
161 git log -1 --pretty="tformat:%s" --grep=sec >actual &&
162 test_cmp expect actual
165 test_expect_success
'log -i --grep' '
166 echo Second >expect &&
167 git log -1 --pretty="tformat:%s" -i --grep=sec >actual &&
168 test_cmp expect actual
171 test_expect_success
'log --grep -i' '
172 echo Second >expect &&
173 git log -1 --pretty="tformat:%s" --grep=sec -i >actual &&
174 test_cmp expect actual
187 test_expect_success
'simple log --graph' '
188 git log --graph --pretty=tformat:%s >actual &&
189 test_cmp expect actual
192 test_expect_success
'set up merge history' '
193 git checkout -b side HEAD~4 &&
194 test_commit side-1 1 1 &&
195 test_commit side-2 2 2 &&
196 git checkout master &&
201 * Merge branch
'side'
215 test_expect_success
'log --graph with merge' '
216 git log --graph --date-order --pretty=tformat:%s |
217 sed "s/ *$//" >actual &&
218 test_cmp expect actual
224 | | Author
: A U Thor
<author@example.com
>
226 | | Merge branch
'side'
229 | | Author
: A U Thor
<author@example.com
>
233 |
* commit tags
/side-1
234 | | Author
: A U Thor
<author@example.com
>
239 | | Author
: A U Thor
<author@example.com
>
244 | | Author
: A U Thor
<author@example.com
>
249 | | Author
: A U Thor
<author@example.com
>
254 |
/ Author
: A U Thor
<author@example.com
>
258 * commit tags
/side-1~
1
259 | Author
: A U Thor
<author@example.com
>
263 * commit tags
/side-1~
2
264 | Author
: A U Thor
<author@example.com
>
268 * commit tags
/side-1~
3
269 Author
: A U Thor
<author@example.com
>
274 test_expect_success
'log --graph with full output' '
275 git log --graph --date-order --pretty=short |
276 git name-rev --name-only --stdin |
277 sed "s/Merge:.*/Merge: A B/;s/ *$//" >actual &&
278 test_cmp expect actual
281 test_expect_success
'set up more tangled history' '
282 git checkout -b tangle HEAD~6 &&
283 test_commit tangle-a tangle-a a &&
284 git merge master~3 &&
286 git checkout master &&
288 git checkout -b reach &&
290 git checkout master &&
291 git checkout -b octopus-a &&
292 test_commit octopus-a &&
293 git checkout master &&
294 git checkout -b octopus-b &&
295 test_commit octopus-b &&
296 git checkout master &&
297 test_commit seventh &&
298 git merge octopus-a octopus-b
303 * Merge branch
'reach'
307 *-. \ Merge branches
'octopus-a' and
'octopus-b'
317 * Merge branch
'tangle'
319 |
* Merge branch
'side' (early part
) into tangle
321 |
* \ Merge branch
'master' (early part
) into tangle
324 * | | | Merge branch
'side'
343 test_expect_success
'log --graph with merge' '
344 git log --graph --date-order --pretty=tformat:%s |
345 sed "s/ *$//" >actual &&
346 test_cmp expect actual