]> git.ipfire.org Git - thirdparty/git.git/blame - t/t6120-describe.sh
t6120: clean up state after breaking repo
[thirdparty/git.git] / t / t6120-describe.sh
CommitLineData
5312ab11
JH
1#!/bin/sh
2
3test_description='test describe
4
5 B
6 .--------------o----o----o----x
7 / / /
8 o----o----o----o----o----. /
9 \ A c /
10 .------------o---o---o
03e8b541 11 D,R e
5312ab11
JH
12'
13. ./test-lib.sh
14
15check_describe () {
16 expect="$1"
17 shift
3291fe40 18 R=$(git describe "$@" 2>err.actual)
be7bae0d 19 S=$?
3291fe40 20 cat err.actual >&3
5312ab11 21 test_expect_success "describe $*" '
be7bae0d 22 test $S = 0 &&
5312ab11
JH
23 case "$R" in
24 $expect) echo happy ;;
25 *) echo "Oops - $R is not $expect";
26 false ;;
27 esac
28 '
29}
30
31test_expect_success setup '
32
33 test_tick &&
3604e7c5 34 echo one >file && git add file && git commit -m initial &&
5be60078 35 one=$(git rev-parse HEAD) &&
5312ab11 36
024ab976
JH
37 git describe --always HEAD &&
38
5312ab11 39 test_tick &&
3604e7c5 40 echo two >file && git add file && git commit -m second &&
5be60078 41 two=$(git rev-parse HEAD) &&
5312ab11
JH
42
43 test_tick &&
3604e7c5 44 echo three >file && git add file && git commit -m third &&
5312ab11
JH
45
46 test_tick &&
3604e7c5 47 echo A >file && git add file && git commit -m A &&
5312ab11 48 test_tick &&
3604e7c5 49 git tag -a -m A A &&
5312ab11
JH
50
51 test_tick &&
3604e7c5 52 echo c >file && git add file && git commit -m c &&
5312ab11 53 test_tick &&
3604e7c5 54 git tag c &&
5312ab11
JH
55
56 git reset --hard $two &&
57 test_tick &&
3604e7c5 58 echo B >side && git add side && git commit -m B &&
5312ab11 59 test_tick &&
3604e7c5 60 git tag -a -m B B &&
5312ab11
JH
61
62 test_tick &&
3604e7c5 63 git merge -m Merged c &&
5be60078 64 merged=$(git rev-parse HEAD) &&
5312ab11
JH
65
66 git reset --hard $two &&
67 test_tick &&
3604e7c5 68 echo D >another && git add another && git commit -m D &&
5312ab11 69 test_tick &&
3604e7c5 70 git tag -a -m D D &&
03e8b541
SP
71 test_tick &&
72 git tag -a -m R R &&
5312ab11
JH
73
74 test_tick &&
75 echo DD >another && git commit -a -m another &&
76
77 test_tick &&
3604e7c5 78 git tag e &&
5312ab11
JH
79
80 test_tick &&
81 echo DDD >another && git commit -a -m "yet another" &&
82
83 test_tick &&
3604e7c5 84 git merge -m Merged $merged &&
5312ab11
JH
85
86 test_tick &&
5be60078 87 echo X >file && echo X >side && git add file side &&
3604e7c5 88 git commit -m x
5312ab11
JH
89
90'
91
92check_describe A-* HEAD
93check_describe A-* HEAD^
03e8b541 94check_describe R-* HEAD^^
5312ab11
JH
95check_describe A-* HEAD^^2
96check_describe B HEAD^^2^
03e8b541 97check_describe R-* HEAD^^^
5312ab11 98
7e425c4f
SP
99check_describe c-* --tags HEAD
100check_describe c-* --tags HEAD^
101check_describe e-* --tags HEAD^^
102check_describe c-* --tags HEAD^^2
5312ab11 103check_describe B --tags HEAD^^2^
7a0d61bb
TR
104check_describe e --tags HEAD^^^
105
106check_describe heads/master --all HEAD
107check_describe tags/c-* --all HEAD^
108check_describe tags/e --all HEAD^^^
5312ab11 109
518120e3 110check_describe B-0-* --long HEAD^^2^
4d4c3e1c 111check_describe A-3-* --long HEAD^^2
518120e3 112
e00dd1e9
MC
113check_describe c-7-* --tags
114check_describe e-3-* --first-parent --tags
115
2bd07065
SG
116test_expect_success 'describe --contains defaults to HEAD without commit-ish' '
117 echo "A^0" >expect &&
118 git checkout A &&
119 test_when_finished "git checkout -" &&
120 git describe --contains >actual &&
121 test_cmp expect actual
122'
123
81dc223d
SP
124: >err.expect
125check_describe A --all A^0
126test_expect_success 'no warning was displayed for A' '
127 test_cmp err.expect err.actual
128'
129
3291fe40
SP
130test_expect_success 'rename tag A to Q locally' '
131 mv .git/refs/tags/A .git/refs/tags/Q
132'
133cat - >err.expect <<EOF
134warning: tag 'A' is really 'Q' here
135EOF
136check_describe A-* HEAD
b3e1900a
JH
137test_expect_success 'warning was displayed for Q' '
138 test_i18ncmp err.expect err.actual
3291fe40
SP
139'
140test_expect_success 'rename tag Q back to A' '
141 mv .git/refs/tags/Q .git/refs/tags/A
142'
143
d1b28f51
SP
144test_expect_success 'pack tag refs' 'git pack-refs'
145check_describe A-* HEAD
146
9f67d2e8
JP
147check_describe "A-*[0-9a-f]" --dirty
148
149test_expect_success 'set-up dirty work tree' '
150 echo >>file
151'
152
153check_describe "A-*[0-9a-f]-dirty" --dirty
154
155check_describe "A-*[0-9a-f].mod" --dirty=.mod
156
157test_expect_success 'describe --dirty HEAD' '
158 test_must_fail git describe --dirty HEAD
159'
160
4ed19a3c
MD
161test_expect_success 'set-up matching pattern tests' '
162 git tag -a -m test-annotated test-annotated &&
163 echo >>file &&
164 test_tick &&
165 git commit -a -m "one more" &&
166 git tag test1-lightweight &&
167 echo >>file &&
168 test_tick &&
169 git commit -a -m "yet another" &&
170 git tag test2-lightweight &&
171 echo >>file &&
172 test_tick &&
173 git commit -a -m "even more"
174
175'
176
177check_describe "test-annotated-*" --match="test-*"
178
179check_describe "test1-lightweight-*" --tags --match="test1-*"
180
181check_describe "test2-lightweight-*" --tags --match="test2-*"
182
14d4642e
SP
183check_describe "test2-lightweight-*" --long --tags --match="test2-*" HEAD^
184
43f8080e
JK
185check_describe "test1-lightweight-*" --long --tags --match="test1-*" --match="test2-*" HEAD^
186
187check_describe "test2-lightweight-*" --long --tags --match="test1-*" --no-match --match="test2-*" HEAD^
188
118aa4ac
JH
189test_expect_success 'name-rev with exact tags' '
190 echo A >expect &&
191 tag_object=$(git rev-parse refs/tags/A) &&
192 git name-rev --tags --name-only $tag_object >actual &&
193 test_cmp expect actual &&
194
195 echo "A^0" >expect &&
196 tagged_commit=$(git rev-parse "refs/tags/A^0") &&
197 git name-rev --tags --name-only $tagged_commit >actual &&
198 test_cmp expect actual
199'
200
a24fa652
MG
201test_expect_success 'name-rev --all' '
202 >expect.unsorted &&
203 for rev in $(git rev-list --all)
204 do
205 git name-rev $rev >>expect.unsorted
206 done &&
207 sort <expect.unsorted >expect &&
208 git name-rev --all >actual.unsorted &&
209 sort <actual.unsorted >actual &&
210 test_cmp expect actual
211'
212
213test_expect_success 'name-rev --stdin' '
214 >expect.unsorted &&
215 for rev in $(git rev-list --all)
216 do
217 name=$(git name-rev --name-only $rev) &&
218 echo "$rev ($name)" >>expect.unsorted
219 done &&
220 sort <expect.unsorted >expect &&
221 git rev-list --all | git name-rev --stdin >actual.unsorted &&
222 sort <actual.unsorted >actual &&
223 test_cmp expect actual
224'
225
adfc1857
JH
226test_expect_success 'describe --contains with the exact tags' '
227 echo "A^0" >expect &&
228 tag_object=$(git rev-parse refs/tags/A) &&
229 git describe --contains $tag_object >actual &&
230 test_cmp expect actual &&
231
232 echo "A^0" >expect &&
233 tagged_commit=$(git rev-parse "refs/tags/A^0") &&
234 git describe --contains $tagged_commit >actual &&
235 test_cmp expect actual
236'
237
43f8080e
JK
238test_expect_success 'describe --contains and --match' '
239 echo "A^0" >expect &&
240 tagged_commit=$(git rev-parse "refs/tags/A^0") &&
241 test_must_fail git describe --contains --match="B" $tagged_commit &&
242 git describe --contains --match="B" --match="A" $tagged_commit >actual &&
243 test_cmp expect actual
244'
245
77d21f29
JK
246test_expect_success 'describe --exclude' '
247 echo "c~1" >expect &&
248 tagged_commit=$(git rev-parse "refs/tags/A^0") &&
249 test_must_fail git describe --contains --match="B" $tagged_commit &&
250 git describe --contains --match="?" --exclude="A" $tagged_commit >actual &&
251 test_cmp expect actual
252'
253
43f8080e
JK
254test_expect_success 'describe --contains and --no-match' '
255 echo "A^0" >expect &&
256 tagged_commit=$(git rev-parse "refs/tags/A^0") &&
257 git describe --contains --match="B" --no-match $tagged_commit >actual &&
258 test_cmp expect actual
259'
260
b0176ce6
SB
261test_expect_success 'setup and absorb a submodule' '
262 test_create_repo sub1 &&
263 test_commit -C sub1 initial &&
264 git submodule add ./sub1 &&
265 git submodule absorbgitdirs &&
266 git commit -a -m "add submodule" &&
267 git describe --dirty >expect &&
268 git describe --broken >out &&
269 test_cmp expect out
270'
271
64127575 272test_expect_success 'describe chokes on severely broken submodules' '
b0176ce6
SB
273 mv .git/modules/sub1/ .git/modules/sub_moved &&
274 test_must_fail git describe --dirty
275'
276test_expect_success 'describe ignoring a borken submodule' '
277 git describe --broken >out &&
ac9b2401 278 test_when_finished "mv .git/modules/sub_moved .git/modules/sub1" &&
b0176ce6
SB
279 grep broken out
280'
281
5312ab11 282test_done