]> git.ipfire.org Git - thirdparty/git.git/blame - t/t7004-tag.sh
Use prerequisites to skip tests that need unzip
[thirdparty/git.git] / t / t7004-tag.sh
CommitLineData
ef5a6fb5
CR
1#!/bin/sh
2#
3# Copyright (c) 2007 Carlos Rica
4#
5
d592b315 6test_description='git tag
ef5a6fb5 7
62e09ce9 8Tests for operations with tags.'
ef5a6fb5
CR
9
10. ./test-lib.sh
11
12# creating and listing lightweight tags:
13
14tag_exists () {
15 git show-ref --quiet --verify refs/tags/"$1"
16}
17
18# todo: git tag -l now returns always zero, when fixed, change this test
62e09ce9
CR
19test_expect_success 'listing all tags in an empty tree should succeed' '
20 git tag -l &&
21 git tag
22'
ef5a6fb5 23
62e09ce9 24test_expect_success 'listing all tags in an empty tree should output nothing' '
d592b315
NS
25 test `git tag -l | wc -l` -eq 0 &&
26 test `git tag | wc -l` -eq 0
62e09ce9 27'
ef5a6fb5 28
41ac414e
JH
29test_expect_success 'looking for a tag in an empty tree should fail' \
30 '! (tag_exists mytag)'
ef5a6fb5
CR
31
32test_expect_success 'creating a tag in an empty tree should fail' '
d592b315 33 test_must_fail git tag mynotag &&
ef5a6fb5
CR
34 ! tag_exists mynotag
35'
36
37test_expect_success 'creating a tag for HEAD in an empty tree should fail' '
d592b315 38 test_must_fail git tag mytaghead HEAD &&
ef5a6fb5
CR
39 ! tag_exists mytaghead
40'
41
42test_expect_success 'creating a tag for an unknown revision should fail' '
d592b315 43 test_must_fail git tag mytagnorev aaaaaaaaaaa &&
ef5a6fb5
CR
44 ! tag_exists mytagnorev
45'
46
47# commit used in the tests, test_tick is also called here to freeze the date:
48test_expect_success 'creating a tag using default HEAD should succeed' '
49 test_tick &&
50 echo foo >foo &&
51 git add foo &&
52 git commit -m Foo &&
53 git tag mytag
54'
55
62e09ce9 56test_expect_success 'listing all tags if one exists should succeed' '
d592b315
NS
57 git tag -l &&
58 git tag
62e09ce9 59'
ef5a6fb5 60
62e09ce9 61test_expect_success 'listing all tags if one exists should output that tag' '
d592b315
NS
62 test `git tag -l` = mytag &&
63 test `git tag` = mytag
62e09ce9 64'
ef5a6fb5
CR
65
66# pattern matching:
67
68test_expect_success 'listing a tag using a matching pattern should succeed' \
d592b315 69 'git tag -l mytag'
ef5a6fb5
CR
70
71test_expect_success \
72 'listing a tag using a matching pattern should output that tag' \
d592b315 73 'test `git tag -l mytag` = mytag'
ef5a6fb5
CR
74
75# todo: git tag -l now returns always zero, when fixed, change this test
76test_expect_success \
77 'listing tags using a non-matching pattern should suceed' \
d592b315 78 'git tag -l xxx'
ef5a6fb5
CR
79
80test_expect_success \
81 'listing tags using a non-matching pattern should output nothing' \
d592b315 82 'test `git tag -l xxx | wc -l` -eq 0'
ef5a6fb5
CR
83
84# special cases for creating tags:
85
41ac414e 86test_expect_success \
ef5a6fb5 87 'trying to create a tag with the name of one existing should fail' \
d492b31c 88 'test_must_fail git tag mytag'
ef5a6fb5
CR
89
90test_expect_success \
91 'trying to create a tag with a non-valid name should fail' '
d592b315 92 test `git tag -l | wc -l` -eq 1 &&
d492b31c
SB
93 test_must_fail git tag "" &&
94 test_must_fail git tag .othertag &&
95 test_must_fail git tag "other tag" &&
96 test_must_fail git tag "othertag^" &&
97 test_must_fail git tag "other~tag" &&
d592b315 98 test `git tag -l | wc -l` -eq 1
ef5a6fb5
CR
99'
100
101test_expect_success 'creating a tag using HEAD directly should succeed' '
102 git tag myhead HEAD &&
103 tag_exists myhead
104'
105
106# deleting tags:
107
108test_expect_success 'trying to delete an unknown tag should fail' '
109 ! tag_exists unknown-tag &&
d592b315 110 test_must_fail git tag -d unknown-tag
ef5a6fb5
CR
111'
112
113cat >expect <<EOF
114myhead
115mytag
116EOF
117test_expect_success \
118 'trying to delete tags without params should succeed and do nothing' '
3af82863 119 git tag -l > actual && test_cmp expect actual &&
d592b315 120 git tag -d &&
3af82863 121 git tag -l > actual && test_cmp expect actual
ef5a6fb5
CR
122'
123
124test_expect_success \
125 'deleting two existing tags in one command should succeed' '
126 tag_exists mytag &&
127 tag_exists myhead &&
d592b315 128 git tag -d mytag myhead &&
ef5a6fb5
CR
129 ! tag_exists mytag &&
130 ! tag_exists myhead
131'
132
133test_expect_success \
134 'creating a tag with the name of another deleted one should succeed' '
135 ! tag_exists mytag &&
d592b315 136 git tag mytag &&
ef5a6fb5
CR
137 tag_exists mytag
138'
139
140test_expect_success \
141 'trying to delete two tags, existing and not, should fail in the 2nd' '
142 tag_exists mytag &&
143 ! tag_exists myhead &&
d592b315 144 test_must_fail git tag -d mytag anothertag &&
ef5a6fb5
CR
145 ! tag_exists mytag &&
146 ! tag_exists myhead
147'
148
41ac414e 149test_expect_success 'trying to delete an already deleted tag should fail' \
d592b315 150 'test_must_fail git tag -d mytag'
ef5a6fb5
CR
151
152# listing various tags with pattern matching:
153
154cat >expect <<EOF
155a1
156aa1
157cba
158t210
159t211
160v0.2.1
161v1.0
162v1.0.1
163v1.1.3
164EOF
165test_expect_success 'listing all tags should print them ordered' '
166 git tag v1.0.1 &&
167 git tag t211 &&
168 git tag aa1 &&
169 git tag v0.2.1 &&
170 git tag v1.1.3 &&
171 git tag cba &&
172 git tag a1 &&
173 git tag v1.0 &&
174 git tag t210 &&
5206d130 175 git tag -l > actual &&
3af82863 176 test_cmp expect actual &&
62e09ce9 177 git tag > actual &&
3af82863 178 test_cmp expect actual
ef5a6fb5
CR
179'
180
181cat >expect <<EOF
182a1
183aa1
184cba
185EOF
186test_expect_success \
187 'listing tags with substring as pattern must print those matching' '
0aaaef7b
JS
188 rm *a* &&
189 git tag -l "*a*" > current &&
190 test_cmp expect current
ef5a6fb5
CR
191'
192
193cat >expect <<EOF
194v0.2.1
195v1.0.1
ef5a6fb5
CR
196EOF
197test_expect_success \
18e32b5b 198 'listing tags with a suffix as pattern must print those matching' '
d592b315 199 git tag -l "*.1" > actual &&
3af82863 200 test_cmp expect actual
ef5a6fb5
CR
201'
202
203cat >expect <<EOF
204t210
205t211
206EOF
207test_expect_success \
18e32b5b 208 'listing tags with a prefix as pattern must print those matching' '
d592b315 209 git tag -l "t21*" > actual &&
3af82863 210 test_cmp expect actual
ef5a6fb5
CR
211'
212
213cat >expect <<EOF
214a1
ef5a6fb5
CR
215EOF
216test_expect_success \
18e32b5b 217 'listing tags using a name as pattern must print that one matching' '
d592b315 218 git tag -l a1 > actual &&
3af82863 219 test_cmp expect actual
ef5a6fb5
CR
220'
221
222cat >expect <<EOF
223v1.0
ef5a6fb5
CR
224EOF
225test_expect_success \
18e32b5b 226 'listing tags using a name as pattern must print that one matching' '
d592b315 227 git tag -l v1.0 > actual &&
3af82863 228 test_cmp expect actual
ef5a6fb5
CR
229'
230
231cat >expect <<EOF
18e32b5b 232v1.0.1
ef5a6fb5
CR
233v1.1.3
234EOF
235test_expect_success \
236 'listing tags with ? in the pattern should print those matching' '
d592b315 237 git tag -l "v1.?.?" > actual &&
3af82863 238 test_cmp expect actual
ef5a6fb5
CR
239'
240
241>expect
242test_expect_success \
243 'listing tags using v.* should print nothing because none have v.' '
d592b315 244 git tag -l "v.*" > actual &&
3af82863 245 test_cmp expect actual
ef5a6fb5
CR
246'
247
248cat >expect <<EOF
249v0.2.1
250v1.0
251v1.0.1
252v1.1.3
253EOF
254test_expect_success \
255 'listing tags using v* should print only those having v' '
d592b315 256 git tag -l "v*" > actual &&
3af82863 257 test_cmp expect actual
ef5a6fb5
CR
258'
259
260# creating and verifying lightweight tags:
261
262test_expect_success \
263 'a non-annotated tag created without parameters should point to HEAD' '
d592b315 264 git tag non-annotated-tag &&
5be60078
JH
265 test $(git cat-file -t non-annotated-tag) = commit &&
266 test $(git rev-parse non-annotated-tag) = $(git rev-parse HEAD)
ef5a6fb5
CR
267'
268
41ac414e 269test_expect_success 'trying to verify an unknown tag should fail' \
d592b315 270 'test_must_fail git tag -v unknown-tag'
ef5a6fb5 271
41ac414e 272test_expect_success \
ef5a6fb5 273 'trying to verify a non-annotated and non-signed tag should fail' \
d592b315 274 'test_must_fail git tag -v non-annotated-tag'
ef5a6fb5 275
41ac414e 276test_expect_success \
62e09ce9 277 'trying to verify many non-annotated or unknown tags, should fail' \
d592b315 278 'test_must_fail git tag -v unknown-tag1 non-annotated-tag unknown-tag2'
62e09ce9 279
ef5a6fb5
CR
280# creating annotated tags:
281
282get_tag_msg () {
283 git cat-file tag "$1" | sed -e "/BEGIN PGP/q"
284}
285
286# run test_tick before committing always gives the time in that timezone
287get_tag_header () {
288cat <<EOF
289object $2
290type $3
291tag $1
292tagger C O Mitter <committer@example.com> $4 -0700
293
294EOF
295}
296
297commit=$(git rev-parse HEAD)
298time=$test_tick
299
300get_tag_header annotated-tag $commit commit $time >expect
301echo "A message" >>expect
302test_expect_success \
303 'creating an annotated tag with -m message should succeed' '
d592b315 304 git tag -m "A message" annotated-tag &&
ef5a6fb5 305 get_tag_msg annotated-tag >actual &&
3af82863 306 test_cmp expect actual
ef5a6fb5
CR
307'
308
309cat >msgfile <<EOF
310Another message
311in a file.
312EOF
313get_tag_header file-annotated-tag $commit commit $time >expect
314cat msgfile >>expect
315test_expect_success \
316 'creating an annotated tag with -F messagefile should succeed' '
d592b315 317 git tag -F msgfile file-annotated-tag &&
ef5a6fb5 318 get_tag_msg file-annotated-tag >actual &&
3af82863 319 test_cmp expect actual
ef5a6fb5
CR
320'
321
62e09ce9
CR
322cat >inputmsg <<EOF
323A message from the
324standard input
325EOF
326get_tag_header stdin-annotated-tag $commit commit $time >expect
327cat inputmsg >>expect
328test_expect_success 'creating an annotated tag with -F - should succeed' '
d592b315 329 git tag -F - stdin-annotated-tag <inputmsg &&
62e09ce9 330 get_tag_msg stdin-annotated-tag >actual &&
3af82863 331 test_cmp expect actual
62e09ce9
CR
332'
333
e317cfaf
CR
334test_expect_success \
335 'trying to create a tag with a non-existing -F file should fail' '
336 ! test -f nonexistingfile &&
337 ! tag_exists notag &&
d592b315 338 test_must_fail git tag -F nonexistingfile notag &&
e317cfaf
CR
339 ! tag_exists notag
340'
341
342test_expect_success \
39686585 343 'trying to create tags giving both -m or -F options should fail' '
e317cfaf
CR
344 echo "message file 1" >msgfile1 &&
345 echo "message file 2" >msgfile2 &&
346 ! tag_exists msgtag &&
d592b315 347 test_must_fail git tag -m "message 1" -F msgfile1 msgtag &&
e317cfaf 348 ! tag_exists msgtag &&
d592b315 349 test_must_fail git tag -F msgfile1 -m "message 1" msgtag &&
e317cfaf 350 ! tag_exists msgtag &&
d592b315 351 test_must_fail git tag -m "message 1" -F msgfile1 \
d492b31c 352 -m "message 2" msgtag &&
e317cfaf
CR
353 ! tag_exists msgtag
354'
355
ef5a6fb5
CR
356# blank and empty messages:
357
358get_tag_header empty-annotated-tag $commit commit $time >expect
359test_expect_success \
360 'creating a tag with an empty -m message should succeed' '
d592b315 361 git tag -m "" empty-annotated-tag &&
ef5a6fb5 362 get_tag_msg empty-annotated-tag >actual &&
3af82863 363 test_cmp expect actual
ef5a6fb5
CR
364'
365
366>emptyfile
367get_tag_header emptyfile-annotated-tag $commit commit $time >expect
368test_expect_success \
369 'creating a tag with an empty -F messagefile should succeed' '
d592b315 370 git tag -F emptyfile emptyfile-annotated-tag &&
ef5a6fb5 371 get_tag_msg emptyfile-annotated-tag >actual &&
3af82863 372 test_cmp expect actual
ef5a6fb5
CR
373'
374
375printf '\n\n \n\t\nLeading blank lines\n' >blanksfile
376printf '\n\t \t \nRepeated blank lines\n' >>blanksfile
377printf '\n\n\nTrailing spaces \t \n' >>blanksfile
378printf '\nTrailing blank lines\n\n\t \n\n' >>blanksfile
379get_tag_header blanks-annotated-tag $commit commit $time >expect
380cat >>expect <<EOF
381Leading blank lines
382
383Repeated blank lines
384
385Trailing spaces
386
387Trailing blank lines
388EOF
389test_expect_success \
390 'extra blanks in the message for an annotated tag should be removed' '
d592b315 391 git tag -F blanksfile blanks-annotated-tag &&
ef5a6fb5 392 get_tag_msg blanks-annotated-tag >actual &&
3af82863 393 test_cmp expect actual
ef5a6fb5
CR
394'
395
396get_tag_header blank-annotated-tag $commit commit $time >expect
397test_expect_success \
398 'creating a tag with blank -m message with spaces should succeed' '
d592b315 399 git tag -m " " blank-annotated-tag &&
ef5a6fb5 400 get_tag_msg blank-annotated-tag >actual &&
3af82863 401 test_cmp expect actual
ef5a6fb5
CR
402'
403
404echo ' ' >blankfile
405echo '' >>blankfile
406echo ' ' >>blankfile
407get_tag_header blankfile-annotated-tag $commit commit $time >expect
408test_expect_success \
409 'creating a tag with blank -F messagefile with spaces should succeed' '
d592b315 410 git tag -F blankfile blankfile-annotated-tag &&
ef5a6fb5 411 get_tag_msg blankfile-annotated-tag >actual &&
3af82863 412 test_cmp expect actual
ef5a6fb5
CR
413'
414
415printf ' ' >blanknonlfile
416get_tag_header blanknonlfile-annotated-tag $commit commit $time >expect
417test_expect_success \
418 'creating a tag with -F file of spaces and no newline should succeed' '
d592b315 419 git tag -F blanknonlfile blanknonlfile-annotated-tag &&
ef5a6fb5 420 get_tag_msg blanknonlfile-annotated-tag >actual &&
3af82863 421 test_cmp expect actual
ef5a6fb5
CR
422'
423
424# messages with commented lines:
425
426cat >commentsfile <<EOF
427# A comment
428
429############
430The message.
431############
432One line.
433
434
435# commented lines
436# commented lines
437
438Another line.
439# comments
440
441Last line.
442EOF
443get_tag_header comments-annotated-tag $commit commit $time >expect
444cat >>expect <<EOF
445The message.
446One line.
447
448Another line.
449
450Last line.
451EOF
452test_expect_success \
453 'creating a tag using a -F messagefile with #comments should succeed' '
d592b315 454 git tag -F commentsfile comments-annotated-tag &&
ef5a6fb5 455 get_tag_msg comments-annotated-tag >actual &&
3af82863 456 test_cmp expect actual
ef5a6fb5
CR
457'
458
459get_tag_header comment-annotated-tag $commit commit $time >expect
460test_expect_success \
461 'creating a tag with a #comment in the -m message should succeed' '
d592b315 462 git tag -m "#comment" comment-annotated-tag &&
ef5a6fb5 463 get_tag_msg comment-annotated-tag >actual &&
3af82863 464 test_cmp expect actual
ef5a6fb5
CR
465'
466
467echo '#comment' >commentfile
468echo '' >>commentfile
469echo '####' >>commentfile
470get_tag_header commentfile-annotated-tag $commit commit $time >expect
471test_expect_success \
472 'creating a tag with #comments in the -F messagefile should succeed' '
d592b315 473 git tag -F commentfile commentfile-annotated-tag &&
ef5a6fb5 474 get_tag_msg commentfile-annotated-tag >actual &&
3af82863 475 test_cmp expect actual
ef5a6fb5
CR
476'
477
478printf '#comment' >commentnonlfile
479get_tag_header commentnonlfile-annotated-tag $commit commit $time >expect
480test_expect_success \
481 'creating a tag with a file of #comment and no newline should succeed' '
d592b315 482 git tag -F commentnonlfile commentnonlfile-annotated-tag &&
ef5a6fb5 483 get_tag_msg commentnonlfile-annotated-tag >actual &&
3af82863 484 test_cmp expect actual
ef5a6fb5
CR
485'
486
5206d130
CR
487# listing messages for annotated non-signed tags:
488
489test_expect_success \
490 'listing the one-line message of a non-signed tag should succeed' '
d592b315 491 git tag -m "A msg" tag-one-line &&
5206d130
CR
492
493 echo "tag-one-line" >expect &&
d592b315 494 git tag -l | grep "^tag-one-line" >actual &&
3af82863 495 test_cmp expect actual &&
d592b315 496 git tag -n0 -l | grep "^tag-one-line" >actual &&
3af82863 497 test_cmp expect actual &&
d592b315 498 git tag -n0 -l tag-one-line >actual &&
3af82863 499 test_cmp expect actual &&
5206d130
CR
500
501 echo "tag-one-line A msg" >expect &&
d592b315 502 git tag -n1 -l | grep "^tag-one-line" >actual &&
3af82863 503 test_cmp expect actual &&
d592b315 504 git tag -n -l | grep "^tag-one-line" >actual &&
3af82863 505 test_cmp expect actual &&
d592b315 506 git tag -n1 -l tag-one-line >actual &&
3af82863 507 test_cmp expect actual &&
d592b315 508 git tag -n2 -l tag-one-line >actual &&
3af82863 509 test_cmp expect actual &&
d592b315 510 git tag -n999 -l tag-one-line >actual &&
3af82863 511 test_cmp expect actual
5206d130
CR
512'
513
514test_expect_success \
515 'listing the zero-lines message of a non-signed tag should succeed' '
d592b315 516 git tag -m "" tag-zero-lines &&
5206d130
CR
517
518 echo "tag-zero-lines" >expect &&
d592b315 519 git tag -l | grep "^tag-zero-lines" >actual &&
3af82863 520 test_cmp expect actual &&
d592b315 521 git tag -n0 -l | grep "^tag-zero-lines" >actual &&
3af82863 522 test_cmp expect actual &&
d592b315 523 git tag -n0 -l tag-zero-lines >actual &&
3af82863 524 test_cmp expect actual &&
5206d130
CR
525
526 echo "tag-zero-lines " >expect &&
d592b315 527 git tag -n1 -l | grep "^tag-zero-lines" >actual &&
3af82863 528 test_cmp expect actual &&
d592b315 529 git tag -n -l | grep "^tag-zero-lines" >actual &&
3af82863 530 test_cmp expect actual &&
d592b315 531 git tag -n1 -l tag-zero-lines >actual &&
3af82863 532 test_cmp expect actual &&
d592b315 533 git tag -n2 -l tag-zero-lines >actual &&
3af82863 534 test_cmp expect actual &&
d592b315 535 git tag -n999 -l tag-zero-lines >actual &&
3af82863 536 test_cmp expect actual
5206d130
CR
537'
538
539echo 'tag line one' >annotagmsg
540echo 'tag line two' >>annotagmsg
541echo 'tag line three' >>annotagmsg
542test_expect_success \
543 'listing many message lines of a non-signed tag should succeed' '
d592b315 544 git tag -F annotagmsg tag-lines &&
5206d130
CR
545
546 echo "tag-lines" >expect &&
d592b315 547 git tag -l | grep "^tag-lines" >actual &&
3af82863 548 test_cmp expect actual &&
d592b315 549 git tag -n0 -l | grep "^tag-lines" >actual &&
3af82863 550 test_cmp expect actual &&
d592b315 551 git tag -n0 -l tag-lines >actual &&
3af82863 552 test_cmp expect actual &&
5206d130
CR
553
554 echo "tag-lines tag line one" >expect &&
d592b315 555 git tag -n1 -l | grep "^tag-lines" >actual &&
3af82863 556 test_cmp expect actual &&
d592b315 557 git tag -n -l | grep "^tag-lines" >actual &&
3af82863 558 test_cmp expect actual &&
d592b315 559 git tag -n1 -l tag-lines >actual &&
3af82863 560 test_cmp expect actual &&
5206d130
CR
561
562 echo " tag line two" >>expect &&
d592b315 563 git tag -n2 -l | grep "^ *tag.line" >actual &&
3af82863 564 test_cmp expect actual &&
d592b315 565 git tag -n2 -l tag-lines >actual &&
3af82863 566 test_cmp expect actual &&
5206d130
CR
567
568 echo " tag line three" >>expect &&
d592b315 569 git tag -n3 -l | grep "^ *tag.line" >actual &&
3af82863 570 test_cmp expect actual &&
d592b315 571 git tag -n3 -l tag-lines >actual &&
3af82863 572 test_cmp expect actual &&
d592b315 573 git tag -n4 -l | grep "^ *tag.line" >actual &&
3af82863 574 test_cmp expect actual &&
d592b315 575 git tag -n4 -l tag-lines >actual &&
3af82863 576 test_cmp expect actual &&
d592b315 577 git tag -n99 -l | grep "^ *tag.line" >actual &&
3af82863 578 test_cmp expect actual &&
d592b315 579 git tag -n99 -l tag-lines >actual &&
3af82863 580 test_cmp expect actual
5206d130
CR
581'
582
64fb19ba
JS
583# subsequent tests require gpg; check if it is available
584gpg --version >/dev/null
585if [ $? -eq 127 ]; then
fae74a04 586 say "gpg not found - skipping tag signing and verification tests"
64fb19ba
JS
587 test_done
588 exit
589fi
590
ef5a6fb5
CR
591# trying to verify annotated non-signed tags:
592
593test_expect_success \
594 'trying to verify an annotated non-signed tag should fail' '
595 tag_exists annotated-tag &&
d592b315 596 test_must_fail git tag -v annotated-tag
ef5a6fb5
CR
597'
598
599test_expect_success \
600 'trying to verify a file-annotated non-signed tag should fail' '
601 tag_exists file-annotated-tag &&
d592b315 602 test_must_fail git tag -v file-annotated-tag
ef5a6fb5
CR
603'
604
62e09ce9
CR
605test_expect_success \
606 'trying to verify two annotated non-signed tags should fail' '
607 tag_exists annotated-tag file-annotated-tag &&
d592b315 608 test_must_fail git tag -v annotated-tag file-annotated-tag
62e09ce9
CR
609'
610
ef5a6fb5
CR
611# creating and verifying signed tags:
612
797e99a2
CR
613# As said here: http://www.gnupg.org/documentation/faqs.html#q6.19
614# the gpg version 1.0.6 didn't parse trust packets correctly, so for
615# that version, creation of signed tags using the generated key fails.
616case "$(gpg --version)" in
617'gpg (GnuPG) 1.0.6'*)
fae74a04 618 say "Skipping signed tag tests, because a bug in 1.0.6 version"
797e99a2
CR
619 test_done
620 exit
621 ;;
622esac
623
ef5a6fb5
CR
624# key generation info: gpg --homedir t/t7004 --gen-key
625# Type DSA and Elgamal, size 2048 bits, no expiration date.
626# Name and email: C O Mitter <committer@example.com>
627# No password given, to enable non-interactive operation.
628
bfdbee98 629cp -R "$TEST_DIRECTORY"/t7004 ./gpghome
ef5a6fb5 630chmod 0700 gpghome
0e46e704
BD
631GNUPGHOME="$(pwd)/gpghome"
632export GNUPGHOME
ef5a6fb5
CR
633
634get_tag_header signed-tag $commit commit $time >expect
635echo 'A signed tag message' >>expect
636echo '-----BEGIN PGP SIGNATURE-----' >>expect
637test_expect_success 'creating a signed tag with -m message should succeed' '
d592b315 638 git tag -s -m "A signed tag message" signed-tag &&
ef5a6fb5 639 get_tag_msg signed-tag >actual &&
3af82863 640 test_cmp expect actual
ef5a6fb5
CR
641'
642
be15f505
LT
643get_tag_header u-signed-tag $commit commit $time >expect
644echo 'Another message' >>expect
645echo '-----BEGIN PGP SIGNATURE-----' >>expect
646test_expect_success 'sign with a given key id' '
647
648 git tag -u committer@example.com -m "Another message" u-signed-tag &&
649 get_tag_msg u-signed-tag >actual &&
3af82863 650 test_cmp expect actual
be15f505
LT
651
652'
653
654test_expect_success 'sign with an unknown id (1)' '
655
d492b31c
SB
656 test_must_fail git tag -u author@example.com \
657 -m "Another message" o-signed-tag
be15f505
LT
658
659'
660
661test_expect_success 'sign with an unknown id (2)' '
662
d492b31c 663 test_must_fail git tag -u DEADBEEF -m "Another message" o-signed-tag
be15f505
LT
664
665'
666
667cat >fakeeditor <<'EOF'
668#!/bin/sh
669test -n "$1" && exec >"$1"
670echo A signed tag message
671echo from a fake editor.
672EOF
673chmod +x fakeeditor
674
675get_tag_header implied-sign $commit commit $time >expect
676./fakeeditor >>expect
677echo '-----BEGIN PGP SIGNATURE-----' >>expect
678test_expect_success '-u implies signed tag' '
d592b315 679 GIT_EDITOR=./fakeeditor git tag -u CDDE430D implied-sign &&
be15f505 680 get_tag_msg implied-sign >actual &&
3af82863 681 test_cmp expect actual
be15f505
LT
682'
683
62e09ce9
CR
684cat >sigmsgfile <<EOF
685Another signed tag
686message in a file.
687EOF
688get_tag_header file-signed-tag $commit commit $time >expect
689cat sigmsgfile >>expect
690echo '-----BEGIN PGP SIGNATURE-----' >>expect
691test_expect_success \
692 'creating a signed tag with -F messagefile should succeed' '
d592b315 693 git tag -s -F sigmsgfile file-signed-tag &&
62e09ce9 694 get_tag_msg file-signed-tag >actual &&
3af82863 695 test_cmp expect actual
62e09ce9
CR
696'
697
698cat >siginputmsg <<EOF
699A signed tag message from
700the standard input
701EOF
702get_tag_header stdin-signed-tag $commit commit $time >expect
703cat siginputmsg >>expect
704echo '-----BEGIN PGP SIGNATURE-----' >>expect
705test_expect_success 'creating a signed tag with -F - should succeed' '
d592b315 706 git tag -s -F - stdin-signed-tag <siginputmsg &&
62e09ce9 707 get_tag_msg stdin-signed-tag >actual &&
3af82863 708 test_cmp expect actual
62e09ce9
CR
709'
710
10507857
JK
711get_tag_header implied-annotate $commit commit $time >expect
712./fakeeditor >>expect
713echo '-----BEGIN PGP SIGNATURE-----' >>expect
714test_expect_success '-s implies annotated tag' '
d592b315 715 GIT_EDITOR=./fakeeditor git tag -s implied-annotate &&
10507857 716 get_tag_msg implied-annotate >actual &&
3af82863 717 test_cmp expect actual
10507857
JK
718'
719
e317cfaf
CR
720test_expect_success \
721 'trying to create a signed tag with non-existing -F file should fail' '
722 ! test -f nonexistingfile &&
723 ! tag_exists nosigtag &&
d592b315 724 test_must_fail git tag -s -F nonexistingfile nosigtag &&
e317cfaf
CR
725 ! tag_exists nosigtag
726'
727
ef5a6fb5 728test_expect_success 'verifying a signed tag should succeed' \
d592b315 729 'git tag -v signed-tag'
ef5a6fb5 730
62e09ce9 731test_expect_success 'verifying two signed tags in one command should succeed' \
d592b315 732 'git tag -v signed-tag file-signed-tag'
62e09ce9
CR
733
734test_expect_success \
735 'verifying many signed and non-signed tags should fail' '
d592b315
NS
736 test_must_fail git tag -v signed-tag annotated-tag &&
737 test_must_fail git tag -v file-annotated-tag file-signed-tag &&
738 test_must_fail git tag -v annotated-tag \
d492b31c 739 file-signed-tag file-annotated-tag &&
d592b315 740 test_must_fail git tag -v signed-tag annotated-tag file-signed-tag
62e09ce9
CR
741'
742
ef5a6fb5
CR
743test_expect_success 'verifying a forged tag should fail' '
744 forged=$(git cat-file tag signed-tag |
745 sed -e "s/signed-tag/forged-tag/" |
746 git mktag) &&
747 git tag forged-tag $forged &&
d592b315 748 test_must_fail git tag -v forged-tag
ef5a6fb5
CR
749'
750
751# blank and empty messages for signed tags:
752
753get_tag_header empty-signed-tag $commit commit $time >expect
754echo '-----BEGIN PGP SIGNATURE-----' >>expect
755test_expect_success \
756 'creating a signed tag with an empty -m message should succeed' '
d592b315 757 git tag -s -m "" empty-signed-tag &&
ef5a6fb5 758 get_tag_msg empty-signed-tag >actual &&
3af82863 759 test_cmp expect actual &&
d592b315 760 git tag -v empty-signed-tag
ef5a6fb5
CR
761'
762
763>sigemptyfile
764get_tag_header emptyfile-signed-tag $commit commit $time >expect
765echo '-----BEGIN PGP SIGNATURE-----' >>expect
766test_expect_success \
767 'creating a signed tag with an empty -F messagefile should succeed' '
d592b315 768 git tag -s -F sigemptyfile emptyfile-signed-tag &&
ef5a6fb5 769 get_tag_msg emptyfile-signed-tag >actual &&
3af82863 770 test_cmp expect actual &&
d592b315 771 git tag -v emptyfile-signed-tag
ef5a6fb5
CR
772'
773
774printf '\n\n \n\t\nLeading blank lines\n' > sigblanksfile
775printf '\n\t \t \nRepeated blank lines\n' >>sigblanksfile
776printf '\n\n\nTrailing spaces \t \n' >>sigblanksfile
777printf '\nTrailing blank lines\n\n\t \n\n' >>sigblanksfile
778get_tag_header blanks-signed-tag $commit commit $time >expect
779cat >>expect <<EOF
780Leading blank lines
781
782Repeated blank lines
783
784Trailing spaces
785
786Trailing blank lines
787EOF
788echo '-----BEGIN PGP SIGNATURE-----' >>expect
789test_expect_success \
790 'extra blanks in the message for a signed tag should be removed' '
d592b315 791 git tag -s -F sigblanksfile blanks-signed-tag &&
ef5a6fb5 792 get_tag_msg blanks-signed-tag >actual &&
3af82863 793 test_cmp expect actual &&
d592b315 794 git tag -v blanks-signed-tag
ef5a6fb5
CR
795'
796
797get_tag_header blank-signed-tag $commit commit $time >expect
798echo '-----BEGIN PGP SIGNATURE-----' >>expect
799test_expect_success \
800 'creating a signed tag with a blank -m message should succeed' '
d592b315 801 git tag -s -m " " blank-signed-tag &&
ef5a6fb5 802 get_tag_msg blank-signed-tag >actual &&
3af82863 803 test_cmp expect actual &&
d592b315 804 git tag -v blank-signed-tag
ef5a6fb5
CR
805'
806
807echo ' ' >sigblankfile
808echo '' >>sigblankfile
809echo ' ' >>sigblankfile
810get_tag_header blankfile-signed-tag $commit commit $time >expect
811echo '-----BEGIN PGP SIGNATURE-----' >>expect
812test_expect_success \
813 'creating a signed tag with blank -F file with spaces should succeed' '
d592b315 814 git tag -s -F sigblankfile blankfile-signed-tag &&
ef5a6fb5 815 get_tag_msg blankfile-signed-tag >actual &&
3af82863 816 test_cmp expect actual &&
d592b315 817 git tag -v blankfile-signed-tag
ef5a6fb5
CR
818'
819
820printf ' ' >sigblanknonlfile
821get_tag_header blanknonlfile-signed-tag $commit commit $time >expect
822echo '-----BEGIN PGP SIGNATURE-----' >>expect
823test_expect_success \
824 'creating a signed tag with spaces and no newline should succeed' '
d592b315 825 git tag -s -F sigblanknonlfile blanknonlfile-signed-tag &&
ef5a6fb5 826 get_tag_msg blanknonlfile-signed-tag >actual &&
3af82863 827 test_cmp expect actual &&
d592b315 828 git tag -v signed-tag
ef5a6fb5
CR
829'
830
831# messages with commented lines for signed tags:
832
833cat >sigcommentsfile <<EOF
834# A comment
835
836############
837The message.
838############
839One line.
840
841
842# commented lines
843# commented lines
844
845Another line.
846# comments
847
848Last line.
849EOF
850get_tag_header comments-signed-tag $commit commit $time >expect
851cat >>expect <<EOF
852The message.
853One line.
854
855Another line.
856
857Last line.
858EOF
859echo '-----BEGIN PGP SIGNATURE-----' >>expect
860test_expect_success \
861 'creating a signed tag with a -F file with #comments should succeed' '
d592b315 862 git tag -s -F sigcommentsfile comments-signed-tag &&
ef5a6fb5 863 get_tag_msg comments-signed-tag >actual &&
3af82863 864 test_cmp expect actual &&
d592b315 865 git tag -v comments-signed-tag
ef5a6fb5
CR
866'
867
868get_tag_header comment-signed-tag $commit commit $time >expect
869echo '-----BEGIN PGP SIGNATURE-----' >>expect
870test_expect_success \
871 'creating a signed tag with #commented -m message should succeed' '
d592b315 872 git tag -s -m "#comment" comment-signed-tag &&
ef5a6fb5 873 get_tag_msg comment-signed-tag >actual &&
3af82863 874 test_cmp expect actual &&
d592b315 875 git tag -v comment-signed-tag
ef5a6fb5
CR
876'
877
878echo '#comment' >sigcommentfile
879echo '' >>sigcommentfile
880echo '####' >>sigcommentfile
881get_tag_header commentfile-signed-tag $commit commit $time >expect
882echo '-----BEGIN PGP SIGNATURE-----' >>expect
883test_expect_success \
884 'creating a signed tag with #commented -F messagefile should succeed' '
d592b315 885 git tag -s -F sigcommentfile commentfile-signed-tag &&
ef5a6fb5 886 get_tag_msg commentfile-signed-tag >actual &&
3af82863 887 test_cmp expect actual &&
d592b315 888 git tag -v commentfile-signed-tag
ef5a6fb5
CR
889'
890
891printf '#comment' >sigcommentnonlfile
892get_tag_header commentnonlfile-signed-tag $commit commit $time >expect
893echo '-----BEGIN PGP SIGNATURE-----' >>expect
894test_expect_success \
895 'creating a signed tag with a #comment and no newline should succeed' '
d592b315 896 git tag -s -F sigcommentnonlfile commentnonlfile-signed-tag &&
ef5a6fb5 897 get_tag_msg commentnonlfile-signed-tag >actual &&
3af82863 898 test_cmp expect actual &&
d592b315 899 git tag -v commentnonlfile-signed-tag
ef5a6fb5
CR
900'
901
5206d130
CR
902# listing messages for signed tags:
903
904test_expect_success \
905 'listing the one-line message of a signed tag should succeed' '
d592b315 906 git tag -s -m "A message line signed" stag-one-line &&
5206d130
CR
907
908 echo "stag-one-line" >expect &&
d592b315 909 git tag -l | grep "^stag-one-line" >actual &&
3af82863 910 test_cmp expect actual &&
d592b315 911 git tag -n0 -l | grep "^stag-one-line" >actual &&
3af82863 912 test_cmp expect actual &&
d592b315 913 git tag -n0 -l stag-one-line >actual &&
3af82863 914 test_cmp expect actual &&
5206d130
CR
915
916 echo "stag-one-line A message line signed" >expect &&
d592b315 917 git tag -n1 -l | grep "^stag-one-line" >actual &&
3af82863 918 test_cmp expect actual &&
d592b315 919 git tag -n -l | grep "^stag-one-line" >actual &&
3af82863 920 test_cmp expect actual &&
d592b315 921 git tag -n1 -l stag-one-line >actual &&
3af82863 922 test_cmp expect actual &&
d592b315 923 git tag -n2 -l stag-one-line >actual &&
3af82863 924 test_cmp expect actual &&
d592b315 925 git tag -n999 -l stag-one-line >actual &&
3af82863 926 test_cmp expect actual
5206d130
CR
927'
928
929test_expect_success \
930 'listing the zero-lines message of a signed tag should succeed' '
d592b315 931 git tag -s -m "" stag-zero-lines &&
5206d130
CR
932
933 echo "stag-zero-lines" >expect &&
d592b315 934 git tag -l | grep "^stag-zero-lines" >actual &&
3af82863 935 test_cmp expect actual &&
d592b315 936 git tag -n0 -l | grep "^stag-zero-lines" >actual &&
3af82863 937 test_cmp expect actual &&
d592b315 938 git tag -n0 -l stag-zero-lines >actual &&
3af82863 939 test_cmp expect actual &&
5206d130
CR
940
941 echo "stag-zero-lines " >expect &&
d592b315 942 git tag -n1 -l | grep "^stag-zero-lines" >actual &&
3af82863 943 test_cmp expect actual &&
d592b315 944 git tag -n -l | grep "^stag-zero-lines" >actual &&
3af82863 945 test_cmp expect actual &&
d592b315 946 git tag -n1 -l stag-zero-lines >actual &&
3af82863 947 test_cmp expect actual &&
d592b315 948 git tag -n2 -l stag-zero-lines >actual &&
3af82863 949 test_cmp expect actual &&
d592b315 950 git tag -n999 -l stag-zero-lines >actual &&
3af82863 951 test_cmp expect actual
5206d130
CR
952'
953
954echo 'stag line one' >sigtagmsg
955echo 'stag line two' >>sigtagmsg
956echo 'stag line three' >>sigtagmsg
957test_expect_success \
958 'listing many message lines of a signed tag should succeed' '
d592b315 959 git tag -s -F sigtagmsg stag-lines &&
5206d130
CR
960
961 echo "stag-lines" >expect &&
d592b315 962 git tag -l | grep "^stag-lines" >actual &&
3af82863 963 test_cmp expect actual &&
d592b315 964 git tag -n0 -l | grep "^stag-lines" >actual &&
3af82863 965 test_cmp expect actual &&
d592b315 966 git tag -n0 -l stag-lines >actual &&
3af82863 967 test_cmp expect actual &&
5206d130
CR
968
969 echo "stag-lines stag line one" >expect &&
d592b315 970 git tag -n1 -l | grep "^stag-lines" >actual &&
3af82863 971 test_cmp expect actual &&
d592b315 972 git tag -n -l | grep "^stag-lines" >actual &&
3af82863 973 test_cmp expect actual &&
d592b315 974 git tag -n1 -l stag-lines >actual &&
3af82863 975 test_cmp expect actual &&
5206d130
CR
976
977 echo " stag line two" >>expect &&
d592b315 978 git tag -n2 -l | grep "^ *stag.line" >actual &&
3af82863 979 test_cmp expect actual &&
d592b315 980 git tag -n2 -l stag-lines >actual &&
3af82863 981 test_cmp expect actual &&
5206d130
CR
982
983 echo " stag line three" >>expect &&
d592b315 984 git tag -n3 -l | grep "^ *stag.line" >actual &&
3af82863 985 test_cmp expect actual &&
d592b315 986 git tag -n3 -l stag-lines >actual &&
3af82863 987 test_cmp expect actual &&
d592b315 988 git tag -n4 -l | grep "^ *stag.line" >actual &&
3af82863 989 test_cmp expect actual &&
d592b315 990 git tag -n4 -l stag-lines >actual &&
3af82863 991 test_cmp expect actual &&
d592b315 992 git tag -n99 -l | grep "^ *stag.line" >actual &&
3af82863 993 test_cmp expect actual &&
d592b315 994 git tag -n99 -l stag-lines >actual &&
3af82863 995 test_cmp expect actual
5206d130
CR
996'
997
ef5a6fb5
CR
998# tags pointing to objects different from commits:
999
1000tree=$(git rev-parse HEAD^{tree})
1001blob=$(git rev-parse HEAD:foo)
1002tag=$(git rev-parse signed-tag)
1003
1004get_tag_header tree-signed-tag $tree tree $time >expect
1005echo "A message for a tree" >>expect
1006echo '-----BEGIN PGP SIGNATURE-----' >>expect
1007test_expect_success \
1008 'creating a signed tag pointing to a tree should succeed' '
d592b315 1009 git tag -s -m "A message for a tree" tree-signed-tag HEAD^{tree} &&
ef5a6fb5 1010 get_tag_msg tree-signed-tag >actual &&
3af82863 1011 test_cmp expect actual
ef5a6fb5
CR
1012'
1013
1014get_tag_header blob-signed-tag $blob blob $time >expect
1015echo "A message for a blob" >>expect
1016echo '-----BEGIN PGP SIGNATURE-----' >>expect
1017test_expect_success \
1018 'creating a signed tag pointing to a blob should succeed' '
d592b315 1019 git tag -s -m "A message for a blob" blob-signed-tag HEAD:foo &&
ef5a6fb5 1020 get_tag_msg blob-signed-tag >actual &&
3af82863 1021 test_cmp expect actual
ef5a6fb5
CR
1022'
1023
1024get_tag_header tag-signed-tag $tag tag $time >expect
1025echo "A message for another tag" >>expect
1026echo '-----BEGIN PGP SIGNATURE-----' >>expect
1027test_expect_success \
1028 'creating a signed tag pointing to another tag should succeed' '
d592b315 1029 git tag -s -m "A message for another tag" tag-signed-tag signed-tag &&
ef5a6fb5 1030 get_tag_msg tag-signed-tag >actual &&
3af82863 1031 test_cmp expect actual
ef5a6fb5
CR
1032'
1033
aba91192
CR
1034# try to sign with bad user.signingkey
1035git config user.signingkey BobTheMouse
41ac414e 1036test_expect_success \
d592b315 1037 'git tag -s fails if gpg is misconfigured' \
d492b31c 1038 'test_must_fail git tag -s -m tail tag-gpg-failure'
aba91192
CR
1039git config --unset user.signingkey
1040
ef5a6fb5
CR
1041# try to verify without gpg:
1042
1043rm -rf gpghome
41ac414e 1044test_expect_success \
ef5a6fb5 1045 'verify signed tag fails when public key is not present' \
d592b315 1046 'test_must_fail git tag -v signed-tag'
ef5a6fb5 1047
41ac414e 1048test_expect_success \
d592b315 1049 'git tag -a fails if tag annotation is empty' '
41ac414e 1050 ! (GIT_EDITOR=cat git tag -a initial-comment)
eb9d2b91
MH
1051'
1052
4d8b1dc8
MH
1053test_expect_success \
1054 'message in editor has initial comment' '
eb9d2b91
MH
1055 GIT_EDITOR=cat git tag -a initial-comment > actual
1056 # check the first line --- should be empty
1057 first=$(sed -e 1q <actual) &&
1058 test -z "$first" &&
1059 # remove commented lines from the remainder -- should be empty
1060 rest=$(sed -e 1d -e '/^#/d' <actual) &&
1061 test -z "$rest"
4d8b1dc8
MH
1062'
1063
1064get_tag_header reuse $commit commit $time >expect
1065echo "An annotation to be reused" >> expect
1066test_expect_success \
1067 'overwriting an annoted tag should use its previous body' '
1068 git tag -a -m "An annotation to be reused" reuse &&
1069 GIT_EDITOR=true git tag -f -a reuse &&
1070 get_tag_msg reuse >actual &&
3af82863 1071 test_cmp expect actual
4d8b1dc8
MH
1072'
1073
dbd0f5c7
JH
1074test_expect_success 'filename for the message is relative to cwd' '
1075 mkdir subdir &&
1076 echo "Tag message in top directory" >msgfile-5 &&
1077 echo "Tag message in sub directory" >subdir/msgfile-5 &&
1078 (
1079 cd subdir &&
1080 git tag -a -F msgfile-5 tag-from-subdir
1081 ) &&
1082 git cat-file tag tag-from-subdir | grep "in sub directory"
1083'
1084
1085test_expect_success 'filename for the message is relative to cwd' '
1086 echo "Tag message in sub directory" >subdir/msgfile-6 &&
1087 (
1088 cd subdir &&
1089 git tag -a -F msgfile-6 tag-from-subdir-2
1090 ) &&
1091 git cat-file tag tag-from-subdir-2 | grep "in sub directory"
1092'
1093
32c35cfb
JG
1094# create a few more commits to test --contains
1095
1096hash1=$(git rev-parse HEAD)
1097
1098test_expect_success 'creating second commit and tag' '
1099 echo foo-2.0 >foo &&
1100 git add foo &&
1101 git commit -m second
1102 git tag v2.0
1103'
1104
1105hash2=$(git rev-parse HEAD)
1106
1107test_expect_success 'creating third commit without tag' '
1108 echo foo-dev >foo &&
1109 git add foo &&
1110 git commit -m third
1111'
1112
1113hash3=$(git rev-parse HEAD)
1114
1115# simple linear checks of --continue
1116
1117cat > expected <<EOF
1118v0.2.1
1119v1.0
1120v1.0.1
1121v1.1.3
1122v2.0
1123EOF
1124
1125test_expect_success 'checking that first commit is in all tags (hash)' "
1126 git tag -l --contains $hash1 v* >actual
1127 test_cmp expected actual
1128"
1129
1130# other ways of specifying the commit
1131test_expect_success 'checking that first commit is in all tags (tag)' "
1132 git tag -l --contains v1.0 v* >actual
1133 test_cmp expected actual
1134"
1135
1136test_expect_success 'checking that first commit is in all tags (relative)' "
1137 git tag -l --contains HEAD~2 v* >actual
1138 test_cmp expected actual
1139"
1140
1141cat > expected <<EOF
1142v2.0
1143EOF
1144
1145test_expect_success 'checking that second commit only has one tag' "
1146 git tag -l --contains $hash2 v* >actual
1147 test_cmp expected actual
1148"
1149
1150
1151cat > expected <<EOF
1152EOF
1153
1154test_expect_success 'checking that third commit has no tags' "
1155 git tag -l --contains $hash3 v* >actual
1156 test_cmp expected actual
1157"
1158
1159# how about a simple merge?
1160
1161test_expect_success 'creating simple branch' '
1162 git branch stable v2.0 &&
1163 git checkout stable &&
1164 echo foo-3.0 > foo &&
1165 git commit foo -m fourth
1166 git tag v3.0
1167'
1168
1169hash4=$(git rev-parse HEAD)
1170
1171cat > expected <<EOF
1172v3.0
1173EOF
1174
1175test_expect_success 'checking that branch head only has one tag' "
1176 git tag -l --contains $hash4 v* >actual
1177 test_cmp expected actual
1178"
1179
1180test_expect_success 'merging original branch into this branch' '
1181 git merge --strategy=ours master &&
1182 git tag v4.0
1183'
1184
1185cat > expected <<EOF
1186v4.0
1187EOF
1188
1189test_expect_success 'checking that original branch head has one tag now' "
1190 git tag -l --contains $hash3 v* >actual
1191 test_cmp expected actual
1192"
1193
1194cat > expected <<EOF
1195v0.2.1
1196v1.0
1197v1.0.1
1198v1.1.3
1199v2.0
1200v3.0
1201v4.0
1202EOF
1203
1204test_expect_success 'checking that initial commit is in all tags' "
1205 git tag -l --contains $hash1 v* >actual
1206 test_cmp expected actual
1207"
1208
e0e03a73
ST
1209# mixing modes and options:
1210
1211test_expect_success 'mixing incompatibles modes and options is forbidden' '
1212 test_must_fail git tag -a
1213 test_must_fail git tag -l -v
1214 test_must_fail git tag -n 100
1215 test_must_fail git tag -l -m msg
1216 test_must_fail git tag -l -F some file
1217 test_must_fail git tag -v -s
1218'
1219
ef5a6fb5 1220test_done