blob: 975c4ea83a877b2dfaf6059c320c71c0282fee0c [file] [log] [blame]
Jeff Kingcd437122009-03-20 02:00:43 -04001#!/bin/sh
2
3test_description='Test reflog display routines'
Johannes Schindelin06d53142020-11-18 23:44:21 +00004GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
Johannes Schindelin334afbc2020-11-18 23:44:19 +00005export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
6
Jeff Kingcd437122009-03-20 02:00:43 -04007. ./test-lib.sh
8
9test_expect_success 'setup' '
10 echo content >file &&
11 git add file &&
12 test_tick &&
13 git commit -m one
14'
15
brian m. carlsond3438d12018-03-25 19:20:50 +000016commit=$(git rev-parse --short HEAD)
Jeff Kingcd437122009-03-20 02:00:43 -040017cat >expect <<'EOF'
18Reflog: HEAD@{0} (C O Mitter <committer@example.com>)
19Reflog message: commit (initial): one
20EOF
21test_expect_success 'log -g shows reflog headers' '
22 git log -g -1 >tmp &&
23 grep ^Reflog <tmp >actual &&
24 test_cmp expect actual
25'
26
brian m. carlsond3438d12018-03-25 19:20:50 +000027cat >expect <<EOF
28$commit HEAD@{0}: commit (initial): one
Jeff Kingcd437122009-03-20 02:00:43 -040029EOF
30test_expect_success 'oneline reflog format' '
31 git log -g -1 --oneline >actual &&
32 test_cmp expect actual
33'
34
Michael J Gruber21d26162011-04-01 11:20:32 +020035test_expect_success 'reflog default format' '
36 git reflog -1 >actual &&
37 test_cmp expect actual
38'
39
brian m. carlsond3438d12018-03-25 19:20:50 +000040cat >expect <<EOF
41commit $commit
Michael J Gruber21d26162011-04-01 11:20:32 +020042Reflog: HEAD@{0} (C O Mitter <committer@example.com>)
43Reflog message: commit (initial): one
44Author: A U Thor <author@example.com>
45
46 one
47EOF
Michael J Gruber4b56cf52011-04-01 11:20:33 +020048test_expect_success 'override reflog default format' '
Michael J Gruber21d26162011-04-01 11:20:32 +020049 git reflog --format=short -1 >actual &&
50 test_cmp expect actual
51'
52
Jeff Kingcd437122009-03-20 02:00:43 -040053cat >expect <<'EOF'
54Reflog: HEAD@{Thu Apr 7 15:13:13 2005 -0700} (C O Mitter <committer@example.com>)
55Reflog message: commit (initial): one
56EOF
57test_expect_success 'using @{now} syntax shows reflog date (multiline)' '
58 git log -g -1 HEAD@{now} >tmp &&
59 grep ^Reflog <tmp >actual &&
60 test_cmp expect actual
61'
62
brian m. carlsond3438d12018-03-25 19:20:50 +000063cat >expect <<EOF
64$commit HEAD@{Thu Apr 7 15:13:13 2005 -0700}: commit (initial): one
Jeff Kingcd437122009-03-20 02:00:43 -040065EOF
66test_expect_success 'using @{now} syntax shows reflog date (oneline)' '
67 git log -g -1 --oneline HEAD@{now} >actual &&
68 test_cmp expect actual
69'
70
71cat >expect <<'EOF'
Jeff King7904af12012-05-04 01:23:14 -040072HEAD@{Thu Apr 7 15:13:13 2005 -0700}
73EOF
74test_expect_success 'using @{now} syntax shows reflog date (format=%gd)' '
75 git log -g -1 --format=%gd HEAD@{now} >actual &&
76 test_cmp expect actual
77'
78
79cat >expect <<'EOF'
Junio C Hamano55ccf852012-05-07 14:11:32 -070080Reflog: HEAD@{Thu Apr 7 15:13:13 2005 -0700} (C O Mitter <committer@example.com>)
Jeff Kingcd437122009-03-20 02:00:43 -040081Reflog message: commit (initial): one
82EOF
83test_expect_success 'using --date= shows reflog date (multiline)' '
Junio C Hamano55ccf852012-05-07 14:11:32 -070084 git log -g -1 --date=default >tmp &&
Jeff Kingcd437122009-03-20 02:00:43 -040085 grep ^Reflog <tmp >actual &&
86 test_cmp expect actual
87'
88
brian m. carlsond3438d12018-03-25 19:20:50 +000089cat >expect <<EOF
90$commit HEAD@{Thu Apr 7 15:13:13 2005 -0700}: commit (initial): one
Jeff Kingcd437122009-03-20 02:00:43 -040091EOF
92test_expect_success 'using --date= shows reflog date (oneline)' '
Junio C Hamano55ccf852012-05-07 14:11:32 -070093 git log -g -1 --oneline --date=default >actual &&
Jeff Kingcd437122009-03-20 02:00:43 -040094 test_cmp expect actual
95'
96
Jeff King7904af12012-05-04 01:23:14 -040097cat >expect <<'EOF'
98HEAD@{1112911993 -0700}
99EOF
100test_expect_success 'using --date= shows reflog date (format=%gd)' '
101 git log -g -1 --format=%gd --date=raw >actual &&
102 test_cmp expect actual
103'
104
105cat >expect <<'EOF'
106Reflog: HEAD@{0} (C O Mitter <committer@example.com>)
107Reflog message: commit (initial): one
108EOF
109test_expect_success 'log.date does not invoke "--date" magic (multiline)' '
110 test_config log.date raw &&
111 git log -g -1 >tmp &&
112 grep ^Reflog <tmp >actual &&
113 test_cmp expect actual
114'
115
brian m. carlsond3438d12018-03-25 19:20:50 +0000116cat >expect <<EOF
117$commit HEAD@{0}: commit (initial): one
Jeff King7904af12012-05-04 01:23:14 -0400118EOF
119test_expect_success 'log.date does not invoke "--date" magic (oneline)' '
120 test_config log.date raw &&
121 git log -g -1 --oneline >actual &&
122 test_cmp expect actual
123'
124
125cat >expect <<'EOF'
126HEAD@{0}
127EOF
Jeff Kingf026c752012-05-04 01:25:18 -0400128test_expect_success 'log.date does not invoke "--date" magic (format=%gd)' '
Jeff King7904af12012-05-04 01:23:14 -0400129 test_config log.date raw &&
130 git log -g -1 --format=%gd >actual &&
131 test_cmp expect actual
132'
133
Jeff King794151e2012-05-04 01:27:25 -0400134cat >expect <<'EOF'
135HEAD@{0}
136EOF
137test_expect_success '--date magic does not override explicit @{0} syntax' '
138 git log -g -1 --format=%gd --date=raw HEAD@{0} >actual &&
139 test_cmp expect actual
140'
141
Dave Olszewski8fcaca32010-03-13 14:47:05 -0800142test_expect_success 'empty reflog file' '
143 git branch empty &&
David Turnerd0ab0582015-07-27 18:57:08 -0400144 git reflog expire --expire=all refs/heads/empty &&
Dave Olszewski8fcaca32010-03-13 14:47:05 -0800145
146 git log -g empty >actual &&
SZEDER Gábor1c5e94f2018-08-19 23:57:25 +0200147 test_must_be_empty actual
Dave Olszewski8fcaca32010-03-13 14:47:05 -0800148'
149
Thomas Rast838f9a12013-08-03 12:36:15 +0200150# This guards against the alternative of showing the diffs vs. the
151# reflog ancestor. The reflog used is designed to list the commits
152# more than once, so as to exercise the corresponding logic.
153test_expect_success 'git log -g -p shows diffs vs. parents' '
154 test_commit two &&
155 git branch flipflop &&
156 git update-ref refs/heads/flipflop -m flip1 HEAD^ &&
157 git update-ref refs/heads/flipflop -m flop1 HEAD &&
158 git update-ref refs/heads/flipflop -m flip2 HEAD^ &&
159 git log -g -p flipflop >reflog &&
160 grep -v ^Reflog reflog >actual &&
161 git log -1 -p HEAD^ >log.one &&
162 git log -1 -p HEAD >log.two &&
163 (
Eric Sunshinef2deabf2018-07-01 20:23:56 -0400164 cat log.one && echo &&
165 cat log.two && echo &&
166 cat log.one && echo &&
Thomas Rast838f9a12013-08-03 12:36:15 +0200167 cat log.two
168 ) >expect &&
169 test_cmp expect actual
170'
171
Jeff Kingcd437122009-03-20 02:00:43 -0400172test_done