t / t6300-for-each-ref.shon commit t6300: add tests for "-local" date formats (99264e9)
   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                   *) 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> 1151968724 +0200'
  65test_atom head authorname 'A U Thor'
  66test_atom head authoremail '<author@example.com>'
  67test_atom head authordate 'Tue Jul 4 01:18:44 2006 +0200'
  68test_atom head committer 'C O Mitter <committer@example.com> 1151968723 +0200'
  69test_atom head committername 'C O Mitter'
  70test_atom head committeremail '<committer@example.com>'
  71test_atom head committerdate 'Tue Jul 4 01: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> 1151968723 +0200'
  78test_atom head creatordate 'Tue Jul 4 01: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' 'ea122842f48be4afb2d1fc6a4b96c05885ab7463'
 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> 1151968725 +0200'
 111test_atom tag taggername 'C O Mitter'
 112test_atom tag taggeremail '<committer@example.com>'
 113test_atom tag taggerdate 'Tue Jul 4 01:18:45 2006 +0200'
 114test_atom tag creator 'C O Mitter <committer@example.com> 1151968725 +0200'
 115test_atom tag creatordate 'Tue Jul 4 01:18:45 2006 +0200'
 116test_atom tag subject 'Tagging at 1151968727'
 117test_atom tag contents:subject 'Tagging at 1151968727'
 118test_atom tag body ''
 119test_atom tag contents:body ''
 120test_atom tag contents:signature ''
 121test_atom tag contents 'Tagging at 1151968727
 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
 149test_date () {
 150        f=$1 &&
 151        committer_date=$2 &&
 152        author_date=$3 &&
 153        tagger_date=$4 &&
 154        cat >expected <<-EOF &&
 155        'refs/heads/master' '$committer_date' '$author_date'
 156        'refs/tags/testtag' '$tagger_date'
 157        EOF
 158        (
 159                git for-each-ref --shell \
 160                        --format="%(refname) %(committerdate${f:+:$f}) %(authordate${f:+:$f})" \
 161                        refs/heads &&
 162                git for-each-ref --shell \
 163                        --format="%(refname) %(taggerdate${f:+:$f})" \
 164                        refs/tags
 165        ) >actual &&
 166        test_cmp expected actual
 167}
 168
 169test_expect_success 'Check unformatted date fields output' '
 170        test_date "" \
 171                "Tue Jul 4 01:18:43 2006 +0200" \
 172                "Tue Jul 4 01:18:44 2006 +0200" \
 173                "Tue Jul 4 01:18:45 2006 +0200"
 174'
 175
 176test_expect_success 'Check format "default" formatted date fields output' '
 177        test_date default \
 178                "Tue Jul 4 01:18:43 2006 +0200" \
 179                "Tue Jul 4 01:18:44 2006 +0200" \
 180                "Tue Jul 4 01:18:45 2006 +0200"
 181'
 182
 183test_expect_success 'Check format "default-local" date fields output' '
 184        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"
 185'
 186
 187# Don't know how to do relative check because I can't know when this script
 188# is going to be run and can't fake the current time to git, and hence can't
 189# provide expected output.  Instead, I'll just make sure that "relative"
 190# doesn't exit in error
 191test_expect_success 'Check format "relative" date fields output' '
 192        f=relative &&
 193        (git for-each-ref --shell --format="%(refname) %(committerdate:$f) %(authordate:$f)" refs/heads &&
 194        git for-each-ref --shell --format="%(refname) %(taggerdate:$f)" refs/tags) >actual
 195'
 196
 197# We just check that this is the same as "relative" for now.
 198test_expect_success 'Check format "relative-local" date fields output' '
 199        test_date relative-local \
 200                "$(git for-each-ref --format="%(committerdate:relative)" refs/heads)" \
 201                "$(git for-each-ref --format="%(authordate:relative)" refs/heads)" \
 202                "$(git for-each-ref --format="%(taggerdate:relative)" refs/tags)"
 203'
 204
 205test_expect_success 'Check format "short" date fields output' '
 206        test_date short 2006-07-04 2006-07-04 2006-07-04
 207'
 208
 209test_expect_success 'Check format "short-local" date fields output' '
 210        test_date short-local 2006-07-03 2006-07-03 2006-07-03
 211'
 212
 213test_expect_success 'Check format "local" date fields output' '
 214        test_date local \
 215                "Mon Jul 3 23:18:43 2006" \
 216                "Mon Jul 3 23:18:44 2006" \
 217                "Mon Jul 3 23:18:45 2006"
 218'
 219
 220test_expect_success 'Check format "iso8601" date fields output' '
 221        test_date iso8601 \
 222                "2006-07-04 01:18:43 +0200" \
 223                "2006-07-04 01:18:44 +0200" \
 224                "2006-07-04 01:18:45 +0200"
 225'
 226
 227test_expect_success 'Check format "iso8601-local" date fields output' '
 228        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"
 229'
 230
 231test_expect_success 'Check format "rfc2822" date fields output' '
 232        test_date rfc2822 \
 233                "Tue, 4 Jul 2006 01:18:43 +0200" \
 234                "Tue, 4 Jul 2006 01:18:44 +0200" \
 235                "Tue, 4 Jul 2006 01:18:45 +0200"
 236'
 237
 238test_expect_success 'Check format "rfc2822-local" date fields output' '
 239        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"
 240'
 241
 242test_expect_success 'Check format "raw" date fields output' '
 243        test_date raw "1151968723 +0200" "1151968724 +0200" "1151968725 +0200"
 244'
 245
 246test_expect_success 'Check format "raw-local" date fields output' '
 247        test_date raw-local "1151968723 +0000" "1151968724 +0000" "1151968725 +0000"
 248'
 249
 250test_expect_success 'Check format of strftime date fields' '
 251        echo "my date is 2006-07-04" >expected &&
 252        git for-each-ref \
 253          --format="%(authordate:format:my date is %Y-%m-%d)" \
 254          refs/heads >actual &&
 255        test_cmp expected actual
 256'
 257
 258test_expect_success 'Check format of strftime-local date fields' '
 259        echo "my date is 2006-07-03" >expected &&
 260        git for-each-ref \
 261          --format="%(authordate:format-local:my date is %Y-%m-%d)" \
 262          refs/heads >actual &&
 263        test_cmp expected actual
 264'
 265
 266cat >expected <<\EOF
 267refs/heads/master
 268refs/remotes/origin/master
 269refs/tags/testtag
 270EOF
 271
 272test_expect_success 'Verify ascending sort' '
 273        git for-each-ref --format="%(refname)" --sort=refname >actual &&
 274        test_cmp expected actual
 275'
 276
 277
 278cat >expected <<\EOF
 279refs/tags/testtag
 280refs/remotes/origin/master
 281refs/heads/master
 282EOF
 283
 284test_expect_success 'Verify descending sort' '
 285        git for-each-ref --format="%(refname)" --sort=-refname >actual &&
 286        test_cmp expected actual
 287'
 288
 289cat >expected <<\EOF
 290'refs/heads/master'
 291'refs/remotes/origin/master'
 292'refs/tags/testtag'
 293EOF
 294
 295test_expect_success 'Quoting style: shell' '
 296        git for-each-ref --shell --format="%(refname)" >actual &&
 297        test_cmp expected actual
 298'
 299
 300test_expect_success 'Quoting style: perl' '
 301        git for-each-ref --perl --format="%(refname)" >actual &&
 302        test_cmp expected actual
 303'
 304
 305test_expect_success 'Quoting style: python' '
 306        git for-each-ref --python --format="%(refname)" >actual &&
 307        test_cmp expected actual
 308'
 309
 310cat >expected <<\EOF
 311"refs/heads/master"
 312"refs/remotes/origin/master"
 313"refs/tags/testtag"
 314EOF
 315
 316test_expect_success 'Quoting style: tcl' '
 317        git for-each-ref --tcl --format="%(refname)" >actual &&
 318        test_cmp expected actual
 319'
 320
 321for i in "--perl --shell" "-s --python" "--python --tcl" "--tcl --perl"; do
 322        test_expect_success "more than one quoting style: $i" "
 323                git for-each-ref $i 2>&1 | (read line &&
 324                case \$line in
 325                \"error: more than one quoting style\"*) : happy;;
 326                *) false
 327                esac)
 328        "
 329done
 330
 331cat >expected <<\EOF
 332master
 333testtag
 334EOF
 335
 336test_expect_success 'Check short refname format' '
 337        (git for-each-ref --format="%(refname:short)" refs/heads &&
 338        git for-each-ref --format="%(refname:short)" refs/tags) >actual &&
 339        test_cmp expected actual
 340'
 341
 342cat >expected <<EOF
 343origin/master
 344EOF
 345
 346test_expect_success 'Check short upstream format' '
 347        git for-each-ref --format="%(upstream:short)" refs/heads >actual &&
 348        test_cmp expected actual
 349'
 350
 351test_expect_success 'setup for upstream:track[short]' '
 352        test_commit two
 353'
 354
 355cat >expected <<EOF
 356[ahead 1]
 357EOF
 358
 359test_expect_success 'Check upstream:track format' '
 360        git for-each-ref --format="%(upstream:track)" refs/heads >actual &&
 361        test_cmp expected actual
 362'
 363
 364cat >expected <<EOF
 365>
 366EOF
 367
 368test_expect_success 'Check upstream:trackshort format' '
 369        git for-each-ref --format="%(upstream:trackshort)" refs/heads >actual &&
 370        test_cmp expected actual
 371'
 372
 373test_expect_success 'Check that :track[short] cannot be used with other atoms' '
 374        test_must_fail git for-each-ref --format="%(refname:track)" 2>/dev/null &&
 375        test_must_fail git for-each-ref --format="%(refname:trackshort)" 2>/dev/null
 376'
 377
 378test_expect_success 'Check that :track[short] works when upstream is invalid' '
 379        cat >expected <<-\EOF &&
 380
 381
 382        EOF
 383        test_when_finished "git config branch.master.merge refs/heads/master" &&
 384        git config branch.master.merge refs/heads/does-not-exist &&
 385        git for-each-ref \
 386                --format="%(upstream:track)$LF%(upstream:trackshort)" \
 387                refs/heads >actual &&
 388        test_cmp expected actual
 389'
 390
 391test_expect_success '%(push) supports tracking specifiers, too' '
 392        echo "[ahead 1]" >expected &&
 393        git for-each-ref --format="%(push:track)" refs/heads >actual &&
 394        test_cmp expected actual
 395'
 396
 397cat >expected <<EOF
 398$(git rev-parse --short HEAD)
 399EOF
 400
 401test_expect_success 'Check short objectname format' '
 402        git for-each-ref --format="%(objectname:short)" refs/heads >actual &&
 403        test_cmp expected actual
 404'
 405
 406test_expect_success 'Check for invalid refname format' '
 407        test_must_fail git for-each-ref --format="%(refname:INVALID)"
 408'
 409
 410get_color ()
 411{
 412        git config --get-color no.such.slot "$1"
 413}
 414
 415cat >expected <<EOF
 416$(git rev-parse --short refs/heads/master) $(get_color green)master$(get_color reset)
 417$(git rev-parse --short refs/remotes/origin/master) $(get_color green)origin/master$(get_color reset)
 418$(git rev-parse --short refs/tags/testtag) $(get_color green)testtag$(get_color reset)
 419$(git rev-parse --short refs/tags/two) $(get_color green)two$(get_color reset)
 420EOF
 421
 422test_expect_success 'Check %(color:...) ' '
 423        git for-each-ref --format="%(objectname:short) %(color:green)%(refname:short)" >actual &&
 424        test_cmp expected actual
 425'
 426
 427cat >expected <<\EOF
 428heads/master
 429tags/master
 430EOF
 431
 432test_expect_success 'Check ambiguous head and tag refs (strict)' '
 433        git config --bool core.warnambiguousrefs true &&
 434        git checkout -b newtag &&
 435        echo "Using $datestamp" > one &&
 436        git add one &&
 437        git commit -m "Branch" &&
 438        setdate_and_increment &&
 439        git tag -m "Tagging at $datestamp" master &&
 440        git for-each-ref --format "%(refname:short)" refs/heads/master refs/tags/master >actual &&
 441        test_cmp expected actual
 442'
 443
 444cat >expected <<\EOF
 445heads/master
 446master
 447EOF
 448
 449test_expect_success 'Check ambiguous head and tag refs (loose)' '
 450        git config --bool core.warnambiguousrefs false &&
 451        git for-each-ref --format "%(refname:short)" refs/heads/master refs/tags/master >actual &&
 452        test_cmp expected actual
 453'
 454
 455cat >expected <<\EOF
 456heads/ambiguous
 457ambiguous
 458EOF
 459
 460test_expect_success 'Check ambiguous head and tag refs II (loose)' '
 461        git checkout master &&
 462        git tag ambiguous testtag^0 &&
 463        git branch ambiguous testtag^0 &&
 464        git for-each-ref --format "%(refname:short)" refs/heads/ambiguous refs/tags/ambiguous >actual &&
 465        test_cmp expected actual
 466'
 467
 468test_expect_success 'an unusual tag with an incomplete line' '
 469
 470        git tag -m "bogo" bogo &&
 471        bogo=$(git cat-file tag bogo) &&
 472        bogo=$(printf "%s" "$bogo" | git mktag) &&
 473        git tag -f bogo "$bogo" &&
 474        git for-each-ref --format "%(body)" refs/tags/bogo
 475
 476'
 477
 478test_expect_success 'create tag with subject and body content' '
 479        cat >>msg <<-\EOF &&
 480                the subject line
 481
 482                first body line
 483                second body line
 484        EOF
 485        git tag -F msg subject-body
 486'
 487test_atom refs/tags/subject-body subject 'the subject line'
 488test_atom refs/tags/subject-body body 'first body line
 489second body line
 490'
 491test_atom refs/tags/subject-body contents 'the subject line
 492
 493first body line
 494second body line
 495'
 496
 497test_expect_success 'create tag with multiline subject' '
 498        cat >msg <<-\EOF &&
 499                first subject line
 500                second subject line
 501
 502                first body line
 503                second body line
 504        EOF
 505        git tag -F msg multiline
 506'
 507test_atom refs/tags/multiline subject 'first subject line second subject line'
 508test_atom refs/tags/multiline contents:subject 'first subject line second subject line'
 509test_atom refs/tags/multiline body 'first body line
 510second body line
 511'
 512test_atom refs/tags/multiline contents:body 'first body line
 513second body line
 514'
 515test_atom refs/tags/multiline contents:signature ''
 516test_atom refs/tags/multiline contents 'first subject line
 517second subject line
 518
 519first body line
 520second body line
 521'
 522
 523test_expect_success GPG 'create signed tags' '
 524        git tag -s -m "" signed-empty &&
 525        git tag -s -m "subject line" signed-short &&
 526        cat >msg <<-\EOF &&
 527        subject line
 528
 529        body contents
 530        EOF
 531        git tag -s -F msg signed-long
 532'
 533
 534sig='-----BEGIN PGP SIGNATURE-----
 535-----END PGP SIGNATURE-----
 536'
 537
 538PREREQ=GPG
 539test_atom refs/tags/signed-empty subject ''
 540test_atom refs/tags/signed-empty contents:subject ''
 541test_atom refs/tags/signed-empty body "$sig"
 542test_atom refs/tags/signed-empty contents:body ''
 543test_atom refs/tags/signed-empty contents:signature "$sig"
 544test_atom refs/tags/signed-empty contents "$sig"
 545
 546test_atom refs/tags/signed-short subject 'subject line'
 547test_atom refs/tags/signed-short contents:subject 'subject line'
 548test_atom refs/tags/signed-short body "$sig"
 549test_atom refs/tags/signed-short contents:body ''
 550test_atom refs/tags/signed-short contents:signature "$sig"
 551test_atom refs/tags/signed-short contents "subject line
 552$sig"
 553
 554test_atom refs/tags/signed-long subject 'subject line'
 555test_atom refs/tags/signed-long contents:subject 'subject line'
 556test_atom refs/tags/signed-long body "body contents
 557$sig"
 558test_atom refs/tags/signed-long contents:body 'body contents
 559'
 560test_atom refs/tags/signed-long contents:signature "$sig"
 561test_atom refs/tags/signed-long contents "subject line
 562
 563body contents
 564$sig"
 565
 566cat >expected <<EOF
 567$(git rev-parse refs/tags/bogo) <committer@example.com> refs/tags/bogo
 568$(git rev-parse refs/tags/master) <committer@example.com> refs/tags/master
 569EOF
 570
 571test_expect_success 'Verify sort with multiple keys' '
 572        git for-each-ref --format="%(objectname) %(taggeremail) %(refname)" --sort=objectname --sort=taggeremail \
 573                refs/tags/bogo refs/tags/master > actual &&
 574        test_cmp expected actual
 575'
 576test_done