merge-recursive: demonstrate an incorrect conflict with submodule
[git/dscho.git] / t / t4202-log.sh
blob2230e606edea0c4f3dcd0b6b99298074d5341e4a
1 #!/bin/sh
3 test_description='git log'
5 . ./test-lib.sh
7 test_expect_success setup '
9 echo one >one &&
10 git add one &&
11 test_tick &&
12 git commit -m initial &&
14 echo ichi >one &&
15 git add one &&
16 test_tick &&
17 git commit -m second &&
19 git mv one ichi &&
20 test_tick &&
21 git commit -m third &&
23 cp ichi ein &&
24 git add ein &&
25 test_tick &&
26 git commit -m fourth &&
28 mkdir a &&
29 echo ni >a/two &&
30 git add a/two &&
31 test_tick &&
32 git commit -m fifth &&
34 git rm a/two &&
35 test_tick &&
36 git commit -m sixth
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
66 cat > expect << EOF
67 This is
68 the sixth
69 commit.
70 This is
71 the fifth
72 commit.
73 EOF
75 test_expect_success 'format %w(12,1,2)' '
77 git log -2 --format="%w(12,1,2)This is the %s commit." > actual &&
78 test_cmp expect actual
81 test_expect_success 'format %w(,1,2)' '
83 git log -2 --format="%w(,1,2)This is%nthe %s%ncommit." > actual &&
84 test_cmp expect actual
87 cat > expect << EOF
88 804a787 sixth
89 394ef78 fifth
90 5d31159 fourth
91 2fbe8c0 third
92 f7dab8e second
93 3a2fdcb initial
94 EOF
95 test_expect_success 'oneline' '
97 git log --oneline > actual &&
98 test_cmp expect actual
101 test_expect_success 'diff-filter=A' '
103 actual=$(git log --pretty="format:%s" --diff-filter=A HEAD) &&
104 expect=$(echo fifth ; echo fourth ; echo third ; echo initial) &&
105 test "$actual" = "$expect" || {
106 echo Oops
107 echo "Actual: $actual"
108 false
113 test_expect_success 'diff-filter=M' '
115 actual=$(git log --pretty="format:%s" --diff-filter=M HEAD) &&
116 expect=$(echo second) &&
117 test "$actual" = "$expect" || {
118 echo Oops
119 echo "Actual: $actual"
120 false
125 test_expect_success 'diff-filter=D' '
127 actual=$(git log --pretty="format:%s" --diff-filter=D HEAD) &&
128 expect=$(echo sixth ; echo third) &&
129 test "$actual" = "$expect" || {
130 echo Oops
131 echo "Actual: $actual"
132 false
137 test_expect_success 'diff-filter=R' '
139 actual=$(git log -M --pretty="format:%s" --diff-filter=R HEAD) &&
140 expect=$(echo third) &&
141 test "$actual" = "$expect" || {
142 echo Oops
143 echo "Actual: $actual"
144 false
149 test_expect_success 'diff-filter=C' '
151 actual=$(git log -C -C --pretty="format:%s" --diff-filter=C HEAD) &&
152 expect=$(echo fourth) &&
153 test "$actual" = "$expect" || {
154 echo Oops
155 echo "Actual: $actual"
156 false
161 test_expect_success 'git log --follow' '
163 actual=$(git log --follow --pretty="format:%s" ichi) &&
164 expect=$(echo third ; echo second ; echo initial) &&
165 test "$actual" = "$expect" || {
166 echo Oops
167 echo "Actual: $actual"
168 false
173 cat > expect << EOF
174 804a787 sixth
175 394ef78 fifth
176 5d31159 fourth
178 test_expect_success 'git log --no-walk <commits> sorts by commit time' '
179 git log --no-walk --oneline 5d31159 804a787 394ef78 > actual &&
180 test_cmp expect actual
183 cat > expect << EOF
184 5d31159 fourth
185 804a787 sixth
186 394ef78 fifth
188 test_expect_success 'git show <commits> leaves list of commits as given' '
189 git show --oneline -s 5d31159 804a787 394ef78 > actual &&
190 test_cmp expect actual
193 test_expect_success 'setup case sensitivity tests' '
194 echo case >one &&
195 test_tick &&
196 git add one
197 git commit -a -m Second
200 test_expect_success 'log --grep' '
201 echo second >expect &&
202 git log -1 --pretty="tformat:%s" --grep=sec >actual &&
203 test_cmp expect actual
206 test_expect_success 'log -i --grep' '
207 echo Second >expect &&
208 git log -1 --pretty="tformat:%s" -i --grep=sec >actual &&
209 test_cmp expect actual
212 test_expect_success 'log --grep -i' '
213 echo Second >expect &&
214 git log -1 --pretty="tformat:%s" --grep=sec -i >actual &&
215 test_cmp expect actual
218 cat > expect <<EOF
219 * Second
220 * sixth
221 * fifth
222 * fourth
223 * third
224 * second
225 * initial
228 test_expect_success 'simple log --graph' '
229 git log --graph --pretty=tformat:%s >actual &&
230 test_cmp expect actual
233 test_expect_success 'set up merge history' '
234 git checkout -b side HEAD~4 &&
235 test_commit side-1 1 1 &&
236 test_commit side-2 2 2 &&
237 git checkout master &&
238 git merge side
241 cat > expect <<\EOF
242 * Merge branch 'side'
244 | * side-2
245 | * side-1
246 * | Second
247 * | sixth
248 * | fifth
249 * | fourth
251 * third
252 * second
253 * initial
256 test_expect_success 'log --graph with merge' '
257 git log --graph --date-order --pretty=tformat:%s |
258 sed "s/ *\$//" >actual &&
259 test_cmp expect actual
262 cat > expect <<\EOF
263 * commit master
264 |\ Merge: A B
265 | | Author: A U Thor <author@example.com>
267 | | Merge branch 'side'
269 | * commit side
270 | | Author: A U Thor <author@example.com>
272 | | side-2
274 | * commit tags/side-1
275 | | Author: A U Thor <author@example.com>
277 | | side-1
279 * | commit master~1
280 | | Author: A U Thor <author@example.com>
282 | | Second
284 * | commit master~2
285 | | Author: A U Thor <author@example.com>
287 | | sixth
289 * | commit master~3
290 | | Author: A U Thor <author@example.com>
292 | | fifth
294 * | commit master~4
295 |/ Author: A U Thor <author@example.com>
297 | fourth
299 * commit tags/side-1~1
300 | Author: A U Thor <author@example.com>
302 | third
304 * commit tags/side-1~2
305 | Author: A U Thor <author@example.com>
307 | second
309 * commit tags/side-1~3
310 Author: A U Thor <author@example.com>
312 initial
315 test_expect_success 'log --graph with full output' '
316 git log --graph --date-order --pretty=short |
317 git name-rev --name-only --stdin |
318 sed "s/Merge:.*/Merge: A B/;s/ *\$//" >actual &&
319 test_cmp expect actual
322 test_expect_success 'set up more tangled history' '
323 git checkout -b tangle HEAD~6 &&
324 test_commit tangle-a tangle-a a &&
325 git merge master~3 &&
326 git merge side~1 &&
327 git checkout master &&
328 git merge tangle &&
329 git checkout -b reach &&
330 test_commit reach &&
331 git checkout master &&
332 git checkout -b octopus-a &&
333 test_commit octopus-a &&
334 git checkout master &&
335 git checkout -b octopus-b &&
336 test_commit octopus-b &&
337 git checkout master &&
338 test_commit seventh &&
339 git merge octopus-a octopus-b
340 git merge reach
343 cat > expect <<\EOF
344 * Merge commit 'reach'
348 *-. \ Merge commit 'octopus-a'; commit 'octopus-b'
349 |\ \ \
350 * | | | seventh
351 | | * | octopus-b
352 | |/ /
353 |/| |
354 | * | octopus-a
355 |/ /
356 | * reach
358 * Merge branch 'tangle'
360 | * Merge branch 'side' (early part) into tangle
361 | |\
362 | * \ Merge branch 'master' (early part) into tangle
363 | |\ \
364 | * | | tangle-a
365 * | | | Merge branch 'side'
366 |\ \ \ \
367 | * | | | side-2
368 | | |_|/
369 | |/| |
370 | * | | side-1
371 * | | | Second
372 * | | | sixth
373 | |_|/
374 |/| |
375 * | | fifth
376 * | | fourth
377 |/ /
378 * | third
380 * second
381 * initial
384 test_expect_success 'log --graph with merge' '
385 git log --graph --date-order --pretty=tformat:%s |
386 sed "s/ *\$//" >actual &&
387 test_cmp expect actual
390 test_expect_success 'log.decorate configuration' '
391 git config --unset-all log.decorate || :
393 git log --oneline >expect.none &&
394 git log --oneline --decorate >expect.short &&
395 git log --oneline --decorate=full >expect.full &&
397 echo "[log] decorate" >>.git/config &&
398 git log --oneline >actual &&
399 test_cmp expect.short actual &&
401 git config --unset-all log.decorate &&
402 git config log.decorate true &&
403 git log --oneline >actual &&
404 test_cmp expect.short actual &&
405 git log --oneline --decorate=full >actual &&
406 test_cmp expect.full actual &&
407 git log --oneline --decorate=no >actual &&
408 test_cmp expect.none actual &&
410 git config --unset-all log.decorate &&
411 git config log.decorate no &&
412 git log --oneline >actual &&
413 test_cmp expect.none actual &&
414 git log --oneline --decorate >actual &&
415 test_cmp expect.short actual &&
416 git log --oneline --decorate=full >actual &&
417 test_cmp expect.full actual &&
419 git config --unset-all log.decorate &&
420 git config log.decorate short &&
421 git log --oneline >actual &&
422 test_cmp expect.short actual &&
423 git log --oneline --no-decorate >actual &&
424 test_cmp expect.none actual &&
425 git log --oneline --decorate=full >actual &&
426 test_cmp expect.full actual &&
428 git config --unset-all log.decorate &&
429 git config log.decorate full &&
430 git log --oneline >actual &&
431 test_cmp expect.full actual &&
432 git log --oneline --no-decorate >actual &&
433 test_cmp expect.none actual &&
434 git log --oneline --decorate >actual &&
435 test_cmp expect.short actual
439 test_done