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