t / t6300-for-each-ref.shon commit branch: implement '--format' option (3d9e4ce)
   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 23:18:43 2006 +0000
  12datestamp=1151968723
  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                 sym) ref=refs/heads/sym ;;
  42                   *) ref=$1 ;;
  43        esac
  44        printf '%s\n' "$3" >expected
  45        test_expect_${4:-success} $PREREQ "basic atom: $1 $2" "
  46                git for-each-ref --format='%($2)' $ref >actual &&
  47                sanitize_pgp <actual >actual.clean &&
  48                test_cmp expected actual.clean
  49        "
  50}
  51
  52test_atom head refname refs/heads/master
  53test_atom head refname:short master
  54test_atom head refname:lstrip=1 heads/master
  55test_atom head refname:lstrip=2 master
  56test_atom head refname:lstrip=-1 master
  57test_atom head refname:lstrip=-2 heads/master
  58test_atom head refname:rstrip=1 refs/heads
  59test_atom head refname:rstrip=2 refs
  60test_atom head refname:rstrip=-1 refs
  61test_atom head refname:rstrip=-2 refs/heads
  62test_atom head upstream refs/remotes/origin/master
  63test_atom head upstream:short origin/master
  64test_atom head upstream:lstrip=2 origin/master
  65test_atom head upstream:lstrip=-2 origin/master
  66test_atom head upstream:rstrip=2 refs/remotes
  67test_atom head upstream:rstrip=-2 refs/remotes
  68test_atom head push refs/remotes/myfork/master
  69test_atom head push:short myfork/master
  70test_atom head push:lstrip=1 remotes/myfork/master
  71test_atom head push:lstrip=-1 master
  72test_atom head push:rstrip=1 refs/remotes/myfork
  73test_atom head push:rstrip=-1 refs
  74test_atom head objecttype commit
  75test_atom head objectsize 171
  76test_atom head objectname $(git rev-parse refs/heads/master)
  77test_atom head objectname:short $(git rev-parse --short refs/heads/master)
  78test_atom head objectname:short=1 $(git rev-parse --short=1 refs/heads/master)
  79test_atom head objectname:short=10 $(git rev-parse --short=10 refs/heads/master)
  80test_atom head tree $(git rev-parse refs/heads/master^{tree})
  81test_atom head parent ''
  82test_atom head numparent 0
  83test_atom head object ''
  84test_atom head type ''
  85test_atom head '*objectname' ''
  86test_atom head '*objecttype' ''
  87test_atom head author 'A U Thor <author@example.com> 1151968724 +0200'
  88test_atom head authorname 'A U Thor'
  89test_atom head authoremail '<author@example.com>'
  90test_atom head authordate 'Tue Jul 4 01:18:44 2006 +0200'
  91test_atom head committer 'C O Mitter <committer@example.com> 1151968723 +0200'
  92test_atom head committername 'C O Mitter'
  93test_atom head committeremail '<committer@example.com>'
  94test_atom head committerdate 'Tue Jul 4 01:18:43 2006 +0200'
  95test_atom head tag ''
  96test_atom head tagger ''
  97test_atom head taggername ''
  98test_atom head taggeremail ''
  99test_atom head taggerdate ''
 100test_atom head creator 'C O Mitter <committer@example.com> 1151968723 +0200'
 101test_atom head creatordate 'Tue Jul 4 01:18:43 2006 +0200'
 102test_atom head subject 'Initial'
 103test_atom head contents:subject 'Initial'
 104test_atom head body ''
 105test_atom head contents:body ''
 106test_atom head contents:signature ''
 107test_atom head contents 'Initial
 108'
 109test_atom head HEAD '*'
 110
 111test_atom tag refname refs/tags/testtag
 112test_atom tag refname:short testtag
 113test_atom tag upstream ''
 114test_atom tag push ''
 115test_atom tag objecttype tag
 116test_atom tag objectsize 154
 117test_atom tag objectname $(git rev-parse refs/tags/testtag)
 118test_atom tag objectname:short $(git rev-parse --short refs/tags/testtag)
 119test_atom head objectname:short=1 $(git rev-parse --short=1 refs/heads/master)
 120test_atom head objectname:short=10 $(git rev-parse --short=10 refs/heads/master)
 121test_atom tag tree ''
 122test_atom tag parent ''
 123test_atom tag numparent ''
 124test_atom tag object $(git rev-parse refs/tags/testtag^0)
 125test_atom tag type 'commit'
 126test_atom tag '*objectname' 'ea122842f48be4afb2d1fc6a4b96c05885ab7463'
 127test_atom tag '*objecttype' 'commit'
 128test_atom tag author ''
 129test_atom tag authorname ''
 130test_atom tag authoremail ''
 131test_atom tag authordate ''
 132test_atom tag committer ''
 133test_atom tag committername ''
 134test_atom tag committeremail ''
 135test_atom tag committerdate ''
 136test_atom tag tag 'testtag'
 137test_atom tag tagger 'C O Mitter <committer@example.com> 1151968725 +0200'
 138test_atom tag taggername 'C O Mitter'
 139test_atom tag taggeremail '<committer@example.com>'
 140test_atom tag taggerdate 'Tue Jul 4 01:18:45 2006 +0200'
 141test_atom tag creator 'C O Mitter <committer@example.com> 1151968725 +0200'
 142test_atom tag creatordate 'Tue Jul 4 01:18:45 2006 +0200'
 143test_atom tag subject 'Tagging at 1151968727'
 144test_atom tag contents:subject 'Tagging at 1151968727'
 145test_atom tag body ''
 146test_atom tag contents:body ''
 147test_atom tag contents:signature ''
 148test_atom tag contents 'Tagging at 1151968727
 149'
 150test_atom tag HEAD ' '
 151
 152test_expect_success 'Check invalid atoms names are errors' '
 153        test_must_fail git for-each-ref --format="%(INVALID)" refs/heads
 154'
 155
 156test_expect_success 'Check format specifiers are ignored in naming date atoms' '
 157        git for-each-ref --format="%(authordate)" refs/heads &&
 158        git for-each-ref --format="%(authordate:default) %(authordate)" refs/heads &&
 159        git for-each-ref --format="%(authordate) %(authordate:default)" refs/heads &&
 160        git for-each-ref --format="%(authordate:default) %(authordate:default)" refs/heads
 161'
 162
 163test_expect_success 'Check valid format specifiers for date fields' '
 164        git for-each-ref --format="%(authordate:default)" refs/heads &&
 165        git for-each-ref --format="%(authordate:relative)" refs/heads &&
 166        git for-each-ref --format="%(authordate:short)" refs/heads &&
 167        git for-each-ref --format="%(authordate:local)" refs/heads &&
 168        git for-each-ref --format="%(authordate:iso8601)" refs/heads &&
 169        git for-each-ref --format="%(authordate:rfc2822)" refs/heads
 170'
 171
 172test_expect_success 'Check invalid format specifiers are errors' '
 173        test_must_fail git for-each-ref --format="%(authordate:INVALID)" refs/heads
 174'
 175
 176test_expect_success 'arguments to %(objectname:short=) must be positive integers' '
 177        test_must_fail git for-each-ref --format="%(objectname:short=0)" &&
 178        test_must_fail git for-each-ref --format="%(objectname:short=-1)" &&
 179        test_must_fail git for-each-ref --format="%(objectname:short=foo)"
 180'
 181
 182test_date () {
 183        f=$1 &&
 184        committer_date=$2 &&
 185        author_date=$3 &&
 186        tagger_date=$4 &&
 187        cat >expected <<-EOF &&
 188        'refs/heads/master' '$committer_date' '$author_date'
 189        'refs/tags/testtag' '$tagger_date'
 190        EOF
 191        (
 192                git for-each-ref --shell \
 193                        --format="%(refname) %(committerdate${f:+:$f}) %(authordate${f:+:$f})" \
 194                        refs/heads &&
 195                git for-each-ref --shell \
 196                        --format="%(refname) %(taggerdate${f:+:$f})" \
 197                        refs/tags
 198        ) >actual &&
 199        test_cmp expected actual
 200}
 201
 202test_expect_success 'Check unformatted date fields output' '
 203        test_date "" \
 204                "Tue Jul 4 01:18:43 2006 +0200" \
 205                "Tue Jul 4 01:18:44 2006 +0200" \
 206                "Tue Jul 4 01:18:45 2006 +0200"
 207'
 208
 209test_expect_success 'Check format "default" formatted date fields output' '
 210        test_date default \
 211                "Tue Jul 4 01:18:43 2006 +0200" \
 212                "Tue Jul 4 01:18:44 2006 +0200" \
 213                "Tue Jul 4 01:18:45 2006 +0200"
 214'
 215
 216test_expect_success 'Check format "default-local" date fields output' '
 217        test_date default-local "Mon Jul 3 23:18:43 2006" "Mon Jul 3 23:18:44 2006" "Mon Jul 3 23:18:45 2006"
 218'
 219
 220# Don't know how to do relative check because I can't know when this script
 221# is going to be run and can't fake the current time to git, and hence can't
 222# provide expected output.  Instead, I'll just make sure that "relative"
 223# doesn't exit in error
 224test_expect_success 'Check format "relative" date fields output' '
 225        f=relative &&
 226        (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
 227        git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual
 228'
 229
 230# We just check that this is the same as "relative" for now.
 231test_expect_success 'Check format "relative-local" date fields output' '
 232        test_date relative-local \
 233                "$(git for-each-ref --format="%(committerdate:relative)" refs/heads)" \
 234                "$(git for-each-ref --format="%(authordate:relative)" refs/heads)" \
 235                "$(git for-each-ref --format="%(taggerdate:relative)" refs/tags)"
 236'
 237
 238test_expect_success 'Check format "short" date fields output' '
 239        test_date short 2006-07-04 2006-07-04 2006-07-04
 240'
 241
 242test_expect_success 'Check format "short-local" date fields output' '
 243        test_date short-local 2006-07-03 2006-07-03 2006-07-03
 244'
 245
 246test_expect_success 'Check format "local" date fields output' '
 247        test_date local \
 248                "Mon Jul 3 23:18:43 2006" \
 249                "Mon Jul 3 23:18:44 2006" \
 250                "Mon Jul 3 23:18:45 2006"
 251'
 252
 253test_expect_success 'Check format "iso8601" date fields output' '
 254        test_date iso8601 \
 255                "2006-07-04 01:18:43 +0200" \
 256                "2006-07-04 01:18:44 +0200" \
 257                "2006-07-04 01:18:45 +0200"
 258'
 259
 260test_expect_success 'Check format "iso8601-local" date fields output' '
 261        test_date iso8601-local "2006-07-03 23:18:43 +0000" "2006-07-03 23:18:44 +0000" "2006-07-03 23:18:45 +0000"
 262'
 263
 264test_expect_success 'Check format "rfc2822" date fields output' '
 265        test_date rfc2822 \
 266                "Tue, 4 Jul 2006 01:18:43 +0200" \
 267                "Tue, 4 Jul 2006 01:18:44 +0200" \
 268                "Tue, 4 Jul 2006 01:18:45 +0200"
 269'
 270
 271test_expect_success 'Check format "rfc2822-local" date fields output' '
 272        test_date rfc2822-local "Mon, 3 Jul 2006 23:18:43 +0000" "Mon, 3 Jul 2006 23:18:44 +0000" "Mon, 3 Jul 2006 23:18:45 +0000"
 273'
 274
 275test_expect_success 'Check format "raw" date fields output' '
 276        test_date raw "1151968723 +0200" "1151968724 +0200" "1151968725 +0200"
 277'
 278
 279test_expect_success 'Check format "raw-local" date fields output' '
 280        test_date raw-local "1151968723 +0000" "1151968724 +0000" "1151968725 +0000"
 281'
 282
 283test_expect_success 'Check format of strftime date fields' '
 284        echo "my date is 2006-07-04" >expected &&
 285        git for-each-ref \
 286          --format="%(authordate:format:my date is %Y-%m-%d)" \
 287          refs/heads >actual &&
 288        test_cmp expected actual
 289'
 290
 291test_expect_success 'Check format of strftime-local date fields' '
 292        echo "my date is 2006-07-03" >expected &&
 293        git for-each-ref \
 294          --format="%(authordate:format-local:my date is %Y-%m-%d)" \
 295          refs/heads >actual &&
 296        test_cmp expected actual
 297'
 298
 299test_expect_success 'exercise strftime with odd fields' '
 300        echo >expected &&
 301        git for-each-ref --format="%(authordate:format:)" refs/heads >actual &&
 302        test_cmp expected actual &&
 303        long="long format -- $_z40$_z40$_z40$_z40$_z40$_z40$_z40" &&
 304        echo $long >expected &&
 305        git for-each-ref --format="%(authordate:format:$long)" refs/heads >actual &&
 306        test_cmp expected actual
 307'
 308
 309cat >expected <<\EOF
 310refs/heads/master
 311refs/remotes/origin/master
 312refs/tags/testtag
 313EOF
 314
 315test_expect_success 'Verify ascending sort' '
 316        git for-each-ref --format="%(refname)" --sort=refname >actual &&
 317        test_cmp expected actual
 318'
 319
 320
 321cat >expected <<\EOF
 322refs/tags/testtag
 323refs/remotes/origin/master
 324refs/heads/master
 325EOF
 326
 327test_expect_success 'Verify descending sort' '
 328        git for-each-ref --format="%(refname)" --sort=-refname >actual &&
 329        test_cmp expected actual
 330'
 331
 332cat >expected <<\EOF
 333'refs/heads/master'
 334'refs/remotes/origin/master'
 335'refs/tags/testtag'
 336EOF
 337
 338test_expect_success 'Quoting style: shell' '
 339        git for-each-ref --shell --format="%(refname)" >actual &&
 340        test_cmp expected actual
 341'
 342
 343test_expect_success 'Quoting style: perl' '
 344        git for-each-ref --perl --format="%(refname)" >actual &&
 345        test_cmp expected actual
 346'
 347
 348test_expect_success 'Quoting style: python' '
 349        git for-each-ref --python --format="%(refname)" >actual &&
 350        test_cmp expected actual
 351'
 352
 353cat >expected <<\EOF
 354"refs/heads/master"
 355"refs/remotes/origin/master"
 356"refs/tags/testtag"
 357EOF
 358
 359test_expect_success 'Quoting style: tcl' '
 360        git for-each-ref --tcl --format="%(refname)" >actual &&
 361        test_cmp expected actual
 362'
 363
 364for i in "--perl --shell" "-s --python" "--python --tcl" "--tcl --perl"; do
 365        test_expect_success "more than one quoting style: $i" "
 366                git for-each-ref $i 2>&1 | (read line &&
 367                case \$line in
 368                \"error: more than one quoting style\"*) : happy;;
 369                *) false
 370                esac)
 371        "
 372done
 373
 374test_expect_success 'setup for upstream:track[short]' '
 375        test_commit two
 376'
 377
 378test_atom head upstream:track '[ahead 1]'
 379test_atom head upstream:trackshort '>'
 380test_atom head upstream:track,nobracket 'ahead 1'
 381test_atom head upstream:nobracket,track 'ahead 1'
 382test_atom head push:track '[ahead 1]'
 383test_atom head push:trackshort '>'
 384
 385test_expect_success 'Check that :track[short] cannot be used with other atoms' '
 386        test_must_fail git for-each-ref --format="%(refname:track)" 2>/dev/null &&
 387        test_must_fail git for-each-ref --format="%(refname:trackshort)" 2>/dev/null
 388'
 389
 390test_expect_success 'Check that :track[short] works when upstream is invalid' '
 391        cat >expected <<-\EOF &&
 392        [gone]
 393
 394        EOF
 395        test_when_finished "git config branch.master.merge refs/heads/master" &&
 396        git config branch.master.merge refs/heads/does-not-exist &&
 397        git for-each-ref \
 398                --format="%(upstream:track)$LF%(upstream:trackshort)" \
 399                refs/heads >actual &&
 400        test_cmp expected actual
 401'
 402
 403test_expect_success 'Check for invalid refname format' '
 404        test_must_fail git for-each-ref --format="%(refname:INVALID)"
 405'
 406
 407get_color ()
 408{
 409        git config --get-color no.such.slot "$1"
 410}
 411
 412cat >expected <<EOF
 413$(git rev-parse --short refs/heads/master) $(get_color green)master$(get_color reset)
 414$(git rev-parse --short refs/remotes/origin/master) $(get_color green)origin/master$(get_color reset)
 415$(git rev-parse --short refs/tags/testtag) $(get_color green)testtag$(get_color reset)
 416$(git rev-parse --short refs/tags/two) $(get_color green)two$(get_color reset)
 417EOF
 418
 419test_expect_success 'Check %(color:...) ' '
 420        git for-each-ref --format="%(objectname:short) %(color:green)%(refname:short)" >actual &&
 421        test_cmp expected actual
 422'
 423
 424cat >expected <<\EOF
 425heads/master
 426tags/master
 427EOF
 428
 429test_expect_success 'Check ambiguous head and tag refs (strict)' '
 430        git config --bool core.warnambiguousrefs true &&
 431        git checkout -b newtag &&
 432        echo "Using $datestamp" > one &&
 433        git add one &&
 434        git commit -m "Branch" &&
 435        setdate_and_increment &&
 436        git tag -m "Tagging at $datestamp" master &&
 437        git for-each-ref --format "%(refname:short)" refs/heads/master refs/tags/master >actual &&
 438        test_cmp expected actual
 439'
 440
 441cat >expected <<\EOF
 442heads/master
 443master
 444EOF
 445
 446test_expect_success 'Check ambiguous head and tag refs (loose)' '
 447        git config --bool core.warnambiguousrefs false &&
 448        git for-each-ref --format "%(refname:short)" refs/heads/master refs/tags/master >actual &&
 449        test_cmp expected actual
 450'
 451
 452cat >expected <<\EOF
 453heads/ambiguous
 454ambiguous
 455EOF
 456
 457test_expect_success 'Check ambiguous head and tag refs II (loose)' '
 458        git checkout master &&
 459        git tag ambiguous testtag^0 &&
 460        git branch ambiguous testtag^0 &&
 461        git for-each-ref --format "%(refname:short)" refs/heads/ambiguous refs/tags/ambiguous >actual &&
 462        test_cmp expected actual
 463'
 464
 465test_expect_success 'an unusual tag with an incomplete line' '
 466
 467        git tag -m "bogo" bogo &&
 468        bogo=$(git cat-file tag bogo) &&
 469        bogo=$(printf "%s" "$bogo" | git mktag) &&
 470        git tag -f bogo "$bogo" &&
 471        git for-each-ref --format "%(body)" refs/tags/bogo
 472
 473'
 474
 475test_expect_success 'create tag with subject and body content' '
 476        cat >>msg <<-\EOF &&
 477                the subject line
 478
 479                first body line
 480                second body line
 481        EOF
 482        git tag -F msg subject-body
 483'
 484test_atom refs/tags/subject-body subject 'the subject line'
 485test_atom refs/tags/subject-body body 'first body line
 486second body line
 487'
 488test_atom refs/tags/subject-body contents 'the subject line
 489
 490first body line
 491second body line
 492'
 493
 494test_expect_success 'create tag with multiline subject' '
 495        cat >msg <<-\EOF &&
 496                first subject line
 497                second subject line
 498
 499                first body line
 500                second body line
 501        EOF
 502        git tag -F msg multiline
 503'
 504test_atom refs/tags/multiline subject 'first subject line second subject line'
 505test_atom refs/tags/multiline contents:subject 'first subject line second subject line'
 506test_atom refs/tags/multiline body 'first body line
 507second body line
 508'
 509test_atom refs/tags/multiline contents:body 'first body line
 510second body line
 511'
 512test_atom refs/tags/multiline contents:signature ''
 513test_atom refs/tags/multiline contents 'first subject line
 514second subject line
 515
 516first body line
 517second body line
 518'
 519
 520test_expect_success GPG 'create signed tags' '
 521        git tag -s -m "" signed-empty &&
 522        git tag -s -m "subject line" signed-short &&
 523        cat >msg <<-\EOF &&
 524        subject line
 525
 526        body contents
 527        EOF
 528        git tag -s -F msg signed-long
 529'
 530
 531sig='-----BEGIN PGP SIGNATURE-----
 532-----END PGP SIGNATURE-----
 533'
 534
 535PREREQ=GPG
 536test_atom refs/tags/signed-empty subject ''
 537test_atom refs/tags/signed-empty contents:subject ''
 538test_atom refs/tags/signed-empty body "$sig"
 539test_atom refs/tags/signed-empty contents:body ''
 540test_atom refs/tags/signed-empty contents:signature "$sig"
 541test_atom refs/tags/signed-empty contents "$sig"
 542
 543test_atom refs/tags/signed-short subject 'subject line'
 544test_atom refs/tags/signed-short contents:subject 'subject line'
 545test_atom refs/tags/signed-short body "$sig"
 546test_atom refs/tags/signed-short contents:body ''
 547test_atom refs/tags/signed-short contents:signature "$sig"
 548test_atom refs/tags/signed-short contents "subject line
 549$sig"
 550
 551test_atom refs/tags/signed-long subject 'subject line'
 552test_atom refs/tags/signed-long contents:subject 'subject line'
 553test_atom refs/tags/signed-long body "body contents
 554$sig"
 555test_atom refs/tags/signed-long contents:body 'body contents
 556'
 557test_atom refs/tags/signed-long contents:signature "$sig"
 558test_atom refs/tags/signed-long contents "subject line
 559
 560body contents
 561$sig"
 562
 563cat >expected <<EOF
 564$(git rev-parse refs/tags/bogo) <committer@example.com> refs/tags/bogo
 565$(git rev-parse refs/tags/master) <committer@example.com> refs/tags/master
 566EOF
 567
 568test_expect_success 'Verify sort with multiple keys' '
 569        git for-each-ref --format="%(objectname) %(taggeremail) %(refname)" --sort=objectname --sort=taggeremail \
 570                refs/tags/bogo refs/tags/master > actual &&
 571        test_cmp expected actual
 572'
 573
 574
 575test_expect_success 'do not dereference NULL upon %(HEAD) on unborn branch' '
 576        test_when_finished "git checkout master" &&
 577        git for-each-ref --format="%(HEAD) %(refname:short)" refs/heads/ >actual &&
 578        sed -e "s/^\* /  /" actual >expect &&
 579        git checkout --orphan HEAD &&
 580        git for-each-ref --format="%(HEAD) %(refname:short)" refs/heads/ >actual &&
 581        test_cmp expect actual
 582'
 583
 584cat >trailers <<EOF
 585Reviewed-by: A U Thor <author@example.com>
 586Signed-off-by: A U Thor <author@example.com>
 587EOF
 588
 589test_expect_success 'basic atom: head contents:trailers' '
 590        echo "Some contents" > two &&
 591        git add two &&
 592        git commit -F - <<-EOF &&
 593        trailers: this commit message has trailers
 594
 595        Some message contents
 596
 597        $(cat trailers)
 598        EOF
 599        git for-each-ref --format="%(contents:trailers)" refs/heads/master >actual &&
 600        sanitize_pgp <actual >actual.clean &&
 601        # git for-each-ref ends with a blank line
 602        cat >expect <<-EOF &&
 603        $(cat trailers)
 604
 605        EOF
 606        test_cmp expect actual.clean
 607'
 608
 609test_expect_success 'Add symbolic ref for the following tests' '
 610        git symbolic-ref refs/heads/sym refs/heads/master
 611'
 612
 613cat >expected <<EOF
 614refs/heads/master
 615EOF
 616
 617test_expect_success 'Verify usage of %(symref) atom' '
 618        git for-each-ref --format="%(symref)" refs/heads/sym >actual &&
 619        test_cmp expected actual
 620'
 621
 622cat >expected <<EOF
 623heads/master
 624EOF
 625
 626test_expect_success 'Verify usage of %(symref:short) atom' '
 627        git for-each-ref --format="%(symref:short)" refs/heads/sym >actual &&
 628        test_cmp expected actual
 629'
 630
 631cat >expected <<EOF
 632master
 633heads/master
 634EOF
 635
 636test_expect_success 'Verify usage of %(symref:lstrip) atom' '
 637        git for-each-ref --format="%(symref:lstrip=2)" refs/heads/sym > actual &&
 638        git for-each-ref --format="%(symref:lstrip=-2)" refs/heads/sym >> actual &&
 639        test_cmp expected actual
 640'
 641
 642cat >expected <<EOF
 643refs
 644refs/heads
 645EOF
 646
 647test_expect_success 'Verify usage of %(symref:rstrip) atom' '
 648        git for-each-ref --format="%(symref:rstrip=2)" refs/heads/sym > actual &&
 649        git for-each-ref --format="%(symref:rstrip=-2)" refs/heads/sym >> actual &&
 650        test_cmp expected actual
 651'
 652
 653test_done