c7f368c77c057619a1bce93d0586c0c499699e4f
   1#!/bin/sh
   2#
   3# Copyright (c) 2007 Andy Parkins
   4#
   5
   6test_description='for-each-ref test'
   7
   8. ./test-lib.sh
   9. "$TEST_DIRECTORY"/lib-gpg.sh
  10
  11# Mon Jul 3 15:18:43 2006 +0000
  12datestamp=1151939923
  13setdate_and_increment () {
  14    GIT_COMMITTER_DATE="$datestamp +0200"
  15    datestamp=$(expr "$datestamp" + 1)
  16    GIT_AUTHOR_DATE="$datestamp +0200"
  17    datestamp=$(expr "$datestamp" + 1)
  18    export GIT_COMMITTER_DATE GIT_AUTHOR_DATE
  19}
  20
  21test_expect_success setup '
  22        setdate_and_increment &&
  23        echo "Using $datestamp" > one &&
  24        git add one &&
  25        git commit -m "Initial" &&
  26        setdate_and_increment &&
  27        git tag -a -m "Tagging at $datestamp" testtag &&
  28        git update-ref refs/remotes/origin/master master &&
  29        git remote add origin nowhere &&
  30        git config branch.master.remote origin &&
  31        git config branch.master.merge refs/heads/master &&
  32        git remote add myfork elsewhere &&
  33        git config remote.pushdefault myfork &&
  34        git config push.default current
  35'
  36
  37test_atom() {
  38        case "$1" in
  39                head) ref=refs/heads/master ;;
  40                 tag) ref=refs/tags/testtag ;;
  41                   *) ref=$1 ;;
  42        esac
  43        printf '%s\n' "$3" >expected
  44        test_expect_${4:-success} $PREREQ "basic atom: $1 $2" "
  45                git for-each-ref --format='%($2)' $ref >actual &&
  46                sanitize_pgp <actual >actual.clean &&
  47                test_cmp expected actual.clean
  48        "
  49}
  50
  51test_atom head refname refs/heads/master
  52test_atom head upstream refs/remotes/origin/master
  53test_atom head push refs/remotes/myfork/master
  54test_atom head objecttype commit
  55test_atom head objectsize 171
  56test_atom head objectname $(git rev-parse refs/heads/master)
  57test_atom head tree $(git rev-parse refs/heads/master^{tree})
  58test_atom head parent ''
  59test_atom head numparent 0
  60test_atom head object ''
  61test_atom head type ''
  62test_atom head '*objectname' ''
  63test_atom head '*objecttype' ''
  64test_atom head author 'A U Thor <author@example.com> 1151939924 +0200'
  65test_atom head authorname 'A U Thor'
  66test_atom head authoremail '<author@example.com>'
  67test_atom head authordate 'Mon Jul 3 17:18:44 2006 +0200'
  68test_atom head committer 'C O Mitter <committer@example.com> 1151939923 +0200'
  69test_atom head committername 'C O Mitter'
  70test_atom head committeremail '<committer@example.com>'
  71test_atom head committerdate 'Mon Jul 3 17:18:43 2006 +0200'
  72test_atom head tag ''
  73test_atom head tagger ''
  74test_atom head taggername ''
  75test_atom head taggeremail ''
  76test_atom head taggerdate ''
  77test_atom head creator 'C O Mitter <committer@example.com> 1151939923 +0200'
  78test_atom head creatordate 'Mon Jul 3 17:18:43 2006 +0200'
  79test_atom head subject 'Initial'
  80test_atom head contents:subject 'Initial'
  81test_atom head body ''
  82test_atom head contents:body ''
  83test_atom head contents:signature ''
  84test_atom head contents 'Initial
  85'
  86test_atom head HEAD '*'
  87
  88test_atom tag refname refs/tags/testtag
  89test_atom tag upstream ''
  90test_atom tag push ''
  91test_atom tag objecttype tag
  92test_atom tag objectsize 154
  93test_atom tag objectname $(git rev-parse refs/tags/testtag)
  94test_atom tag tree ''
  95test_atom tag parent ''
  96test_atom tag numparent ''
  97test_atom tag object $(git rev-parse refs/tags/testtag^0)
  98test_atom tag type 'commit'
  99test_atom tag '*objectname' '67a36f10722846e891fbada1ba48ed035de75581'
 100test_atom tag '*objecttype' 'commit'
 101test_atom tag author ''
 102test_atom tag authorname ''
 103test_atom tag authoremail ''
 104test_atom tag authordate ''
 105test_atom tag committer ''
 106test_atom tag committername ''
 107test_atom tag committeremail ''
 108test_atom tag committerdate ''
 109test_atom tag tag 'testtag'
 110test_atom tag tagger 'C O Mitter <committer@example.com> 1151939925 +0200'
 111test_atom tag taggername 'C O Mitter'
 112test_atom tag taggeremail '<committer@example.com>'
 113test_atom tag taggerdate 'Mon Jul 3 17:18:45 2006 +0200'
 114test_atom tag creator 'C O Mitter <committer@example.com> 1151939925 +0200'
 115test_atom tag creatordate 'Mon Jul 3 17:18:45 2006 +0200'
 116test_atom tag subject 'Tagging at 1151939927'
 117test_atom tag contents:subject 'Tagging at 1151939927'
 118test_atom tag body ''
 119test_atom tag contents:body ''
 120test_atom tag contents:signature ''
 121test_atom tag contents 'Tagging at 1151939927
 122'
 123test_atom tag HEAD ' '
 124
 125test_expect_success 'Check invalid atoms names are errors' '
 126        test_must_fail git for-each-ref --format="%(INVALID)" refs/heads
 127'
 128
 129test_expect_success 'Check format specifiers are ignored in naming date atoms' '
 130        git for-each-ref --format="%(authordate)" refs/heads &&
 131        git for-each-ref --format="%(authordate:default) %(authordate)" refs/heads &&
 132        git for-each-ref --format="%(authordate) %(authordate:default)" refs/heads &&
 133        git for-each-ref --format="%(authordate:default) %(authordate:default)" refs/heads
 134'
 135
 136test_expect_success 'Check valid format specifiers for date fields' '
 137        git for-each-ref --format="%(authordate:default)" refs/heads &&
 138        git for-each-ref --format="%(authordate:relative)" refs/heads &&
 139        git for-each-ref --format="%(authordate:short)" refs/heads &&
 140        git for-each-ref --format="%(authordate:local)" refs/heads &&
 141        git for-each-ref --format="%(authordate:iso8601)" refs/heads &&
 142        git for-each-ref --format="%(authordate:rfc2822)" refs/heads
 143'
 144
 145test_expect_success 'Check invalid format specifiers are errors' '
 146        test_must_fail git for-each-ref --format="%(authordate:INVALID)" refs/heads
 147'
 148
 149cat >expected <<\EOF
 150'refs/heads/master' 'Mon Jul 3 17:18:43 2006 +0200' 'Mon Jul 3 17:18:44 2006 +0200'
 151'refs/tags/testtag' 'Mon Jul 3 17:18:45 2006 +0200'
 152EOF
 153
 154test_expect_success 'Check unformatted date fields output' '
 155        (git for-each-ref --shell --format="%(refname) %(committerdate) %(authordate)" refs/heads &&
 156        git for-each-ref --shell --format="%(refname) %(taggerdate)" refs/tags) >actual &&
 157        test_cmp expected actual
 158'
 159
 160test_expect_success 'Check format "default" formatted date fields output' '
 161        f=default &&
 162        (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
 163        git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual &&
 164        test_cmp expected actual
 165'
 166
 167# Don't know how to do relative check because I can't know when this script
 168# is going to be run and can't fake the current time to git, and hence can't
 169# provide expected output.  Instead, I'll just make sure that "relative"
 170# doesn't exit in error
 171#
 172#cat >expected <<\EOF
 173#
 174#EOF
 175#
 176test_expect_success 'Check format "relative" date fields output' '
 177        f=relative &&
 178        (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
 179        git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual
 180'
 181
 182cat >expected <<\EOF
 183'refs/heads/master' '2006-07-03' '2006-07-03'
 184'refs/tags/testtag' '2006-07-03'
 185EOF
 186
 187test_expect_success 'Check format "short" date fields output' '
 188        f=short &&
 189        (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
 190        git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual &&
 191        test_cmp expected actual
 192'
 193
 194cat >expected <<\EOF
 195'refs/heads/master' 'Mon Jul 3 15:18:43 2006' 'Mon Jul 3 15:18:44 2006'
 196'refs/tags/testtag' 'Mon Jul 3 15:18:45 2006'
 197EOF
 198
 199test_expect_success 'Check format "local" date fields output' '
 200        f=local &&
 201        (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
 202        git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual &&
 203        test_cmp expected actual
 204'
 205
 206cat >expected <<\EOF
 207'refs/heads/master' '2006-07-03 17:18:43 +0200' '2006-07-03 17:18:44 +0200'
 208'refs/tags/testtag' '2006-07-03 17:18:45 +0200'
 209EOF
 210
 211test_expect_success 'Check format "iso8601" date fields output' '
 212        f=iso8601 &&
 213        (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
 214        git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual &&
 215        test_cmp expected actual
 216'
 217
 218cat >expected <<\EOF
 219'refs/heads/master' 'Mon, 3 Jul 2006 17:18:43 +0200' 'Mon, 3 Jul 2006 17:18:44 +0200'
 220'refs/tags/testtag' 'Mon, 3 Jul 2006 17:18:45 +0200'
 221EOF
 222
 223test_expect_success 'Check format "rfc2822" date fields output' '
 224        f=rfc2822 &&
 225        (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
 226        git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual &&
 227        test_cmp expected actual
 228'
 229
 230test_expect_success 'Check format of strftime date fields' '
 231        echo "my date is 2006-07-03" >expected &&
 232        git for-each-ref \
 233          --format="%(authordate:format:my date is %Y-%m-%d)" \
 234          refs/heads >actual &&
 235        test_cmp expected actual
 236'
 237
 238cat >expected <<\EOF
 239refs/heads/master
 240refs/remotes/origin/master
 241refs/tags/testtag
 242EOF
 243
 244test_expect_success 'Verify ascending sort' '
 245        git for-each-ref --format="%(refname)" --sort=refname >actual &&
 246        test_cmp expected actual
 247'
 248
 249
 250cat >expected <<\EOF
 251refs/tags/testtag
 252refs/remotes/origin/master
 253refs/heads/master
 254EOF
 255
 256test_expect_success 'Verify descending sort' '
 257        git for-each-ref --format="%(refname)" --sort=-refname >actual &&
 258        test_cmp expected actual
 259'
 260
 261cat >expected <<\EOF
 262'refs/heads/master'
 263'refs/remotes/origin/master'
 264'refs/tags/testtag'
 265EOF
 266
 267test_expect_success 'Quoting style: shell' '
 268        git for-each-ref --shell --format="%(refname)" >actual &&
 269        test_cmp expected actual
 270'
 271
 272test_expect_success 'Quoting style: perl' '
 273        git for-each-ref --perl --format="%(refname)" >actual &&
 274        test_cmp expected actual
 275'
 276
 277test_expect_success 'Quoting style: python' '
 278        git for-each-ref --python --format="%(refname)" >actual &&
 279        test_cmp expected actual
 280'
 281
 282cat >expected <<\EOF
 283"refs/heads/master"
 284"refs/remotes/origin/master"
 285"refs/tags/testtag"
 286EOF
 287
 288test_expect_success 'Quoting style: tcl' '
 289        git for-each-ref --tcl --format="%(refname)" >actual &&
 290        test_cmp expected actual
 291'
 292
 293for i in "--perl --shell" "-s --python" "--python --tcl" "--tcl --perl"; do
 294        test_expect_success "more than one quoting style: $i" "
 295                git for-each-ref $i 2>&1 | (read line &&
 296                case \$line in
 297                \"error: more than one quoting style\"*) : happy;;
 298                *) false
 299                esac)
 300        "
 301done
 302
 303cat >expected <<\EOF
 304master
 305testtag
 306EOF
 307
 308test_expect_success 'Check short refname format' '
 309        (git for-each-ref --format="%(refname:short)" refs/heads &&
 310        git for-each-ref --format="%(refname:short)" refs/tags) >actual &&
 311        test_cmp expected actual
 312'
 313
 314cat >expected <<EOF
 315origin/master
 316EOF
 317
 318test_expect_success 'Check short upstream format' '
 319        git for-each-ref --format="%(upstream:short)" refs/heads >actual &&
 320        test_cmp expected actual
 321'
 322
 323test_expect_success 'setup for upstream:track[short]' '
 324        test_commit two
 325'
 326
 327cat >expected <<EOF
 328[ahead 1]
 329EOF
 330
 331test_expect_success 'Check upstream:track format' '
 332        git for-each-ref --format="%(upstream:track)" refs/heads >actual &&
 333        test_cmp expected actual
 334'
 335
 336cat >expected <<EOF
 337>
 338EOF
 339
 340test_expect_success 'Check upstream:trackshort format' '
 341        git for-each-ref --format="%(upstream:trackshort)" refs/heads >actual &&
 342        test_cmp expected actual
 343'
 344
 345test_expect_success 'Check that :track[short] cannot be used with other atoms' '
 346        test_must_fail git for-each-ref --format="%(refname:track)" 2>/dev/null &&
 347        test_must_fail git for-each-ref --format="%(refname:trackshort)" 2>/dev/null
 348'
 349
 350test_expect_success 'Check that :track[short] works when upstream is invalid' '
 351        cat >expected <<-\EOF &&
 352
 353
 354        EOF
 355        test_when_finished "git config branch.master.merge refs/heads/master" &&
 356        git config branch.master.merge refs/heads/does-not-exist &&
 357        git for-each-ref \
 358                --format="%(upstream:track)$LF%(upstream:trackshort)" \
 359                refs/heads >actual &&
 360        test_cmp expected actual
 361'
 362
 363test_expect_success '%(push) supports tracking specifiers, too' '
 364        echo "[ahead 1]" >expected &&
 365        git for-each-ref --format="%(push:track)" refs/heads >actual &&
 366        test_cmp expected actual
 367'
 368
 369cat >expected <<EOF
 370$(git rev-parse --short HEAD)
 371EOF
 372
 373test_expect_success 'Check short objectname format' '
 374        git for-each-ref --format="%(objectname:short)" refs/heads >actual &&
 375        test_cmp expected actual
 376'
 377
 378test_expect_success 'Check for invalid refname format' '
 379        test_must_fail git for-each-ref --format="%(refname:INVALID)"
 380'
 381
 382get_color ()
 383{
 384        git config --get-color no.such.slot "$1"
 385}
 386
 387cat >expected <<EOF
 388$(git rev-parse --short refs/heads/master) $(get_color green)master$(get_color reset)
 389$(git rev-parse --short refs/remotes/origin/master) $(get_color green)origin/master$(get_color reset)
 390$(git rev-parse --short refs/tags/testtag) $(get_color green)testtag$(get_color reset)
 391$(git rev-parse --short refs/tags/two) $(get_color green)two$(get_color reset)
 392EOF
 393
 394test_expect_success 'Check %(color:...) ' '
 395        git for-each-ref --format="%(objectname:short) %(color:green)%(refname:short)" >actual &&
 396        test_cmp expected actual
 397'
 398
 399cat >expected <<\EOF
 400heads/master
 401tags/master
 402EOF
 403
 404test_expect_success 'Check ambiguous head and tag refs (strict)' '
 405        git config --bool core.warnambiguousrefs true &&
 406        git checkout -b newtag &&
 407        echo "Using $datestamp" > one &&
 408        git add one &&
 409        git commit -m "Branch" &&
 410        setdate_and_increment &&
 411        git tag -m "Tagging at $datestamp" master &&
 412        git for-each-ref --format "%(refname:short)" refs/heads/master refs/tags/master >actual &&
 413        test_cmp expected actual
 414'
 415
 416cat >expected <<\EOF
 417heads/master
 418master
 419EOF
 420
 421test_expect_success 'Check ambiguous head and tag refs (loose)' '
 422        git config --bool core.warnambiguousrefs false &&
 423        git for-each-ref --format "%(refname:short)" refs/heads/master refs/tags/master >actual &&
 424        test_cmp expected actual
 425'
 426
 427cat >expected <<\EOF
 428heads/ambiguous
 429ambiguous
 430EOF
 431
 432test_expect_success 'Check ambiguous head and tag refs II (loose)' '
 433        git checkout master &&
 434        git tag ambiguous testtag^0 &&
 435        git branch ambiguous testtag^0 &&
 436        git for-each-ref --format "%(refname:short)" refs/heads/ambiguous refs/tags/ambiguous >actual &&
 437        test_cmp expected actual
 438'
 439
 440test_expect_success 'an unusual tag with an incomplete line' '
 441
 442        git tag -m "bogo" bogo &&
 443        bogo=$(git cat-file tag bogo) &&
 444        bogo=$(printf "%s" "$bogo" | git mktag) &&
 445        git tag -f bogo "$bogo" &&
 446        git for-each-ref --format "%(body)" refs/tags/bogo
 447
 448'
 449
 450test_expect_success 'create tag with subject and body content' '
 451        cat >>msg <<-\EOF &&
 452                the subject line
 453
 454                first body line
 455                second body line
 456        EOF
 457        git tag -F msg subject-body
 458'
 459test_atom refs/tags/subject-body subject 'the subject line'
 460test_atom refs/tags/subject-body body 'first body line
 461second body line
 462'
 463test_atom refs/tags/subject-body contents 'the subject line
 464
 465first body line
 466second body line
 467'
 468
 469test_expect_success 'create tag with multiline subject' '
 470        cat >msg <<-\EOF &&
 471                first subject line
 472                second subject line
 473
 474                first body line
 475                second body line
 476        EOF
 477        git tag -F msg multiline
 478'
 479test_atom refs/tags/multiline subject 'first subject line second subject line'
 480test_atom refs/tags/multiline contents:subject 'first subject line second subject line'
 481test_atom refs/tags/multiline body 'first body line
 482second body line
 483'
 484test_atom refs/tags/multiline contents:body 'first body line
 485second body line
 486'
 487test_atom refs/tags/multiline contents:signature ''
 488test_atom refs/tags/multiline contents 'first subject line
 489second subject line
 490
 491first body line
 492second body line
 493'
 494
 495test_expect_success GPG 'create signed tags' '
 496        git tag -s -m "" signed-empty &&
 497        git tag -s -m "subject line" signed-short &&
 498        cat >msg <<-\EOF &&
 499        subject line
 500
 501        body contents
 502        EOF
 503        git tag -s -F msg signed-long
 504'
 505
 506sig='-----BEGIN PGP SIGNATURE-----
 507-----END PGP SIGNATURE-----
 508'
 509
 510PREREQ=GPG
 511test_atom refs/tags/signed-empty subject ''
 512test_atom refs/tags/signed-empty contents:subject ''
 513test_atom refs/tags/signed-empty body "$sig"
 514test_atom refs/tags/signed-empty contents:body ''
 515test_atom refs/tags/signed-empty contents:signature "$sig"
 516test_atom refs/tags/signed-empty contents "$sig"
 517
 518test_atom refs/tags/signed-short subject 'subject line'
 519test_atom refs/tags/signed-short contents:subject 'subject line'
 520test_atom refs/tags/signed-short body "$sig"
 521test_atom refs/tags/signed-short contents:body ''
 522test_atom refs/tags/signed-short contents:signature "$sig"
 523test_atom refs/tags/signed-short contents "subject line
 524$sig"
 525
 526test_atom refs/tags/signed-long subject 'subject line'
 527test_atom refs/tags/signed-long contents:subject 'subject line'
 528test_atom refs/tags/signed-long body "body contents
 529$sig"
 530test_atom refs/tags/signed-long contents:body 'body contents
 531'
 532test_atom refs/tags/signed-long contents:signature "$sig"
 533test_atom refs/tags/signed-long contents "subject line
 534
 535body contents
 536$sig"
 537
 538cat >expected <<EOF
 539$(git rev-parse refs/tags/master) <committer@example.com> refs/tags/master
 540$(git rev-parse refs/tags/bogo) <committer@example.com> refs/tags/bogo
 541EOF
 542
 543test_expect_success 'Verify sort with multiple keys' '
 544        git for-each-ref --format="%(objectname) %(taggeremail) %(refname)" --sort=objectname --sort=taggeremail \
 545                refs/tags/bogo refs/tags/master > actual &&
 546        test_cmp expected actual
 547'
 548test_done