1#!/bin/sh
   2test_description='rev-list/rev-parse --glob'
   4. ./test-lib.sh
   6commit () {
   8        test_tick &&
   9        echo $1 > foo &&
  10        git add foo &&
  11        git commit -m "$1"
  12}
  13compare () {
  15        # Split arguments on whitespace.
  16        git $1 $2 >expected &&
  17        git $1 $3 >actual &&
  18        test_cmp expected actual
  19}
  20test_expect_success 'setup' '
  22        commit master &&
  24        git checkout -b subspace/one master &&
  25        commit one &&
  26        git checkout -b subspace/two master &&
  27        commit two &&
  28        git checkout -b subspace-x master &&
  29        commit subspace-x &&
  30        git checkout -b other/three master &&
  31        commit three &&
  32        git checkout -b someref master &&
  33        commit some &&
  34        git checkout master &&
  35        commit master2 &&
  36        git tag foo/bar master &&
  37        commit master3 &&
  38        git update-ref refs/remotes/foo/baz master &&
  39        commit master4
  40'
  41test_expect_success 'rev-parse --glob=refs/heads/subspace/*' '
  43        compare rev-parse "subspace/one subspace/two" "--glob=refs/heads/subspace/*"
  45'
  47test_expect_success 'rev-parse --glob=heads/subspace/*' '
  49        compare rev-parse "subspace/one subspace/two" "--glob=heads/subspace/*"
  51'
  53test_expect_success 'rev-parse --glob=refs/heads/subspace/' '
  55        compare rev-parse "subspace/one subspace/two" "--glob=refs/heads/subspace/"
  57'
  59test_expect_success 'rev-parse --glob=heads/subspace/' '
  61        compare rev-parse "subspace/one subspace/two" "--glob=heads/subspace/"
  63'
  65test_expect_success 'rev-parse --glob=heads/subspace' '
  67        compare rev-parse "subspace/one subspace/two" "--glob=heads/subspace"
  69'
  71test_expect_failure 'rev-parse accepts --glob as detached option' '
  73        compare rev-parse "subspace/one subspace/two" "--glob heads/subspace"
  75'
  77test_expect_failure 'rev-parse is not confused by option-like glob' '
  79        compare rev-parse "master" "--glob --symbolic master"
  81'
  83test_expect_success 'rev-parse --branches=subspace/*' '
  85        compare rev-parse "subspace/one subspace/two" "--branches=subspace/*"
  87'
  89test_expect_success 'rev-parse --branches=subspace/' '
  91        compare rev-parse "subspace/one subspace/two" "--branches=subspace/"
  93'
  95test_expect_success 'rev-parse --branches=subspace' '
  97        compare rev-parse "subspace/one subspace/two" "--branches=subspace"
  99'
 101test_expect_success 'rev-parse --glob=heads/subspace/* --glob=heads/other/*' '
 103        compare rev-parse "subspace/one subspace/two other/three" "--glob=heads/subspace/* --glob=heads/other/*"
 105'
 107test_expect_success 'rev-parse --glob=heads/someref/* master' '
 109        compare rev-parse "master" "--glob=heads/someref/* master"
 111'
 113test_expect_success 'rev-parse --glob=heads/*' '
 115        compare rev-parse "master other/three someref subspace-x subspace/one subspace/two" "--glob=heads/*"
 117'
 119test_expect_success 'rev-parse --tags=foo' '
 121        compare rev-parse "foo/bar" "--tags=foo"
 123'
 125test_expect_success 'rev-parse --remotes=foo' '
 127        compare rev-parse "foo/baz" "--remotes=foo"
 129'
 131test_expect_success 'rev-parse --exclude with --branches' '
 133        compare rev-parse "--exclude=*/* --branches" "master someref subspace-x"
 134'
 135test_expect_success 'rev-parse --exclude with --all' '
 137        compare rev-parse "--exclude=refs/remotes/* --all" "--branches --tags"
 138'
 139test_expect_success 'rev-parse accumulates multiple --exclude' '
 141        compare rev-parse "--exclude=refs/remotes/* --exclude=refs/tags/* --all" --branches
 142'
 143test_expect_success 'rev-list --glob=refs/heads/subspace/*' '
 145        compare rev-list "subspace/one subspace/two" "--glob=refs/heads/subspace/*"
 147'
 149test_expect_success 'rev-list --glob refs/heads/subspace/*' '
 151        compare rev-list "subspace/one subspace/two" "--glob refs/heads/subspace/*"
 153'
 155test_expect_success 'rev-list not confused by option-like --glob arg' '
 157        compare rev-list "master" "--glob -0 master"
 159'
 161test_expect_success 'rev-list --glob=heads/subspace/*' '
 163        compare rev-list "subspace/one subspace/two" "--glob=heads/subspace/*"
 165'
 167test_expect_success 'rev-list --glob=refs/heads/subspace/' '
 169        compare rev-list "subspace/one subspace/two" "--glob=refs/heads/subspace/"
 171'
 173test_expect_success 'rev-list --glob=heads/subspace/' '
 175        compare rev-list "subspace/one subspace/two" "--glob=heads/subspace/"
 177'
 179test_expect_success 'rev-list --glob=heads/subspace' '
 181        compare rev-list "subspace/one subspace/two" "--glob=heads/subspace"
 183'
 185test_expect_success 'rev-list --branches=subspace/*' '
 187        compare rev-list "subspace/one subspace/two" "--branches=subspace/*"
 189'
 191test_expect_success 'rev-list --branches=subspace/' '
 193        compare rev-list "subspace/one subspace/two" "--branches=subspace/"
 195'
 197test_expect_success 'rev-list --branches=subspace' '
 199        compare rev-list "subspace/one subspace/two" "--branches=subspace"
 201'
 203test_expect_success 'rev-list --branches' '
 205        compare rev-list "master subspace-x someref other/three subspace/one subspace/two" "--branches"
 207'
 209test_expect_success 'rev-list --glob=heads/someref/* master' '
 211        compare rev-list "master" "--glob=heads/someref/* master"
 213'
 215test_expect_success 'rev-list --glob=heads/subspace/* --glob=heads/other/*' '
 217        compare rev-list "subspace/one subspace/two other/three" "--glob=heads/subspace/* --glob=heads/other/*"
 219'
 221test_expect_success 'rev-list --glob=heads/*' '
 223        compare rev-list "master other/three someref subspace-x subspace/one subspace/two" "--glob=heads/*"
 225'
 227test_expect_success 'rev-list --tags=foo' '
 229        compare rev-list "foo/bar" "--tags=foo"
 231'
 233test_expect_success 'rev-list --tags' '
 235        compare rev-list "foo/bar" "--tags"
 237'
 239test_expect_success 'rev-list --remotes=foo' '
 241        compare rev-list "foo/baz" "--remotes=foo"
 243'
 245test_expect_success 'rev-list --exclude with --branches' '
 247        compare rev-list "--exclude=*/* --branches" "master someref subspace-x"
 248'
 249test_expect_success 'rev-list --exclude with --all' '
 251        compare rev-list "--exclude=refs/remotes/* --all" "--branches --tags"
 252'
 253test_expect_success 'rev-list accumulates multiple --exclude' '
 255        compare rev-list "--exclude=refs/remotes/* --exclude=refs/tags/* --all" --branches
 256'
 257test_expect_failure 'rev-list should succeed with empty output on empty stdin' '
 259        >expect &&
 260        git rev-list --stdin <expect >actual &&
 261        test_cmp expect actual
 262'
 263test_expect_success 'rev-list should succeed with empty output with all refs excluded' '
 265        >expect &&
 266        git rev-list --exclude=* --all >actual &&
 267        test_cmp expect actual
 268'
 269test_expect_success 'rev-list should succeed with empty output with empty --all' '
 271        (
 272                test_create_repo empty &&
 273                cd empty &&
 274                >expect &&
 275                git rev-list --all >actual &&
 276                test_cmp expect actual
 277        )
 278'
 279test_expect_success 'rev-list should succeed with empty output with empty glob' '
 281        >expect &&
 282        git rev-list --glob=does-not-match-anything >actual &&
 283        test_cmp expect actual
 284'
 285test_expect_success 'shortlog accepts --glob/--tags/--remotes' '
 287        compare shortlog "subspace/one subspace/two" --branches=subspace &&
 289        compare shortlog \
 290          "master subspace-x someref other/three subspace/one subspace/two" \
 291          --branches &&
 292        compare shortlog master "--glob=heads/someref/* master" &&
 293        compare shortlog "subspace/one subspace/two other/three" \
 294          "--glob=heads/subspace/* --glob=heads/other/*" &&
 295        compare shortlog \
 296          "master other/three someref subspace-x subspace/one subspace/two" \
 297          "--glob=heads/*" &&
 298        compare shortlog foo/bar --tags=foo &&
 299        compare shortlog foo/bar --tags &&
 300        compare shortlog foo/baz --remotes=foo
 301'
 303test_expect_failure 'shortlog accepts --glob as detached option' '
 305        compare shortlog \
 307          "master other/three someref subspace-x subspace/one subspace/two" \
 308          "--glob heads/*"
 309'
 311test_expect_failure 'shortlog --glob is not confused by option-like argument' '
 313        compare shortlog master "--glob -e master"
 315'
 317test_done