3 test_description
='test describe'
5 # o---o-----o----o----o-------o----x
7 # \---o-------------o-'
12 # First parent of a merge commit is on the same line, second parent below.
20 test_expect_success
"describe $describe_opts" '
21 R=$(git describe $describe_opts 2>err.actual) &&
23 $expect) echo happy ;;
24 *) echo "Oops - $R is not $expect" &&
30 test_expect_success setup
'
33 echo one >file && git add file && git commit -m initial &&
34 one=$(git rev-parse HEAD) &&
36 git describe --always HEAD &&
39 echo two >file && git add file && git commit -m second &&
40 two=$(git rev-parse HEAD) &&
43 echo three >file && git add file && git commit -m third &&
46 echo A >file && git add file && git commit -m A &&
51 echo c >file && git add file && git commit -m c &&
55 git reset --hard $two &&
57 echo B >side && git add side && git commit -m B &&
62 git merge -m Merged c &&
63 merged=$(git rev-parse HEAD) &&
65 git reset --hard $two &&
67 echo D >another && git add another && git commit -m D &&
74 echo DD >another && git commit -a -m another &&
80 echo DDD >another && git commit -a -m "yet another" &&
83 git merge -m Merged $merged &&
86 echo X >file && echo X >side && git add file side &&
91 check_describe A-
* HEAD
92 check_describe A-
* HEAD^
93 check_describe R-
* HEAD^^
94 check_describe A-
* HEAD^^
2
95 check_describe B HEAD^^
2^
96 check_describe R-
* HEAD^^^
98 check_describe c-
* --tags HEAD
99 check_describe c-
* --tags HEAD^
100 check_describe e-
* --tags HEAD^^
101 check_describe c-
* --tags HEAD^^
2
102 check_describe B
--tags HEAD^^
2^
103 check_describe e
--tags HEAD^^^
105 check_describe
heads
/master
--all HEAD
106 check_describe tags
/c-
* --all HEAD^
107 check_describe tags
/e
--all HEAD^^^
109 check_describe B-0-
* --long HEAD^^
2^
110 check_describe A-3-
* --long HEAD^^
2
112 check_describe c-7-
* --tags
113 check_describe e-3-
* --first-parent --tags
115 test_expect_success
'describe --contains defaults to HEAD without commit-ish' '
116 echo "A^0" >expect &&
118 test_when_finished "git checkout -" &&
119 git describe --contains >actual &&
120 test_cmp expect actual
123 check_describe tags
/A
--all A^
0
124 test_expect_success
'no warning was displayed for A' '
125 test_must_be_empty err.actual
128 test_expect_success
'rename tag A to Q locally' '
129 mv .git/refs/tags/A .git/refs/tags/Q
131 cat - >err.expect
<<EOF
132 warning: tag 'A' is really 'Q' here
134 check_describe A-
* HEAD
135 test_expect_success
'warning was displayed for Q' '
136 test_i18ncmp err.expect err.actual
138 test_expect_success
'rename tag Q back to A' '
139 mv .git/refs/tags/Q .git/refs/tags/A
142 test_expect_success
'pack tag refs' 'git pack-refs'
143 check_describe A-
* HEAD
145 test_expect_success
'describe works from outside repo using --git-dir' '
146 git clone --bare "$TRASH_DIRECTORY" "$TRASH_DIRECTORY/bare" &&
147 git --git-dir "$TRASH_DIRECTORY/bare" describe >out &&
148 grep -E "^A-[1-9][0-9]?-g[0-9a-f]+$" out
151 check_describe
"A-*[0-9a-f]" --dirty
153 test_expect_success
'describe --dirty with --work-tree' '
155 cd "$TEST_DIRECTORY" &&
156 git --git-dir "$TRASH_DIRECTORY/.git" --work-tree "$TRASH_DIRECTORY" describe --dirty >"$TRASH_DIRECTORY/out"
158 grep -E "^A-[1-9][0-9]?-g[0-9a-f]+$" out
161 test_expect_success
'set-up dirty work tree' '
165 check_describe
"A-*[0-9a-f]-dirty" --dirty
167 test_expect_success
'describe --dirty with --work-tree (dirty)' '
169 cd "$TEST_DIRECTORY" &&
170 git --git-dir "$TRASH_DIRECTORY/.git" --work-tree "$TRASH_DIRECTORY" describe --dirty >"$TRASH_DIRECTORY/out"
172 grep -E "^A-[1-9][0-9]?-g[0-9a-f]+-dirty$" out
175 check_describe
"A-*[0-9a-f].mod" --dirty=.mod
177 test_expect_success
'describe --dirty=.mod with --work-tree (dirty)' '
179 cd "$TEST_DIRECTORY" &&
180 git --git-dir "$TRASH_DIRECTORY/.git" --work-tree "$TRASH_DIRECTORY" describe --dirty=.mod >"$TRASH_DIRECTORY/out"
182 grep -E "^A-[1-9][0-9]?-g[0-9a-f]+.mod$" out
185 test_expect_success
'describe --dirty HEAD' '
186 test_must_fail git describe --dirty HEAD
189 test_expect_success
'set-up matching pattern tests' '
190 git tag -a -m test-annotated test-annotated &&
193 git commit -a -m "one more" &&
194 git tag test1-lightweight &&
197 git commit -a -m "yet another" &&
198 git tag test2-lightweight &&
201 git commit -a -m "even more"
205 check_describe
"test-annotated-*" --match="test-*"
207 check_describe
"test1-lightweight-*" --tags --match="test1-*"
209 check_describe
"test2-lightweight-*" --tags --match="test2-*"
211 check_describe
"test2-lightweight-*" --long --tags --match="test2-*" HEAD^
213 check_describe
"test2-lightweight-*" --long --tags --match="test1-*" --match="test2-*" HEAD^
215 check_describe
"test2-lightweight-*" --long --tags --match="test1-*" --no-match --match="test2-*" HEAD^
217 check_describe
"test1-lightweight-*" --long --tags --match="test1-*" --match="test3-*" HEAD
219 check_describe
"test1-lightweight-*" --long --tags --match="test3-*" --match="test1-*" HEAD
221 test_expect_success
'set-up branches' '
222 git branch branch_A A &&
223 git branch branch_C c &&
224 git update-ref refs/remotes/origin/remote_branch_A "A^{commit}" &&
225 git update-ref refs/remotes/origin/remote_branch_C "c^{commit}" &&
226 git update-ref refs/original/original_branch_A test-annotated~2
229 check_describe
"heads/branch_A*" --all --match="branch_*" --exclude="branch_C" HEAD
231 check_describe
"remotes/origin/remote_branch_A*" --all --match="origin/remote_branch_*" --exclude="origin/remote_branch_C" HEAD
233 check_describe
"original/original_branch_A*" --all test-annotated~
1
235 test_expect_success
'--match does not work for other types' '
236 test_must_fail git describe --all --match="*original_branch_*" test-annotated~1
239 test_expect_success
'--exclude does not work for other types' '
240 R=$(git describe --all --exclude="any_pattern_even_not_matching" test-annotated~1) &&
242 *original_branch_A*) echo "fail: Found unknown reference $R with --exclude"
244 *) echo ok: Found some known type;;
248 test_expect_success
'name-rev with exact tags' '
250 tag_object=$(git rev-parse refs/tags/A) &&
251 git name-rev --tags --name-only $tag_object >actual &&
252 test_cmp expect actual &&
254 echo "A^0" >expect &&
255 tagged_commit=$(git rev-parse "refs/tags/A^0") &&
256 git name-rev --tags --name-only $tagged_commit >actual &&
257 test_cmp expect actual
260 test_expect_success
'name-rev --all' '
262 for rev in $(git rev-list --all)
264 git name-rev $rev >>expect.unsorted
266 sort <expect.unsorted >expect &&
267 git name-rev --all >actual.unsorted &&
268 sort <actual.unsorted >actual &&
269 test_cmp expect actual
272 test_expect_success
'name-rev --stdin' '
274 for rev in $(git rev-list --all)
276 name=$(git name-rev --name-only $rev) &&
277 echo "$rev ($name)" >>expect.unsorted
279 sort <expect.unsorted >expect &&
280 git rev-list --all | git name-rev --stdin >actual.unsorted &&
281 sort <actual.unsorted >actual &&
282 test_cmp expect actual
285 test_expect_success
'describe --contains with the exact tags' '
286 echo "A^0" >expect &&
287 tag_object=$(git rev-parse refs/tags/A) &&
288 git describe --contains $tag_object >actual &&
289 test_cmp expect actual &&
291 echo "A^0" >expect &&
292 tagged_commit=$(git rev-parse "refs/tags/A^0") &&
293 git describe --contains $tagged_commit >actual &&
294 test_cmp expect actual
297 test_expect_success
'describe --contains and --match' '
298 echo "A^0" >expect &&
299 tagged_commit=$(git rev-parse "refs/tags/A^0") &&
300 test_must_fail git describe --contains --match="B" $tagged_commit &&
301 git describe --contains --match="B" --match="A" $tagged_commit >actual &&
302 test_cmp expect actual
305 test_expect_success
'describe --exclude' '
306 echo "c~1" >expect &&
307 tagged_commit=$(git rev-parse "refs/tags/A^0") &&
308 test_must_fail git describe --contains --match="B" $tagged_commit &&
309 git describe --contains --match="?" --exclude="A" $tagged_commit >actual &&
310 test_cmp expect actual
313 test_expect_success
'describe --contains and --no-match' '
314 echo "A^0" >expect &&
315 tagged_commit=$(git rev-parse "refs/tags/A^0") &&
316 git describe --contains --match="B" --no-match $tagged_commit >actual &&
317 test_cmp expect actual
320 test_expect_success
'setup and absorb a submodule' '
321 test_create_repo sub1 &&
322 test_commit -C sub1 initial &&
323 git submodule add ./sub1 &&
324 git submodule absorbgitdirs &&
325 git commit -a -m "add submodule" &&
326 git describe --dirty >expect &&
327 git describe --broken >out &&
331 test_expect_success
'describe chokes on severely broken submodules' '
332 mv .git/modules/sub1/ .git/modules/sub_moved &&
333 test_must_fail git describe --dirty
336 test_expect_success
'describe ignoring a broken submodule' '
337 git describe --broken >out &&
341 test_expect_success
'describe with --work-tree ignoring a broken submodule' '
343 cd "$TEST_DIRECTORY" &&
344 git --git-dir "$TRASH_DIRECTORY/.git" --work-tree "$TRASH_DIRECTORY" describe --broken >"$TRASH_DIRECTORY/out"
346 test_when_finished "mv .git/modules/sub_moved .git/modules/sub1" &&
350 test_expect_success
'describe a blob at a directly tagged commit' '
351 echo "make it a unique blob" >file &&
352 git add file && git commit -m "content in file" &&
353 git tag -a -m "latest annotated tag" unique-file &&
354 git describe HEAD:file >actual &&
355 echo "unique-file:file" >expect &&
356 test_cmp expect actual
359 test_expect_success
'describe a blob with its first introduction' '
360 git commit --allow-empty -m "empty commit" &&
362 git commit -m "delete blob" &&
364 git commit --allow-empty -m "empty commit" &&
365 git describe HEAD:file >actual &&
366 echo "unique-file:file" >expect &&
367 test_cmp expect actual
370 test_expect_success
'describe directly tagged blob' '
371 git tag test-blob unique-file:file &&
372 git describe test-blob >actual &&
373 echo "unique-file:file" >expect &&
374 # suboptimal: we rather want to see "test-blob"
375 test_cmp expect actual
378 test_expect_success
'describe tag object' '
379 git tag test-blob-1 -a -m msg unique-file:file &&
380 test_must_fail git describe test-blob-1 2>actual &&
381 test_i18ngrep "fatal: test-blob-1 is neither a commit nor blob" actual
384 test_expect_success ULIMIT_STACK_SIZE
'name-rev works in a deep repo' '
386 while test $i -lt 8000
388 echo "commit refs/heads/master
389 committer A U Thor <author@example.com> $((1000000000 + $i * 100)) +0200
393 test $i = 1 && echo "from refs/heads/master^0"
395 done | git fast-import &&
396 git checkout master &&
397 git tag far-far-away HEAD^ &&
398 echo "HEAD~4000 tags/far-far-away~3999" >expect &&
399 git name-rev HEAD~4000 >actual &&
400 test_cmp expect actual &&
401 run_with_limited_stack git name-rev HEAD~4000 >actual &&
402 test_cmp expect actual
405 test_expect_success ULIMIT_STACK_SIZE
'describe works in a deep repo' '
406 git tag -f far-far-away HEAD~7999 &&
407 echo "far-far-away" >expect &&
408 git describe --tags --abbrev=0 HEAD~4000 >actual &&
409 test_cmp expect actual &&
410 run_with_limited_stack git describe --tags --abbrev=0 HEAD~4000 >actual &&
411 test_cmp expect actual
414 check_describe tags
/A
--all A
415 check_describe tags
/c
--all c
416 check_describe
heads
/branch_A
--all --match='branch_*' branch_A
418 test_expect_success
'describe complains about tree object' '
419 test_must_fail git describe HEAD^{tree}
422 test_expect_success
'describe complains about missing object' '
423 test_must_fail git describe $ZERO_OID
426 test_expect_success
'name-rev a rev shortly after epoch' '
427 test_when_finished "git checkout master" &&
429 git checkout --orphan no-timestamp-underflow &&
430 # Any date closer to epoch than the CUTOFF_DATE_SLOP constant
431 # in builtin/name-rev.c.
432 GIT_COMMITTER_DATE="@1234 +0000" \
433 git commit -m "committer date shortly after epoch" &&
434 old_commit_oid=$(git rev-parse HEAD) &&
436 echo "$old_commit_oid no-timestamp-underflow" >expect &&
437 git name-rev $old_commit_oid >actual &&
438 test_cmp expect actual
441 # A--------------master
448 test_expect_success
'name-rev covers all conditions while looking at parents' '
456 A=$(git rev-parse HEAD) &&
458 git checkout --detach &&
460 git commit -m B file &&
461 B=$(git rev-parse HEAD) &&
464 git merge --no-ff $B && # M1
467 git commit -m C file &&
470 git merge --no-ff HEAD@{1} && # M2
472 git checkout master &&
473 git merge --no-ff HEAD@{1} &&
475 echo "$B master^2^2~1^2" >expect &&
476 git name-rev $B >actual &&
478 test_cmp expect actual