3 test_description
='test describe
6 .--------------o----o----o----x
8 o----o----o----o----o----. /
10 .------------o---o---o
18 R
=$
(git describe
"$@" 2>err.actual
)
21 test_expect_success
"describe $*" '
24 $expect) echo happy ;;
25 *) echo "Oops - $R is not $expect";
31 test_expect_success setup
'
34 echo one >file && git add file && git commit -m initial &&
35 one=$(git rev-parse HEAD) &&
37 git describe --always HEAD &&
40 echo two >file && git add file && git commit -m second &&
41 two=$(git rev-parse HEAD) &&
44 echo three >file && git add file && git commit -m third &&
47 echo A >file && git add file && git commit -m A &&
52 echo c >file && git add file && git commit -m c &&
56 git reset --hard $two &&
58 echo B >side && git add side && git commit -m B &&
63 git merge -m Merged c &&
64 merged=$(git rev-parse HEAD) &&
66 git reset --hard $two &&
68 echo D >another && git add another && git commit -m D &&
73 echo DD >another && git commit -a -m another &&
79 echo DDD >another && git commit -a -m "yet another" &&
82 git merge -m Merged $merged &&
85 echo X >file && echo X >side && git add file side &&
90 check_describe A-
* HEAD
91 check_describe A-
* HEAD^
92 check_describe D-
* HEAD^^
93 check_describe A-
* HEAD^^
2
94 check_describe B HEAD^^
2^
96 check_describe c-
* --tags HEAD
97 check_describe c-
* --tags HEAD^
98 check_describe e-
* --tags HEAD^^
99 check_describe c-
* --tags HEAD^^
2
100 check_describe B
--tags HEAD^^
2^
102 check_describe B-0-
* --long HEAD^^
2^
103 check_describe A-3-
* --long HEAD^^
2
106 check_describe A
--all A^
0
107 test_expect_success
'no warning was displayed for A' '
108 test_cmp err.expect err.actual
111 test_expect_success
'rename tag A to Q locally' '
112 mv .git/refs/tags/A .git/refs/tags/Q
114 cat - >err.expect
<<EOF
115 warning: tag 'A' is really 'Q' here
117 check_describe A-
* HEAD
118 test_expect_success
'warning was displayed for Q' '
119 test_cmp err.expect err.actual
121 test_expect_success
'rename tag Q back to A' '
122 mv .git/refs/tags/Q .git/refs/tags/A
125 test_expect_success
'pack tag refs' 'git pack-refs'
126 check_describe A-
* HEAD
128 test_expect_success
'set-up matching pattern tests' '
129 git tag -a -m test-annotated test-annotated &&
132 git commit -a -m "one more" &&
133 git tag test1-lightweight &&
136 git commit -a -m "yet another" &&
137 git tag test2-lightweight &&
140 git commit -a -m "even more"
144 check_describe
"test-annotated-*" --match="test-*"
146 check_describe
"test1-lightweight-*" --tags --match="test1-*"
148 check_describe
"test2-lightweight-*" --tags --match="test2-*"
150 check_describe
"test2-lightweight-*" --long --tags --match="test2-*" HEAD^