t / t7004-tag.shon commit git-cvsserver runs hooks/post-receive (cdf6328)
   1#!/bin/sh
   2#
   3# Copyright (c) 2007 Carlos Rica
   4#
   5
   6test_description='git-tag
   7
   8Tests for operations with tags.'
   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
  19test_expect_success 'listing all tags in an empty tree should succeed' '
  20        git tag -l &&
  21        git tag
  22'
  23
  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'
  28
  29test_expect_failure 'looking for a tag in an empty tree should fail' \
  30        'tag_exists mytag'
  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
  56test_expect_success 'listing all tags if one exists should succeed' '
  57        git-tag -l &&
  58        git-tag
  59'
  60
  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'
  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
  86test_expect_failure \
  87        'trying to create a tag with the name of one existing should fail' \
  88        'git tag mytag'
  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
 149test_expect_failure 'trying to delete an already deleted tag should fail' \
 150        'git-tag -d mytag'
 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 &&
 175        git tag -l > actual &&
 176        git diff expect actual &&
 177        git tag > actual &&
 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' '
 188        git-tag -l "*a*" > actual &&
 189        git diff expect actual
 190'
 191
 192cat >expect <<EOF
 193v0.2.1
 194v1.0.1
 195EOF
 196test_expect_success \
 197        'listing tags with a suffix as pattern must print those matching' '
 198        git-tag -l "*.1" > actual &&
 199        git diff expect actual
 200'
 201
 202cat >expect <<EOF
 203t210
 204t211
 205EOF
 206test_expect_success \
 207        'listing tags with a prefix as pattern must print those matching' '
 208        git-tag -l "t21*" > actual &&
 209        git diff expect actual
 210'
 211
 212cat >expect <<EOF
 213a1
 214EOF
 215test_expect_success \
 216        'listing tags using a name as pattern must print that one matching' '
 217        git-tag -l a1 > actual &&
 218        git diff expect actual
 219'
 220
 221cat >expect <<EOF
 222v1.0
 223EOF
 224test_expect_success \
 225        'listing tags using a name as pattern must print that one matching' '
 226        git-tag -l v1.0 > actual &&
 227        git diff expect actual
 228'
 229
 230cat >expect <<EOF
 231v1.0.1
 232v1.1.3
 233EOF
 234test_expect_success \
 235        'listing tags with ? in the pattern should print those matching' '
 236        git-tag -l "v1.?.?" > actual &&
 237        git diff expect actual
 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 &&
 244        git diff expect actual
 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 &&
 256        git diff expect actual
 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 &&
 264        test $(git cat-file -t non-annotated-tag) = commit &&
 265        test $(git rev-parse non-annotated-tag) = $(git rev-parse HEAD)
 266'
 267
 268test_expect_failure 'trying to verify an unknown tag should fail' \
 269        'git-tag -v unknown-tag'
 270
 271test_expect_failure \
 272        'trying to verify a non-annotated and non-signed tag should fail' \
 273        'git-tag -v non-annotated-tag'
 274
 275test_expect_failure \
 276        'trying to verify many non-annotated or unknown tags, should fail' \
 277        'git-tag -v unknown-tag1 non-annotated-tag unknown-tag2'
 278
 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
 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
 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 \
 342        'trying to create tags giving both -m or -F options should fail' '
 343        echo "message file 1" >msgfile1 &&
 344        echo "message file 2" >msgfile2 &&
 345        ! tag_exists msgtag &&
 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 &&
 350        ! git-tag -m "message 1" -F msgfile1 -m "message 2" msgtag &&
 351        ! tag_exists msgtag
 352'
 353
 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
 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 &&
 494        git-tag -n 0 -l | grep "^tag-one-line" >actual &&
 495        git diff expect actual &&
 496        git-tag -n 0 -l tag-one-line >actual &&
 497        git diff expect actual &&
 498
 499        echo "tag-one-line    A msg" >expect &&
 500        git-tag -n xxx -l | grep "^tag-one-line" >actual &&
 501        git diff expect actual &&
 502        git-tag -n "" -l | grep "^tag-one-line" >actual &&
 503        git diff expect actual &&
 504        git-tag -n 1 -l | grep "^tag-one-line" >actual &&
 505        git diff expect actual &&
 506        git-tag -n -l | grep "^tag-one-line" >actual &&
 507        git diff expect actual &&
 508        git-tag -n 1 -l tag-one-line >actual &&
 509        git diff expect actual &&
 510        git-tag -n 2 -l tag-one-line >actual &&
 511        git diff expect actual &&
 512        git-tag -n 999 -l tag-one-line >actual &&
 513        git diff expect actual
 514'
 515
 516test_expect_success \
 517        'listing the zero-lines message of a non-signed tag should succeed' '
 518        git-tag -m "" tag-zero-lines &&
 519
 520        echo "tag-zero-lines" >expect &&
 521        git-tag -l | grep "^tag-zero-lines" >actual &&
 522        git diff expect actual &&
 523        git-tag -n 0 -l | grep "^tag-zero-lines" >actual &&
 524        git diff expect actual &&
 525        git-tag -n 0 -l tag-zero-lines >actual &&
 526        git diff expect actual &&
 527
 528        echo "tag-zero-lines  " >expect &&
 529        git-tag -n 1 -l | grep "^tag-zero-lines" >actual &&
 530        git diff expect actual &&
 531        git-tag -n -l | grep "^tag-zero-lines" >actual &&
 532        git diff expect actual &&
 533        git-tag -n 1 -l tag-zero-lines >actual &&
 534        git diff expect actual &&
 535        git-tag -n 2 -l tag-zero-lines >actual &&
 536        git diff expect actual &&
 537        git-tag -n 999 -l tag-zero-lines >actual &&
 538        git diff expect actual
 539'
 540
 541echo 'tag line one' >annotagmsg
 542echo 'tag line two' >>annotagmsg
 543echo 'tag line three' >>annotagmsg
 544test_expect_success \
 545        'listing many message lines of a non-signed tag should succeed' '
 546        git-tag -F annotagmsg tag-lines &&
 547
 548        echo "tag-lines" >expect &&
 549        git-tag -l | grep "^tag-lines" >actual &&
 550        git diff expect actual &&
 551        git-tag -n 0 -l | grep "^tag-lines" >actual &&
 552        git diff expect actual &&
 553        git-tag -n 0 -l tag-lines >actual &&
 554        git diff expect actual &&
 555
 556        echo "tag-lines       tag line one" >expect &&
 557        git-tag -n 1 -l | grep "^tag-lines" >actual &&
 558        git diff expect actual &&
 559        git-tag -n -l | grep "^tag-lines" >actual &&
 560        git diff expect actual &&
 561        git-tag -n 1 -l tag-lines >actual &&
 562        git diff expect actual &&
 563
 564        echo "    tag line two" >>expect &&
 565        git-tag -n 2 -l | grep "^ *tag.line" >actual &&
 566        git diff expect actual &&
 567        git-tag -n 2 -l tag-lines >actual &&
 568        git diff expect actual &&
 569
 570        echo "    tag line three" >>expect &&
 571        git-tag -n 3 -l | grep "^ *tag.line" >actual &&
 572        git diff expect actual &&
 573        git-tag -n 3 -l tag-lines >actual &&
 574        git diff expect actual &&
 575        git-tag -n 4 -l | grep "^ *tag.line" >actual &&
 576        git diff expect actual &&
 577        git-tag -n 4 -l tag-lines >actual &&
 578        git diff expect actual &&
 579        git-tag -n 99 -l | grep "^ *tag.line" >actual &&
 580        git diff expect actual &&
 581        git-tag -n 99 -l tag-lines >actual &&
 582        git diff expect actual
 583'
 584
 585# trying to verify annotated non-signed tags:
 586
 587test_expect_success \
 588        'trying to verify an annotated non-signed tag should fail' '
 589        tag_exists annotated-tag &&
 590        ! git-tag -v annotated-tag
 591'
 592
 593test_expect_success \
 594        'trying to verify a file-annotated non-signed tag should fail' '
 595        tag_exists file-annotated-tag &&
 596        ! git-tag -v file-annotated-tag
 597'
 598
 599test_expect_success \
 600        'trying to verify two annotated non-signed tags should fail' '
 601        tag_exists annotated-tag file-annotated-tag &&
 602        ! git-tag -v annotated-tag file-annotated-tag
 603'
 604
 605# creating and verifying signed tags:
 606
 607gpg --version >/dev/null
 608if [ $? -eq 127 ]; then
 609        echo "Skipping signed tags tests, because gpg was not found"
 610        test_done
 611        exit
 612fi
 613
 614# As said here: http://www.gnupg.org/documentation/faqs.html#q6.19
 615# the gpg version 1.0.6 didn't parse trust packets correctly, so for
 616# that version, creation of signed tags using the generated key fails.
 617case "$(gpg --version)" in
 618'gpg (GnuPG) 1.0.6'*)
 619        echo "Skipping signed tag tests, because a bug in 1.0.6 version"
 620        test_done
 621        exit
 622        ;;
 623esac
 624
 625# key generation info: gpg --homedir t/t7004 --gen-key
 626# Type DSA and Elgamal, size 2048 bits, no expiration date.
 627# Name and email: C O Mitter <committer@example.com>
 628# No password given, to enable non-interactive operation.
 629
 630cp -R ../t7004 ./gpghome
 631chmod 0700 gpghome
 632export GNUPGHOME="$(pwd)/gpghome"
 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' '
 638        git-tag -s -m "A signed tag message" signed-tag &&
 639        get_tag_msg signed-tag >actual &&
 640        git diff expect actual
 641'
 642
 643cat >sigmsgfile <<EOF
 644Another signed tag
 645message in a file.
 646EOF
 647get_tag_header file-signed-tag $commit commit $time >expect
 648cat sigmsgfile >>expect
 649echo '-----BEGIN PGP SIGNATURE-----' >>expect
 650test_expect_success \
 651        'creating a signed tag with -F messagefile should succeed' '
 652        git-tag -s -F sigmsgfile file-signed-tag &&
 653        get_tag_msg file-signed-tag >actual &&
 654        git diff expect actual
 655'
 656
 657cat >siginputmsg <<EOF
 658A signed tag message from
 659the standard input
 660EOF
 661get_tag_header stdin-signed-tag $commit commit $time >expect
 662cat siginputmsg >>expect
 663echo '-----BEGIN PGP SIGNATURE-----' >>expect
 664test_expect_success 'creating a signed tag with -F - should succeed' '
 665        git-tag -s -F - stdin-signed-tag <siginputmsg &&
 666        get_tag_msg stdin-signed-tag >actual &&
 667        git diff expect actual
 668'
 669
 670cat >fakeeditor <<'EOF'
 671#!/bin/sh
 672test -n "$1" && exec >"$1"
 673echo A signed tag message
 674echo from a fake editor.
 675EOF
 676chmod +x fakeeditor
 677get_tag_header implied-annotate $commit commit $time >expect
 678./fakeeditor >>expect
 679echo '-----BEGIN PGP SIGNATURE-----' >>expect
 680test_expect_success '-s implies annotated tag' '
 681        GIT_EDITOR=./fakeeditor git-tag -s implied-annotate &&
 682        get_tag_msg implied-annotate >actual &&
 683        git diff expect actual
 684'
 685
 686test_expect_success \
 687        'trying to create a signed tag with non-existing -F file should fail' '
 688        ! test -f nonexistingfile &&
 689        ! tag_exists nosigtag &&
 690        ! git-tag -s -F nonexistingfile nosigtag &&
 691        ! tag_exists nosigtag
 692'
 693
 694test_expect_success 'verifying a signed tag should succeed' \
 695        'git-tag -v signed-tag'
 696
 697test_expect_success 'verifying two signed tags in one command should succeed' \
 698        'git-tag -v signed-tag file-signed-tag'
 699
 700test_expect_success \
 701        'verifying many signed and non-signed tags should fail' '
 702        ! git-tag -v signed-tag annotated-tag &&
 703        ! git-tag -v file-annotated-tag file-signed-tag &&
 704        ! git-tag -v annotated-tag file-signed-tag file-annotated-tag &&
 705        ! git-tag -v signed-tag annotated-tag file-signed-tag
 706'
 707
 708test_expect_success 'verifying a forged tag should fail' '
 709        forged=$(git cat-file tag signed-tag |
 710                sed -e "s/signed-tag/forged-tag/" |
 711                git mktag) &&
 712        git tag forged-tag $forged &&
 713        ! git-tag -v forged-tag
 714'
 715
 716# blank and empty messages for signed tags:
 717
 718get_tag_header empty-signed-tag $commit commit $time >expect
 719echo '-----BEGIN PGP SIGNATURE-----' >>expect
 720test_expect_success \
 721        'creating a signed tag with an empty -m message should succeed' '
 722        git-tag -s -m "" empty-signed-tag &&
 723        get_tag_msg empty-signed-tag >actual &&
 724        git diff expect actual &&
 725        git-tag -v empty-signed-tag
 726'
 727
 728>sigemptyfile
 729get_tag_header emptyfile-signed-tag $commit commit $time >expect
 730echo '-----BEGIN PGP SIGNATURE-----' >>expect
 731test_expect_success \
 732        'creating a signed tag with an empty -F messagefile should succeed' '
 733        git-tag -s -F sigemptyfile emptyfile-signed-tag &&
 734        get_tag_msg emptyfile-signed-tag >actual &&
 735        git diff expect actual &&
 736        git-tag -v emptyfile-signed-tag
 737'
 738
 739printf '\n\n  \n\t\nLeading blank lines\n' > sigblanksfile
 740printf '\n\t \t  \nRepeated blank lines\n' >>sigblanksfile
 741printf '\n\n\nTrailing spaces      \t  \n' >>sigblanksfile
 742printf '\nTrailing blank lines\n\n\t \n\n' >>sigblanksfile
 743get_tag_header blanks-signed-tag $commit commit $time >expect
 744cat >>expect <<EOF
 745Leading blank lines
 746
 747Repeated blank lines
 748
 749Trailing spaces
 750
 751Trailing blank lines
 752EOF
 753echo '-----BEGIN PGP SIGNATURE-----' >>expect
 754test_expect_success \
 755        'extra blanks in the message for a signed tag should be removed' '
 756        git-tag -s -F sigblanksfile blanks-signed-tag &&
 757        get_tag_msg blanks-signed-tag >actual &&
 758        git diff expect actual &&
 759        git-tag -v blanks-signed-tag
 760'
 761
 762get_tag_header blank-signed-tag $commit commit $time >expect
 763echo '-----BEGIN PGP SIGNATURE-----' >>expect
 764test_expect_success \
 765        'creating a signed tag with a blank -m message should succeed' '
 766        git-tag -s -m "     " blank-signed-tag &&
 767        get_tag_msg blank-signed-tag >actual &&
 768        git diff expect actual &&
 769        git-tag -v blank-signed-tag
 770'
 771
 772echo '     ' >sigblankfile
 773echo ''      >>sigblankfile
 774echo '  '    >>sigblankfile
 775get_tag_header blankfile-signed-tag $commit commit $time >expect
 776echo '-----BEGIN PGP SIGNATURE-----' >>expect
 777test_expect_success \
 778        'creating a signed tag with blank -F file with spaces should succeed' '
 779        git-tag -s -F sigblankfile blankfile-signed-tag &&
 780        get_tag_msg blankfile-signed-tag >actual &&
 781        git diff expect actual &&
 782        git-tag -v blankfile-signed-tag
 783'
 784
 785printf '      ' >sigblanknonlfile
 786get_tag_header blanknonlfile-signed-tag $commit commit $time >expect
 787echo '-----BEGIN PGP SIGNATURE-----' >>expect
 788test_expect_success \
 789        'creating a signed tag with spaces and no newline should succeed' '
 790        git-tag -s -F sigblanknonlfile blanknonlfile-signed-tag &&
 791        get_tag_msg blanknonlfile-signed-tag >actual &&
 792        git diff expect actual &&
 793        git-tag -v signed-tag
 794'
 795
 796# messages with commented lines for signed tags:
 797
 798cat >sigcommentsfile <<EOF
 799# A comment
 800
 801############
 802The message.
 803############
 804One line.
 805
 806
 807# commented lines
 808# commented lines
 809
 810Another line.
 811# comments
 812
 813Last line.
 814EOF
 815get_tag_header comments-signed-tag $commit commit $time >expect
 816cat >>expect <<EOF
 817The message.
 818One line.
 819
 820Another line.
 821
 822Last line.
 823EOF
 824echo '-----BEGIN PGP SIGNATURE-----' >>expect
 825test_expect_success \
 826        'creating a signed tag with a -F file with #comments should succeed' '
 827        git-tag -s -F sigcommentsfile comments-signed-tag &&
 828        get_tag_msg comments-signed-tag >actual &&
 829        git diff expect actual &&
 830        git-tag -v comments-signed-tag
 831'
 832
 833get_tag_header comment-signed-tag $commit commit $time >expect
 834echo '-----BEGIN PGP SIGNATURE-----' >>expect
 835test_expect_success \
 836        'creating a signed tag with #commented -m message should succeed' '
 837        git-tag -s -m "#comment" comment-signed-tag &&
 838        get_tag_msg comment-signed-tag >actual &&
 839        git diff expect actual &&
 840        git-tag -v comment-signed-tag
 841'
 842
 843echo '#comment' >sigcommentfile
 844echo ''         >>sigcommentfile
 845echo '####'     >>sigcommentfile
 846get_tag_header commentfile-signed-tag $commit commit $time >expect
 847echo '-----BEGIN PGP SIGNATURE-----' >>expect
 848test_expect_success \
 849        'creating a signed tag with #commented -F messagefile should succeed' '
 850        git-tag -s -F sigcommentfile commentfile-signed-tag &&
 851        get_tag_msg commentfile-signed-tag >actual &&
 852        git diff expect actual &&
 853        git-tag -v commentfile-signed-tag
 854'
 855
 856printf '#comment' >sigcommentnonlfile
 857get_tag_header commentnonlfile-signed-tag $commit commit $time >expect
 858echo '-----BEGIN PGP SIGNATURE-----' >>expect
 859test_expect_success \
 860        'creating a signed tag with a #comment and no newline should succeed' '
 861        git-tag -s -F sigcommentnonlfile commentnonlfile-signed-tag &&
 862        get_tag_msg commentnonlfile-signed-tag >actual &&
 863        git diff expect actual &&
 864        git-tag -v commentnonlfile-signed-tag
 865'
 866
 867# listing messages for signed tags:
 868
 869test_expect_success \
 870        'listing the one-line message of a signed tag should succeed' '
 871        git-tag -s -m "A message line signed" stag-one-line &&
 872
 873        echo "stag-one-line" >expect &&
 874        git-tag -l | grep "^stag-one-line" >actual &&
 875        git diff expect actual &&
 876        git-tag -n 0 -l | grep "^stag-one-line" >actual &&
 877        git diff expect actual &&
 878        git-tag -n 0 -l stag-one-line >actual &&
 879        git diff expect actual &&
 880
 881        echo "stag-one-line   A message line signed" >expect &&
 882        git-tag -n xxx -l | grep "^stag-one-line" >actual &&
 883        git diff expect actual &&
 884        git-tag -n "" -l | grep "^stag-one-line" >actual &&
 885        git diff expect actual &&
 886        git-tag -n 1 -l | grep "^stag-one-line" >actual &&
 887        git diff expect actual &&
 888        git-tag -n -l | grep "^stag-one-line" >actual &&
 889        git diff expect actual &&
 890        git-tag -n 1 -l stag-one-line >actual &&
 891        git diff expect actual &&
 892        git-tag -n 2 -l stag-one-line >actual &&
 893        git diff expect actual &&
 894        git-tag -n 999 -l stag-one-line >actual &&
 895        git diff expect actual
 896'
 897
 898test_expect_success \
 899        'listing the zero-lines message of a signed tag should succeed' '
 900        git-tag -s -m "" stag-zero-lines &&
 901
 902        echo "stag-zero-lines" >expect &&
 903        git-tag -l | grep "^stag-zero-lines" >actual &&
 904        git diff expect actual &&
 905        git-tag -n 0 -l | grep "^stag-zero-lines" >actual &&
 906        git diff expect actual &&
 907        git-tag -n 0 -l stag-zero-lines >actual &&
 908        git diff expect actual &&
 909
 910        echo "stag-zero-lines " >expect &&
 911        git-tag -n 1 -l | grep "^stag-zero-lines" >actual &&
 912        git diff expect actual &&
 913        git-tag -n -l | grep "^stag-zero-lines" >actual &&
 914        git diff expect actual &&
 915        git-tag -n 1 -l stag-zero-lines >actual &&
 916        git diff expect actual &&
 917        git-tag -n 2 -l stag-zero-lines >actual &&
 918        git diff expect actual &&
 919        git-tag -n 999 -l stag-zero-lines >actual &&
 920        git diff expect actual
 921'
 922
 923echo 'stag line one' >sigtagmsg
 924echo 'stag line two' >>sigtagmsg
 925echo 'stag line three' >>sigtagmsg
 926test_expect_success \
 927        'listing many message lines of a signed tag should succeed' '
 928        git-tag -s -F sigtagmsg stag-lines &&
 929
 930        echo "stag-lines" >expect &&
 931        git-tag -l | grep "^stag-lines" >actual &&
 932        git diff expect actual &&
 933        git-tag -n 0 -l | grep "^stag-lines" >actual &&
 934        git diff expect actual &&
 935        git-tag -n 0 -l stag-lines >actual &&
 936        git diff expect actual &&
 937
 938        echo "stag-lines      stag line one" >expect &&
 939        git-tag -n 1 -l | grep "^stag-lines" >actual &&
 940        git diff expect actual &&
 941        git-tag -n -l | grep "^stag-lines" >actual &&
 942        git diff expect actual &&
 943        git-tag -n 1 -l stag-lines >actual &&
 944        git diff expect actual &&
 945
 946        echo "    stag line two" >>expect &&
 947        git-tag -n 2 -l | grep "^ *stag.line" >actual &&
 948        git diff expect actual &&
 949        git-tag -n 2 -l stag-lines >actual &&
 950        git diff expect actual &&
 951
 952        echo "    stag line three" >>expect &&
 953        git-tag -n 3 -l | grep "^ *stag.line" >actual &&
 954        git diff expect actual &&
 955        git-tag -n 3 -l stag-lines >actual &&
 956        git diff expect actual &&
 957        git-tag -n 4 -l | grep "^ *stag.line" >actual &&
 958        git diff expect actual &&
 959        git-tag -n 4 -l stag-lines >actual &&
 960        git diff expect actual &&
 961        git-tag -n 99 -l | grep "^ *stag.line" >actual &&
 962        git diff expect actual &&
 963        git-tag -n 99 -l stag-lines >actual &&
 964        git diff expect actual
 965'
 966
 967# tags pointing to objects different from commits:
 968
 969tree=$(git rev-parse HEAD^{tree})
 970blob=$(git rev-parse HEAD:foo)
 971tag=$(git rev-parse signed-tag)
 972
 973get_tag_header tree-signed-tag $tree tree $time >expect
 974echo "A message for a tree" >>expect
 975echo '-----BEGIN PGP SIGNATURE-----' >>expect
 976test_expect_success \
 977        'creating a signed tag pointing to a tree should succeed' '
 978        git-tag -s -m "A message for a tree" tree-signed-tag HEAD^{tree} &&
 979        get_tag_msg tree-signed-tag >actual &&
 980        git diff expect actual
 981'
 982
 983get_tag_header blob-signed-tag $blob blob $time >expect
 984echo "A message for a blob" >>expect
 985echo '-----BEGIN PGP SIGNATURE-----' >>expect
 986test_expect_success \
 987        'creating a signed tag pointing to a blob should succeed' '
 988        git-tag -s -m "A message for a blob" blob-signed-tag HEAD:foo &&
 989        get_tag_msg blob-signed-tag >actual &&
 990        git diff expect actual
 991'
 992
 993get_tag_header tag-signed-tag $tag tag $time >expect
 994echo "A message for another tag" >>expect
 995echo '-----BEGIN PGP SIGNATURE-----' >>expect
 996test_expect_success \
 997        'creating a signed tag pointing to another tag should succeed' '
 998        git-tag -s -m "A message for another tag" tag-signed-tag signed-tag &&
 999        get_tag_msg tag-signed-tag >actual &&
