t / t6120-describe.shon commit remote: 'show' and 'prune' can take more than one remote (b17dd3f)
   1#!/bin/sh
   2
   3test_description='test describe
   4
   5                       B
   6        .--------------o----o----o----x
   7       /                   /    /
   8 o----o----o----o----o----.    /
   9       \        A    c        /
  10        .------------o---o---o
  11                   D,R   e
  12'
  13. ./test-lib.sh
  14
  15check_describe () {
  16        expect="$1"
  17        shift
  18        R=$(git describe "$@" 2>err.actual)
  19        S=$?
  20        cat err.actual >&3
  21        test_expect_success "describe $*" '
  22        test $S = 0 &&
  23        case "$R" in
  24        $expect)        echo happy ;;
  25        *)      echo "Oops - $R is not $expect";
  26                false ;;
  27        esac
  28        '
  29}
  30
  31test_expect_success setup '
  32
  33        test_tick &&
  34        echo one >file && git add file && git commit -m initial &&
  35        one=$(git rev-parse HEAD) &&
  36
  37        git describe --always HEAD &&
  38
  39        test_tick &&
  40        echo two >file && git add file && git commit -m second &&
  41        two=$(git rev-parse HEAD) &&
  42
  43        test_tick &&
  44        echo three >file && git add file && git commit -m third &&
  45
  46        test_tick &&
  47        echo A >file && git add file && git commit -m A &&
  48        test_tick &&
  49        git tag -a -m A A &&
  50
  51        test_tick &&
  52        echo c >file && git add file && git commit -m c &&
  53        test_tick &&
  54        git tag c &&
  55
  56        git reset --hard $two &&
  57        test_tick &&
  58        echo B >side && git add side && git commit -m B &&
  59        test_tick &&
  60        git tag -a -m B B &&
  61
  62        test_tick &&
  63        git merge -m Merged c &&
  64        merged=$(git rev-parse HEAD) &&
  65
  66        git reset --hard $two &&
  67        test_tick &&
  68        echo D >another && git add another && git commit -m D &&
  69        test_tick &&
  70        git tag -a -m D D &&
  71        test_tick &&
  72        git tag -a -m R R &&
  73
  74        test_tick &&
  75        echo DD >another && git commit -a -m another &&
  76
  77        test_tick &&
  78        git tag e &&
  79
  80        test_tick &&
  81        echo DDD >another && git commit -a -m "yet another" &&
  82
  83        test_tick &&
  84        git merge -m Merged $merged &&
  85
  86        test_tick &&
  87        echo X >file && echo X >side && git add file side &&
  88        git commit -m x
  89
  90'
  91
  92check_describe A-* HEAD
  93check_describe A-* HEAD^
  94check_describe R-* HEAD^^
  95check_describe A-* HEAD^^2
  96check_describe B HEAD^^2^
  97check_describe R-* HEAD^^^
  98
  99check_describe c-* --tags HEAD
 100check_describe c-* --tags HEAD^
 101check_describe e-* --tags HEAD^^
 102check_describe c-* --tags HEAD^^2
 103check_describe B --tags HEAD^^2^
 104check_describe e --tags HEAD^^^
 105
 106check_describe heads/master --all HEAD
 107check_describe tags/c-* --all HEAD^
 108check_describe tags/e --all HEAD^^^
 109
 110check_describe B-0-* --long HEAD^^2^
 111check_describe A-3-* --long HEAD^^2
 112
 113: >err.expect
 114check_describe A --all A^0
 115test_expect_success 'no warning was displayed for A' '
 116        test_cmp err.expect err.actual
 117'
 118
 119test_expect_success 'rename tag A to Q locally' '
 120        mv .git/refs/tags/A .git/refs/tags/Q
 121'
 122cat - >err.expect <<EOF
 123warning: tag 'A' is really 'Q' here
 124EOF
 125check_describe A-* HEAD
 126test_expect_success 'warning was displayed for Q' '
 127        test_i18ncmp err.expect err.actual
 128'
 129test_expect_success 'rename tag Q back to A' '
 130        mv .git/refs/tags/Q .git/refs/tags/A
 131'
 132
 133test_expect_success 'pack tag refs' 'git pack-refs'
 134check_describe A-* HEAD
 135
 136check_describe "A-*[0-9a-f]" --dirty
 137
 138test_expect_success 'set-up dirty work tree' '
 139        echo >>file
 140'
 141
 142check_describe "A-*[0-9a-f]-dirty" --dirty
 143
 144check_describe "A-*[0-9a-f].mod" --dirty=.mod
 145
 146test_expect_success 'describe --dirty HEAD' '
 147        test_must_fail git describe --dirty HEAD
 148'
 149
 150test_expect_success 'set-up matching pattern tests' '
 151        git tag -a -m test-annotated test-annotated &&
 152        echo >>file &&
 153        test_tick &&
 154        git commit -a -m "one more" &&
 155        git tag test1-lightweight &&
 156        echo >>file &&
 157        test_tick &&
 158        git commit -a -m "yet another" &&
 159        git tag test2-lightweight &&
 160        echo >>file &&
 161        test_tick &&
 162        git commit -a -m "even more"
 163
 164'
 165
 166check_describe "test-annotated-*" --match="test-*"
 167
 168check_describe "test1-lightweight-*" --tags --match="test1-*"
 169
 170check_describe "test2-lightweight-*" --tags --match="test2-*"
 171
 172check_describe "test2-lightweight-*" --long --tags --match="test2-*" HEAD^
 173
 174test_done