]> git.ipfire.org Git - thirdparty/git.git/blame - t/t7004-tag.sh
Merge git://git.kernel.org/pub/scm/gitk/gitk
[thirdparty/git.git] / t / t7004-tag.sh
CommitLineData
ef5a6fb5
CR
1#!/bin/sh
2#
3# Copyright (c) 2007 Carlos Rica
4#
5
6test_description='git-tag
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
CR
24test_expect_success 'listing all tags in an empty tree should output nothing' '
25 test `git-tag -l | wc -l` -eq 0 &&
26 test `git-tag | wc -l` -eq 0
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' '
33 ! git-tag mynotag &&
34 ! tag_exists mynotag
35'
36
37test_expect_success 'creating a tag for HEAD in an empty tree should fail' '
38 ! git-tag mytaghead HEAD &&
39 ! tag_exists mytaghead
40'
41
42test_expect_success 'creating a tag for an unknown revision should fail' '
43 ! git-tag mytagnorev aaaaaaaaaaa &&
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
CR
56test_expect_success 'listing all tags if one exists should succeed' '
57 git-tag -l &&
58 git-tag
59'
ef5a6fb5 60
62e09ce9
CR
61test_expect_success 'listing all tags if one exists should output that tag' '
62 test `git-tag -l` = mytag &&
63 test `git-tag` = mytag
64'
ef5a6fb5
CR
65
66# pattern matching:
67
68test_expect_success 'listing a tag using a matching pattern should succeed' \
69 'git-tag -l mytag'
70
71test_expect_success \
72 'listing a tag using a matching pattern should output that tag' \
73 'test `git-tag -l mytag` = mytag'
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' \
78 'git-tag -l xxx'
79
80test_expect_success \
81 'listing tags using a non-matching pattern should output nothing' \
82 'test `git-tag -l xxx | wc -l` -eq 0'
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' \
41ac414e 88 '! git tag mytag'
ef5a6fb5
CR
89
90test_expect_success \
91 'trying to create a tag with a non-valid name should fail' '
92 test `git-tag -l | wc -l` -eq 1 &&
93 ! git tag "" &&
94 ! git tag .othertag &&
95 ! git tag "other tag" &&
96 ! git tag "othertag^" &&
97 ! git tag "other~tag" &&
98 test `git-tag -l | wc -l` -eq 1
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 &&
110 ! git-tag -d unknown-tag
111'
112
113cat >expect <<EOF
114myhead
115mytag
116EOF
117test_expect_success \
118 'trying to delete tags without params should succeed and do nothing' '
119 git tag -l > actual && git diff expect actual &&
120 git-tag -d &&
121 git tag -l > actual && git diff expect actual
122'
123
124test_expect_success \
125 'deleting two existing tags in one command should succeed' '
126 tag_exists mytag &&
127 tag_exists myhead &&
128 git-tag -d mytag myhead &&
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 &&
136 git-tag mytag &&
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 &&
144 ! git-tag -d mytag anothertag &&
145 ! tag_exists mytag &&
146 ! tag_exists myhead
147'
148
41ac414e
JH
149test_expect_success 'trying to delete an already deleted tag should fail' \
150 '! 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 &&
62e09ce9
CR
176 git diff expect actual &&
177 git tag > actual &&
ef5a6fb5
CR
178 git diff expect actual
179'
180
181cat >expect <<EOF
182a1
183aa1
184cba
185EOF
186test_expect_success \
187 'listing tags with substring as pattern must print those matching' '
18e32b5b 188 git-tag -l "*a*" > actual &&
5be60078 189 git diff expect actual
ef5a6fb5
CR
190'
191
192cat >expect <<EOF
193v0.2.1
194v1.0.1
ef5a6fb5
CR
195EOF
196test_expect_success \
18e32b5b
CR
197 'listing tags with a suffix as pattern must print those matching' '
198 git-tag -l "*.1" > actual &&
5be60078 199 git diff expect actual
ef5a6fb5
CR
200'
201
202cat >expect <<EOF
203t210
204t211
205EOF
206test_expect_success \
18e32b5b
CR
207 'listing tags with a prefix as pattern must print those matching' '
208 git-tag -l "t21*" > actual &&
5be60078 209 git diff expect actual
ef5a6fb5
CR
210'
211
212cat >expect <<EOF
213a1
ef5a6fb5
CR
214EOF
215test_expect_success \
18e32b5b 216 'listing tags using a name as pattern must print that one matching' '
ef5a6fb5 217 git-tag -l a1 > actual &&
5be60078 218 git diff expect actual
ef5a6fb5
CR
219'
220
221cat >expect <<EOF
222v1.0
ef5a6fb5
CR
223EOF
224test_expect_success \
18e32b5b 225 'listing tags using a name as pattern must print that one matching' '
ef5a6fb5 226 git-tag -l v1.0 > actual &&
5be60078 227 git diff expect actual
ef5a6fb5
CR
228'
229
230cat >expect <<EOF
18e32b5b 231v1.0.1
ef5a6fb5
CR
232v1.1.3
233EOF
234test_expect_success \
235 'listing tags with ? in the pattern should print those matching' '
18e32b5b 236 git-tag -l "v1.?.?" > actual &&
5be60078 237 git diff expect actual
ef5a6fb5
CR
238'
239
240>expect
241test_expect_success \
242 'listing tags using v.* should print nothing because none have v.' '
243 git-tag -l "v.*" > actual &&
5be60078 244 git diff expect actual
ef5a6fb5
CR
245'
246
247cat >expect <<EOF
248v0.2.1
249v1.0
250v1.0.1
251v1.1.3
252EOF
253test_expect_success \
254 'listing tags using v* should print only those having v' '
255 git-tag -l "v*" > actual &&
5be60078 256 git diff expect actual
ef5a6fb5
CR
257'
258
259# creating and verifying lightweight tags:
260
261test_expect_success \
262 'a non-annotated tag created without parameters should point to HEAD' '
263 git-tag non-annotated-tag &&
5be60078
JH
264 test $(git cat-file -t non-annotated-tag) = commit &&
265 test $(git rev-parse non-annotated-tag) = $(git rev-parse HEAD)
ef5a6fb5
CR
266'
267
41ac414e
JH
268test_expect_success 'trying to verify an unknown tag should fail' \
269 '! git-tag -v unknown-tag'
ef5a6fb5 270
41ac414e 271test_expect_success \
ef5a6fb5 272 'trying to verify a non-annotated and non-signed tag should fail' \
41ac414e 273 '! git-tag -v non-annotated-tag'
ef5a6fb5 274
41ac414e 275test_expect_success \
62e09ce9 276 'trying to verify many non-annotated or unknown tags, should fail' \
41ac414e 277 '! git-tag -v unknown-tag1 non-annotated-tag unknown-tag2'
62e09ce9 278
ef5a6fb5
CR
279# creating annotated tags:
280
281get_tag_msg () {
282 git cat-file tag "$1" | sed -e "/BEGIN PGP/q"
283}
284
285# run test_tick before committing always gives the time in that timezone
286get_tag_header () {
287cat <<EOF
288object $2
289type $3
290tag $1
291tagger C O Mitter <committer@example.com> $4 -0700
292
293EOF
294}
295
296commit=$(git rev-parse HEAD)
297time=$test_tick
298
299get_tag_header annotated-tag $commit commit $time >expect
300echo "A message" >>expect
301test_expect_success \
302 'creating an annotated tag with -m message should succeed' '
303 git-tag -m "A message" annotated-tag &&
304 get_tag_msg annotated-tag >actual &&
305 git diff expect actual
306'
307
308cat >msgfile <<EOF
309Another message
310in a file.
311EOF
312get_tag_header file-annotated-tag $commit commit $time >expect
313cat msgfile >>expect
314test_expect_success \
315 'creating an annotated tag with -F messagefile should succeed' '
316 git-tag -F msgfile file-annotated-tag &&
317 get_tag_msg file-annotated-tag >actual &&
318 git diff expect actual
319'
320
62e09ce9
CR
321cat >inputmsg <<EOF
322A message from the
323standard input
324EOF
325get_tag_header stdin-annotated-tag $commit commit $time >expect
326cat inputmsg >>expect
327test_expect_success 'creating an annotated tag with -F - should succeed' '
328 git-tag -F - stdin-annotated-tag <inputmsg &&
329 get_tag_msg stdin-annotated-tag >actual &&
330 git diff expect actual
331'
332
e317cfaf
CR
333test_expect_success \
334 'trying to create a tag with a non-existing -F file should fail' '
335 ! test -f nonexistingfile &&
336 ! tag_exists notag &&
337 ! git-tag -F nonexistingfile notag &&
338 ! tag_exists notag
339'
340
341test_expect_success \
39686585 342 'trying to create tags giving both -m or -F options should fail' '
e317cfaf
CR
343 echo "message file 1" >msgfile1 &&
344 echo "message file 2" >msgfile2 &&
345 ! tag_exists msgtag &&
e317cfaf
CR
346 ! git-tag -m "message 1" -F msgfile1 msgtag &&
347 ! tag_exists msgtag &&
348 ! git-tag -F msgfile1 -m "message 1" msgtag &&
349 ! tag_exists msgtag &&
e317cfaf
CR
350 ! git-tag -m "message 1" -F msgfile1 -m "message 2" msgtag &&
351 ! tag_exists msgtag
352'
353
ef5a6fb5
CR
354# blank and empty messages:
355
356get_tag_header empty-annotated-tag $commit commit $time >expect
357test_expect_success \
358 'creating a tag with an empty -m message should succeed' '
359 git-tag -m "" empty-annotated-tag &&
360 get_tag_msg empty-annotated-tag >actual &&
361 git diff expect actual
362'
363
364>emptyfile
365get_tag_header emptyfile-annotated-tag $commit commit $time >expect
366test_expect_success \
367 'creating a tag with an empty -F messagefile should succeed' '
368 git-tag -F emptyfile emptyfile-annotated-tag &&
369 get_tag_msg emptyfile-annotated-tag >actual &&
370 git diff expect actual
371'
372
373printf '\n\n \n\t\nLeading blank lines\n' >blanksfile
374printf '\n\t \t \nRepeated blank lines\n' >>blanksfile
375printf '\n\n\nTrailing spaces \t \n' >>blanksfile
376printf '\nTrailing blank lines\n\n\t \n\n' >>blanksfile
377get_tag_header blanks-annotated-tag $commit commit $time >expect
378cat >>expect <<EOF
379Leading blank lines
380
381Repeated blank lines
382
383Trailing spaces
384
385Trailing blank lines
386EOF
387test_expect_success \
388 'extra blanks in the message for an annotated tag should be removed' '
389 git-tag -F blanksfile blanks-annotated-tag &&
390 get_tag_msg blanks-annotated-tag >actual &&
391 git diff expect actual
392'
393
394get_tag_header blank-annotated-tag $commit commit $time >expect
395test_expect_success \
396 'creating a tag with blank -m message with spaces should succeed' '
397 git-tag -m " " blank-annotated-tag &&
398 get_tag_msg blank-annotated-tag >actual &&
399 git diff expect actual
400'
401
402echo ' ' >blankfile
403echo '' >>blankfile
404echo ' ' >>blankfile
405get_tag_header blankfile-annotated-tag $commit commit $time >expect
406test_expect_success \
407 'creating a tag with blank -F messagefile with spaces should succeed' '
408 git-tag -F blankfile blankfile-annotated-tag &&
409 get_tag_msg blankfile-annotated-tag >actual &&
410 git diff expect actual
411'
412
413printf ' ' >blanknonlfile
414get_tag_header blanknonlfile-annotated-tag $commit commit $time >expect
415test_expect_success \
416 'creating a tag with -F file of spaces and no newline should succeed' '
417 git-tag -F blanknonlfile blanknonlfile-annotated-tag &&
418 get_tag_msg blanknonlfile-annotated-tag >actual &&
419 git diff expect actual
420'
421
422# messages with commented lines:
423
424cat >commentsfile <<EOF
425# A comment
426
427############
428The message.
429############
430One line.
431
432
433# commented lines
434# commented lines
435
436Another line.
437# comments
438
439Last line.
440EOF
441get_tag_header comments-annotated-tag $commit commit $time >expect
442cat >>expect <<EOF
443The message.
444One line.
445
446Another line.
447
448Last line.
449EOF
450test_expect_success \
451 'creating a tag using a -F messagefile with #comments should succeed' '
452 git-tag -F commentsfile comments-annotated-tag &&
453 get_tag_msg comments-annotated-tag >actual &&
454 git diff expect actual
455'
456
457get_tag_header comment-annotated-tag $commit commit $time >expect
458test_expect_success \
459 'creating a tag with a #comment in the -m message should succeed' '
460 git-tag -m "#comment" comment-annotated-tag &&
461 get_tag_msg comment-annotated-tag >actual &&
462 git diff expect actual
463'
464
465echo '#comment' >commentfile
466echo '' >>commentfile
467echo '####' >>commentfile
468get_tag_header commentfile-annotated-tag $commit commit $time >expect
469test_expect_success \
470 'creating a tag with #comments in the -F messagefile should succeed' '
471 git-tag -F commentfile commentfile-annotated-tag &&
472 get_tag_msg commentfile-annotated-tag >actual &&
473 git diff expect actual
474'
475
476printf '#comment' >commentnonlfile
477get_tag_header commentnonlfile-annotated-tag $commit commit $time >expect
478test_expect_success \
479 'creating a tag with a file of #comment and no newline should succeed' '
480 git-tag -F commentnonlfile commentnonlfile-annotated-tag &&
481 get_tag_msg commentnonlfile-annotated-tag >actual &&
482 git diff expect actual
483'
484
5206d130
CR
485# listing messages for annotated non-signed tags:
486
487test_expect_success \
488 'listing the one-line message of a non-signed tag should succeed' '
489 git-tag -m "A msg" tag-one-line &&
490
491 echo "tag-one-line" >expect &&
492 git-tag -l | grep "^tag-one-line" >actual &&
493 git diff expect actual &&
c43a2483 494 git-tag -n0 -l | grep "^tag-one-line" >actual &&
5206d130 495 git diff expect actual &&
c43a2483 496 git-tag -n0 -l tag-one-line >actual &&
5206d130
CR
497 git diff expect actual &&
498
499 echo "tag-one-line A msg" >expect &&
c43a2483 500 git-tag -n1 -l | grep "^tag-one-line" >actual &&
5206d130
CR
501 git diff expect actual &&
502 git-tag -n -l | grep "^tag-one-line" >actual &&
503 git diff expect actual &&
c43a2483 504 git-tag -n1 -l tag-one-line >actual &&
5206d130 505 git diff expect actual &&
c43a2483 506 git-tag -n2 -l tag-one-line >actual &&
5206d130 507 git diff expect actual &&
c43a2483 508 git-tag -n999 -l tag-one-line >actual &&
5206d130
CR
509 git diff expect actual
510'
511
512test_expect_success \
513 'listing the zero-lines message of a non-signed tag should succeed' '
514 git-tag -m "" tag-zero-lines &&
515
516 echo "tag-zero-lines" >expect &&
517 git-tag -l | grep "^tag-zero-lines" >actual &&
518 git diff expect actual &&
c43a2483 519 git-tag -n0 -l | grep "^tag-zero-lines" >actual &&
5206d130 520 git diff expect actual &&
c43a2483 521 git-tag -n0 -l tag-zero-lines >actual &&
5206d130
CR
522 git diff expect actual &&
523
524 echo "tag-zero-lines " >expect &&
c43a2483 525 git-tag -n1 -l | grep "^tag-zero-lines" >actual &&
5206d130
CR
526 git diff expect actual &&
527 git-tag -n -l | grep "^tag-zero-lines" >actual &&
528 git diff expect actual &&
c43a2483 529 git-tag -n1 -l tag-zero-lines >actual &&
5206d130 530 git diff expect actual &&
c43a2483 531 git-tag -n2 -l tag-zero-lines >actual &&
5206d130 532 git diff expect actual &&
c43a2483 533 git-tag -n999 -l tag-zero-lines >actual &&
5206d130
CR
534 git diff expect actual
535'
536
537echo 'tag line one' >annotagmsg
538echo 'tag line two' >>annotagmsg
539echo 'tag line three' >>annotagmsg
540test_expect_success \
541 'listing many message lines of a non-signed tag should succeed' '
542 git-tag -F annotagmsg tag-lines &&
543
544 echo "tag-lines" >expect &&
545 git-tag -l | grep "^tag-lines" >actual &&
546 git diff expect actual &&
c43a2483 547 git-tag -n0 -l | grep "^tag-lines" >actual &&
5206d130 548 git diff expect actual &&
c43a2483 549 git-tag -n0 -l tag-lines >actual &&
5206d130
CR
550 git diff expect actual &&
551
552 echo "tag-lines tag line one" >expect &&
c43a2483 553 git-tag -n1 -l | grep "^tag-lines" >actual &&
5206d130
CR
554 git diff expect actual &&
555 git-tag -n -l | grep "^tag-lines" >actual &&
556 git diff expect actual &&
c43a2483 557 git-tag -n1 -l tag-lines >actual &&
5206d130
CR
558 git diff expect actual &&
559
560 echo " tag line two" >>expect &&
c43a2483 561 git-tag -n2 -l | grep "^ *tag.line" >actual &&
5206d130 562 git diff expect actual &&
c43a2483 563 git-tag -n2 -l tag-lines >actual &&
5206d130
CR
564 git diff expect actual &&
565
566 echo " tag line three" >>expect &&
c43a2483 567 git-tag -n3 -l | grep "^ *tag.line" >actual &&
5206d130 568 git diff expect actual &&
c43a2483 569 git-tag -n3 -l tag-lines >actual &&
5206d130 570 git diff expect actual &&
c43a2483 571 git-tag -n4 -l | grep "^ *tag.line" >actual &&
5206d130 572 git diff expect actual &&
c43a2483 573 git-tag -n4 -l tag-lines >actual &&
5206d130 574 git diff expect actual &&
c43a2483 575 git-tag -n99 -l | grep "^ *tag.line" >actual &&
5206d130 576 git diff expect actual &&
c43a2483 577 git-tag -n99 -l tag-lines >actual &&
5206d130
CR
578 git diff expect actual
579'
580
64fb19ba
JS
581# subsequent tests require gpg; check if it is available
582gpg --version >/dev/null
583if [ $? -eq 127 ]; then
584 echo "gpg not found - skipping tag signing and verification tests"
585 test_done
586 exit
587fi
588
ef5a6fb5
CR
589# trying to verify annotated non-signed tags:
590
591test_expect_success \
592 'trying to verify an annotated non-signed tag should fail' '
593 tag_exists annotated-tag &&
594 ! git-tag -v annotated-tag
595'
596
597test_expect_success \
598 'trying to verify a file-annotated non-signed tag should fail' '
599 tag_exists file-annotated-tag &&
600 ! git-tag -v file-annotated-tag
601'
602
62e09ce9
CR
603test_expect_success \
604 'trying to verify two annotated non-signed tags should fail' '
605 tag_exists annotated-tag file-annotated-tag &&
606 ! git-tag -v annotated-tag file-annotated-tag
607'
608
ef5a6fb5
CR
609# creating and verifying signed tags:
610
797e99a2
CR
611# As said here: http://www.gnupg.org/documentation/faqs.html#q6.19
612# the gpg version 1.0.6 didn't parse trust packets correctly, so for
613# that version, creation of signed tags using the generated key fails.
614case "$(gpg --version)" in
615'gpg (GnuPG) 1.0.6'*)
616 echo "Skipping signed tag tests, because a bug in 1.0.6 version"
617 test_done
618 exit
619 ;;
620esac
621
ef5a6fb5
CR
622# key generation info: gpg --homedir t/t7004 --gen-key
623# Type DSA and Elgamal, size 2048 bits, no expiration date.
624# Name and email: C O Mitter <committer@example.com>
625# No password given, to enable non-interactive operation.
626
627cp -R ../t7004 ./gpghome
628chmod 0700 gpghome
0e46e704
BD
629GNUPGHOME="$(pwd)/gpghome"
630export GNUPGHOME
ef5a6fb5
CR
631
632get_tag_header signed-tag $commit commit $time >expect
633echo 'A signed tag message' >>expect
634echo '-----BEGIN PGP SIGNATURE-----' >>expect
635test_expect_success 'creating a signed tag with -m message should succeed' '
636 git-tag -s -m "A signed tag message" signed-tag &&
637 get_tag_msg signed-tag >actual &&
5be60078 638 git diff expect actual
ef5a6fb5
CR
639'
640
be15f505
LT
641get_tag_header u-signed-tag $commit commit $time >expect
642echo 'Another message' >>expect
643echo '-----BEGIN PGP SIGNATURE-----' >>expect
644test_expect_success 'sign with a given key id' '
645
646 git tag -u committer@example.com -m "Another message" u-signed-tag &&
647 get_tag_msg u-signed-tag >actual &&
648 git diff expect actual
649
650'
651
652test_expect_success 'sign with an unknown id (1)' '
653
654 ! git tag -u author@example.com -m "Another message" o-signed-tag
655
656'
657
658test_expect_success 'sign with an unknown id (2)' '
659
660 ! git tag -u DEADBEEF -m "Another message" o-signed-tag
661
662'
663
664cat >fakeeditor <<'EOF'
665#!/bin/sh
666test -n "$1" && exec >"$1"
667echo A signed tag message
668echo from a fake editor.
669EOF
670chmod +x fakeeditor
671
672get_tag_header implied-sign $commit commit $time >expect
673./fakeeditor >>expect
674echo '-----BEGIN PGP SIGNATURE-----' >>expect
675test_expect_success '-u implies signed tag' '
676 GIT_EDITOR=./fakeeditor git-tag -u CDDE430D implied-sign &&
677 get_tag_msg implied-sign >actual &&
678 git diff expect actual
679'
680
62e09ce9
CR
681cat >sigmsgfile <<EOF
682Another signed tag
683message in a file.
684EOF
685get_tag_header file-signed-tag $commit commit $time >expect
686cat sigmsgfile >>expect
687echo '-----BEGIN PGP SIGNATURE-----' >>expect
688test_expect_success \
689 'creating a signed tag with -F messagefile should succeed' '
690 git-tag -s -F sigmsgfile file-signed-tag &&
691 get_tag_msg file-signed-tag >actual &&
692 git diff expect actual
693'
694
695cat >siginputmsg <<EOF
696A signed tag message from
697the standard input
698EOF
699get_tag_header stdin-signed-tag $commit commit $time >expect
700cat siginputmsg >>expect
701echo '-----BEGIN PGP SIGNATURE-----' >>expect
702test_expect_success 'creating a signed tag with -F - should succeed' '
703 git-tag -s -F - stdin-signed-tag <siginputmsg &&
704 get_tag_msg stdin-signed-tag >actual &&
705 git diff expect actual
706'
707
10507857
JK
708get_tag_header implied-annotate $commit commit $time >expect
709./fakeeditor >>expect
710echo '-----BEGIN PGP SIGNATURE-----' >>expect
711test_expect_success '-s implies annotated tag' '
712 GIT_EDITOR=./fakeeditor git-tag -s implied-annotate &&
713 get_tag_msg implied-annotate >actual &&
714 git diff expect actual
715'
716
e317cfaf
CR
717test_expect_success \
718 'trying to create a signed tag with non-existing -F file should fail' '
719 ! test -f nonexistingfile &&
720 ! tag_exists nosigtag &&
721 ! git-tag -s -F nonexistingfile nosigtag &&
722 ! tag_exists nosigtag
723'
724
ef5a6fb5
CR
725test_expect_success 'verifying a signed tag should succeed' \
726 'git-tag -v signed-tag'
727
62e09ce9
CR
728test_expect_success 'verifying two signed tags in one command should succeed' \
729 'git-tag -v signed-tag file-signed-tag'
730
731test_expect_success \
732 'verifying many signed and non-signed tags should fail' '
733 ! git-tag -v signed-tag annotated-tag &&
734 ! git-tag -v file-annotated-tag file-signed-tag &&
735 ! git-tag -v annotated-tag file-signed-tag file-annotated-tag &&
736 ! git-tag -v signed-tag annotated-tag file-signed-tag
737'
738
ef5a6fb5
CR
739test_expect_success 'verifying a forged tag should fail' '
740 forged=$(git cat-file tag signed-tag |
741 sed -e "s/signed-tag/forged-tag/" |
742 git mktag) &&
743 git tag forged-tag $forged &&
744 ! git-tag -v forged-tag
745'
746
747# blank and empty messages for signed tags:
748
749get_tag_header empty-signed-tag $commit commit $time >expect
750echo '-----BEGIN PGP SIGNATURE-----' >>expect
751test_expect_success \
752 'creating a signed tag with an empty -m message should succeed' '
753 git-tag -s -m "" empty-signed-tag &&
754 get_tag_msg empty-signed-tag >actual &&
755 git diff expect actual &&
756 git-tag -v empty-signed-tag
757'
758
759>sigemptyfile
760get_tag_header emptyfile-signed-tag $commit commit $time >expect
761echo '-----BEGIN PGP SIGNATURE-----' >>expect
762test_expect_success \
763 'creating a signed tag with an empty -F messagefile should succeed' '
764 git-tag -s -F sigemptyfile emptyfile-signed-tag &&
765 get_tag_msg emptyfile-signed-tag >actual &&
766 git diff expect actual &&
767 git-tag -v emptyfile-signed-tag
768'
769
770printf '\n\n \n\t\nLeading blank lines\n' > sigblanksfile
771printf '\n\t \t \nRepeated blank lines\n' >>sigblanksfile
772printf '\n\n\nTrailing spaces \t \n' >>sigblanksfile
773printf '\nTrailing blank lines\n\n\t \n\n' >>sigblanksfile
774get_tag_header blanks-signed-tag $commit commit $time >expect
775cat >>expect <<EOF
776Leading blank lines
777
778Repeated blank lines
779
780Trailing spaces
781
782Trailing blank lines
783EOF
784echo '-----BEGIN PGP SIGNATURE-----' >>expect
785test_expect_success \
786 'extra blanks in the message for a signed tag should be removed' '
787 git-tag -s -F sigblanksfile blanks-signed-tag &&
788 get_tag_msg blanks-signed-tag >actual &&
789 git diff expect actual &&
790 git-tag -v blanks-signed-tag
791'
792
793get_tag_header blank-signed-tag $commit commit $time >expect
794echo '-----BEGIN PGP SIGNATURE-----' >>expect
795test_expect_success \
796 'creating a signed tag with a blank -m message should succeed' '
797 git-tag -s -m " " blank-signed-tag &&
798 get_tag_msg blank-signed-tag >actual &&
799 git diff expect actual &&
800 git-tag -v blank-signed-tag
801'
802
803echo ' ' >sigblankfile
804echo '' >>sigblankfile
805echo ' ' >>sigblankfile
806get_tag_header blankfile-signed-tag $commit commit $time >expect
807echo '-----BEGIN PGP SIGNATURE-----' >>expect
808test_expect_success \
809 'creating a signed tag with blank -F file with spaces should succeed' '
810 git-tag -s -F sigblankfile blankfile-signed-tag &&
811 get_tag_msg blankfile-signed-tag >actual &&
812 git diff expect actual &&
813 git-tag -v blankfile-signed-tag
814'
815
816printf ' ' >sigblanknonlfile
817get_tag_header blanknonlfile-signed-tag $commit commit $time >expect
818echo '-----BEGIN PGP SIGNATURE-----' >>expect
819test_expect_success \
820 'creating a signed tag with spaces and no newline should succeed' '
821 git-tag -s -F sigblanknonlfile blanknonlfile-signed-tag &&
822 get_tag_msg blanknonlfile-signed-tag >actual &&
823 git diff expect actual &&
824 git-tag -v signed-tag
825'
826
827# messages with commented lines for signed tags:
828
829cat >sigcommentsfile <<EOF
830# A comment
831
832############
833The message.
834############
835One line.
836
837
838# commented lines
839# commented lines
840
841Another line.
842# comments
843
844Last line.
845EOF
846get_tag_header comments-signed-tag $commit commit $time >expect
847cat >>expect <<EOF
848The message.
849One line.
850
851Another line.
852
853Last line.
854EOF
855echo '-----BEGIN PGP SIGNATURE-----' >>expect
856test_expect_success \
857 'creating a signed tag with a -F file with #comments should succeed' '
858 git-tag -s -F sigcommentsfile comments-signed-tag &&
859 get_tag_msg comments-signed-tag >actual &&
860 git diff expect actual &&
861 git-tag -v comments-signed-tag
862'
863
864get_tag_header comment-signed-tag $commit commit $time >expect
865echo '-----BEGIN PGP SIGNATURE-----' >>expect
866test_expect_success \
867 'creating a signed tag with #commented -m message should succeed' '
868 git-tag -s -m "#comment" comment-signed-tag &&
869 get_tag_msg comment-signed-tag >actual &&
870 git diff expect actual &&
871 git-tag -v comment-signed-tag
872'
873
874echo '#comment' >sigcommentfile
875echo '' >>sigcommentfile
876echo '####' >>sigcommentfile
877get_tag_header commentfile-signed-tag $commit commit $time >expect
878echo '-----BEGIN PGP SIGNATURE-----' >>expect
879test_expect_success \
880 'creating a signed tag with #commented -F messagefile should succeed' '
881 git-tag -s -F sigcommentfile commentfile-signed-tag &&
882 get_tag_msg commentfile-signed-tag >actual &&
883 git diff expect actual &&
884 git-tag -v commentfile-signed-tag
885'
886
887printf '#comment' >sigcommentnonlfile
888get_tag_header commentnonlfile-signed-tag $commit commit $time >expect
889echo '-----BEGIN PGP SIGNATURE-----' >>expect
890test_expect_success \
891 'creating a signed tag with a #comment and no newline should succeed' '
892 git-tag -s -F sigcommentnonlfile commentnonlfile-signed-tag &&
893 get_tag_msg commentnonlfile-signed-tag >actual &&
894 git diff expect actual &&
895 git-tag -v commentnonlfile-signed-tag
896'
897
5206d130
CR
898# listing messages for signed tags:
899
900test_expect_success \
901 'listing the one-line message of a signed tag should succeed' '
902 git-tag -s -m "A message line signed" stag-one-line &&
903
904 echo "stag-one-line" >expect &&
905 git-tag -l | grep "^stag-one-line" >actual &&
906 git diff expect actual &&
c43a2483 907 git-tag -n0 -l | grep "^stag-one-line" >actual &&
5206d130 908 git diff expect actual &&
c43a2483 909 git-tag -n0 -l stag-one-line >actual &&
5206d130
CR
910 git diff expect actual &&
911
912 echo "stag-one-line A message line signed" >expect &&
c43a2483 913 git-tag -n1 -l | grep "^stag-one-line" >actual &&
5206d130
CR
914 git diff expect actual &&
915 git-tag -n -l | grep "^stag-one-line" >actual &&
916 git diff expect actual &&
c43a2483 917 git-tag -n1 -l stag-one-line >actual &&
5206d130 918 git diff expect actual &&
c43a2483 919 git-tag -n2 -l stag-one-line >actual &&
5206d130 920 git diff expect actual &&
c43a2483 921 git-tag -n999 -l stag-one-line >actual &&
5206d130
CR
922 git diff expect actual
923'
924
925test_expect_success \
926 'listing the zero-lines message of a signed tag should succeed' '
927 git-tag -s -m "" stag-zero-lines &&
928
929 echo "stag-zero-lines" >expect &&
930 git-tag -l | grep "^stag-zero-lines" >actual &&
931 git diff expect actual &&
c43a2483 932 git-tag -n0 -l | grep "^stag-zero-lines" >actual &&
5206d130 933 git diff expect actual &&
c43a2483 934 git-tag -n0 -l stag-zero-lines >actual &&
5206d130
CR
935 git diff expect actual &&
936
937 echo "stag-zero-lines " >expect &&
c43a2483 938 git-tag -n1 -l | grep "^stag-zero-lines" >actual &&
5206d130
CR
939 git diff expect actual &&
940 git-tag -n -l | grep "^stag-zero-lines" >actual &&
941 git diff expect actual &&
c43a2483 942 git-tag -n1 -l stag-zero-lines >actual &&
5206d130 943 git diff expect actual &&
c43a2483 944 git-tag -n2 -l stag-zero-lines >actual &&
5206d130 945 git diff expect actual &&
c43a2483 946 git-tag -n999 -l stag-zero-lines >actual &&
5206d130
CR
947 git diff expect actual
948'
949
950echo 'stag line one' >sigtagmsg
951echo 'stag line two' >>sigtagmsg
952echo 'stag line three' >>sigtagmsg
953test_expect_success \
954 'listing many message lines of a signed tag should succeed' '
955 git-tag -s -F sigtagmsg stag-lines &&
956
957 echo "stag-lines" >expect &&
958 git-tag -l | grep "^stag-lines" >actual &&
959 git diff expect actual &&
c43a2483 960 git-tag -n0 -l | grep "^stag-lines" >actual &&
5206d130 961 git diff expect actual &&
c43a2483 962 git-tag -n0 -l stag-lines >actual &&
5206d130
CR
963 git diff expect actual &&
964
965 echo "stag-lines stag line one" >expect &&
c43a2483 966 git-tag -n1 -l | grep "^stag-lines" >actual &&
5206d130
CR
967 git diff expect actual &&
968 git-tag -n -l | grep "^stag-lines" >actual &&
969 git diff expect actual &&
c43a2483 970 git-tag -n1 -l stag-lines >actual &&
5206d130
CR
971 git diff expect actual &&
972
973 echo " stag line two" >>expect &&
c43a2483 974 git-tag -n2 -l | grep "^ *stag.line" >actual &&
5206d130 975 git diff expect actual &&
c43a2483 976 git-tag -n2 -l stag-lines >actual &&
5206d130
CR
977 git diff expect actual &&
978
979 echo " stag line three" >>expect &&
c43a2483 980 git-tag -n3 -l | grep "^ *stag.line" >actual &&
5206d130 981 git diff expect actual &&
c43a2483 982 git-tag -n3 -l stag-lines >actual &&
5206d130 983 git diff expect actual &&
c43a2483 984 git-tag -n4 -l | grep "^ *stag.line" >actual &&
5206d130 985 git diff expect actual &&
c43a2483 986 git-tag -n4 -l stag-lines >actual &&
5206d130 987 git diff expect actual &&
c43a2483 988 git-tag -n99 -l | grep "^ *stag.line" >actual &&
5206d130 989 git diff expect actual &&
c43a2483 990 git-tag -n99 -l stag-lines >actual &&
5206d130
CR
991 git diff expect actual
992'
993
ef5a6fb5
CR
994# tags pointing to objects different from commits:
995
996tree=$(git rev-parse HEAD^{tree})
997blob=$(git rev-parse HEAD:foo)
998tag=$(git rev-parse signed-tag)
999
1000get_tag_header tree-signed-tag $tree tree $time >expect
1001echo "A message for a tree" >>expect
1002echo '-----BEGIN PGP SIGNATURE-----' >>expect
1003test_expect_success \
1004 'creating a signed tag pointing to a tree should succeed' '
1005 git-tag -s -m "A message for a tree" tree-signed-tag HEAD^{tree} &&
1006 get_tag_msg tree-signed-tag >actual &&
1007 git diff expect actual
1008'
1009
1010get_tag_header blob-signed-tag $blob blob $time >expect
1011echo "A message for a blob" >>expect
1012echo '-----BEGIN PGP SIGNATURE-----' >>expect
1013test_expect_success \
1014 'creating a signed tag pointing to a blob should succeed' '
1015 git-tag -s -m "A message for a blob" blob-signed-tag HEAD:foo &&
1016 get_tag_msg blob-signed-tag >actual &&
1017 git diff expect actual
1018'
1019
1020get_tag_header tag-signed-tag $tag tag $time >expect
1021echo "A message for another tag" >>expect
1022echo '-----BEGIN PGP SIGNATURE-----' >>expect
1023test_expect_success \
1024 'creating a signed tag pointing to another tag should succeed' '
1025 git-tag -s -m "A message for another tag" tag-signed-tag signed-tag &&
1026 get_tag_msg tag-signed-tag >actual &&
1027 git diff expect actual
1028'
1029
aba91192
CR
1030# try to sign with bad user.signingkey
1031git config user.signingkey BobTheMouse
41ac414e 1032test_expect_success \
aba91192 1033 'git-tag -s fails if gpg is misconfigured' \
41ac414e 1034 '! git tag -s -m tail tag-gpg-failure'
aba91192
CR
1035git config --unset user.signingkey
1036
ef5a6fb5
CR
1037# try to verify without gpg:
1038
1039rm -rf gpghome
41ac414e 1040test_expect_success \
ef5a6fb5 1041 'verify signed tag fails when public key is not present' \
41ac414e 1042 '! git-tag -v signed-tag'
ef5a6fb5 1043
41ac414e 1044test_expect_success \
eb9d2b91 1045 'git-tag -a fails if tag annotation is empty' '
41ac414e 1046 ! (GIT_EDITOR=cat git tag -a initial-comment)
eb9d2b91
MH
1047'
1048
4d8b1dc8
MH
1049test_expect_success \
1050 'message in editor has initial comment' '
eb9d2b91
MH
1051 GIT_EDITOR=cat git tag -a initial-comment > actual
1052 # check the first line --- should be empty
1053 first=$(sed -e 1q <actual) &&
1054 test -z "$first" &&
1055 # remove commented lines from the remainder -- should be empty
1056 rest=$(sed -e 1d -e '/^#/d' <actual) &&
1057 test -z "$rest"
4d8b1dc8
MH
1058'
1059
1060get_tag_header reuse $commit commit $time >expect
1061echo "An annotation to be reused" >> expect
1062test_expect_success \
1063 'overwriting an annoted tag should use its previous body' '
1064 git tag -a -m "An annotation to be reused" reuse &&
1065 GIT_EDITOR=true git tag -f -a reuse &&
1066 get_tag_msg reuse >actual &&
1067 git diff expect actual
1068'
1069
ef5a6fb5 1070test_done