1000        git diff expect actual
1001'
1002
1003# try to sign with bad user.signingkey
1004git config user.signingkey BobTheMouse
1005test_expect_failure \
1006        'git-tag -s fails if gpg is misconfigured' \
1007        'git tag -s -m tail tag-gpg-failure'
1008git config --unset user.signingkey
1009
1010# try to verify without gpg:
1011
1012rm -rf gpghome
1013test_expect_failure \
1014        'verify signed tag fails when public key is not present' \
1015        'git-tag -v signed-tag'
1016
1017test_expect_failure \
1018        'git-tag -a fails if tag annotation is empty' '
1019        GIT_EDITOR=cat git tag -a initial-comment
1020'
1021
1022test_expect_success \
1023        'message in editor has initial comment' '
1024        GIT_EDITOR=cat git tag -a initial-comment > actual
1025        # check the first line --- should be empty
1026        first=$(sed -e 1q <actual) &&
1027        test -z "$first" &&
1028        # remove commented lines from the remainder -- should be empty
1029        rest=$(sed -e 1d -e '/^#/d' <actual) &&
1030        test -z "$rest"
1031'
1032
1033get_tag_header reuse $commit commit $time >expect
1034echo "An annotation to be reused" >> expect
1035test_expect_success \
1036        'overwriting an annoted tag should use its previous body' '
1037        git tag -a -m "An annotation to be reused" reuse &&
1038        GIT_EDITOR=true git tag -f -a reuse &&
1039        get_tag_msg reuse >actual &&
1040        git diff expect actual
1041'
1042
1043test_done