t / t5512-ls-remote.shon commit Merge branch 'jk/maint-commit-check-committer-early' into maint-1.7.11 (9e0833c)
   1#!/bin/sh
   2
   3test_description='git ls-remote'
   4
   5. ./test-lib.sh
   6
   7test_expect_success setup '
   8        >file &&
   9        git add file &&
  10        test_tick &&
  11        git commit -m initial &&
  12        git tag mark &&
  13        git show-ref --tags -d | sed -e "s/ /   /" >expected.tag &&
  14        (
  15                echo "$(git rev-parse HEAD)     HEAD"
  16                git show-ref -d | sed -e "s/ /  /"
  17        ) >expected.all &&
  18
  19        git remote add self "$(pwd)/.git"
  20'
  21
  22test_expect_success 'ls-remote --tags .git' '
  23        git ls-remote --tags .git >actual &&
  24        test_cmp expected.tag actual
  25'
  26
  27test_expect_success 'ls-remote .git' '
  28        git ls-remote .git >actual &&
  29        test_cmp expected.all actual
  30'
  31
  32test_expect_success 'ls-remote --tags self' '
  33        git ls-remote --tags self >actual &&
  34        test_cmp expected.tag actual
  35'
  36
  37test_expect_success 'ls-remote self' '
  38        git ls-remote self >actual &&
  39        test_cmp expected.all actual
  40'
  41
  42test_expect_success 'dies when no remote specified and no default remotes found' '
  43        test_must_fail git ls-remote
  44'
  45
  46test_expect_success 'use "origin" when no remote specified' '
  47        URL="$(pwd)/.git" &&
  48        echo "From $URL" >exp_err &&
  49
  50        git remote add origin "$URL" &&
  51        git ls-remote 2>actual_err >actual &&
  52
  53        test_cmp exp_err actual_err &&
  54        test_cmp expected.all actual
  55'
  56
  57test_expect_success 'suppress "From <url>" with -q' '
  58        git ls-remote -q 2>actual_err &&
  59        test_must_fail test_cmp exp_err actual_err
  60'
  61
  62test_expect_success 'use branch.<name>.remote if possible' '
  63        #
  64        # Test that we are indeed using branch.<name>.remote, not "origin", even
  65        # though the "origin" remote has been set.
  66        #
  67
  68        # setup a new remote to differentiate from "origin"
  69        git clone . other.git &&
  70        (
  71                cd other.git &&
  72                echo "$(git rev-parse HEAD)     HEAD"
  73                git show-ref    | sed -e "s/ /  /"
  74        ) >exp &&
  75
  76        URL="other.git" &&
  77        echo "From $URL" >exp_err &&
  78
  79        git remote add other $URL &&
  80        git config branch.master.remote other &&
  81
  82        git ls-remote 2>actual_err >actual &&
  83        test_cmp exp_err actual_err &&
  84        test_cmp exp actual
  85'
  86
  87test_expect_success 'confuses pattern as remote when no remote specified' '
  88        cat >exp <<-\EOF &&
  89        fatal: '\''refs*master'\'' does not appear to be a git repository
  90        fatal: The remote end hung up unexpectedly
  91        EOF
  92        #
  93        # Do not expect "git ls-remote <pattern>" to work; ls-remote, correctly,
  94        # confuses <pattern> for <remote>. Although ugly, this behaviour is akin
  95        # to the confusion of refspecs for remotes by git-fetch and git-push,
  96        # eg:
  97        #
  98        #   $ git fetch branch
  99        #
 100
 101        # We could just as easily have used "master"; the "*" emphasizes its
 102        # role as a pattern.
 103        test_must_fail git ls-remote refs*master >actual 2>&1 &&
 104        test_cmp exp actual
 105'
 106
 107test_expect_success 'die with non-2 for wrong repository even with --exit-code' '
 108        git ls-remote --exit-code ./no-such-repository ;# not &&
 109        status=$? &&
 110        test $status != 2 && test $status != 0
 111'
 112
 113test_expect_success 'Report success even when nothing matches' '
 114        git ls-remote other.git "refs/nsn/*" >actual &&
 115        >expect &&
 116        test_cmp expect actual
 117'
 118
 119test_expect_success 'Report no-match with --exit-code' '
 120        test_expect_code 2 git ls-remote --exit-code other.git "refs/nsn/*" >actual &&
 121        >expect &&
 122        test_cmp expect actual
 123'
 124
 125test_expect_success 'Report match with --exit-code' '
 126        git ls-remote --exit-code other.git "refs/tags/*" >actual &&
 127        git ls-remote . tags/mark >expect &&
 128        test_cmp expect actual
 129'
 130
 131test_done