Git.pm: Use stream-like writing in cat_blob()
[git/dscho.git] / t / t5512-ls-remote.sh
blob5c546c99a58854ae0f430e469dad525af52e9292
1 #!/bin/sh
3 test_description='git ls-remote'
5 . ./test-lib.sh
7 test_expect_success setup '
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 &&
16 echo "$(git rev-parse HEAD) HEAD"
17 git show-ref -d | sed -e "s/ / /"
18 ) >expected.all &&
20 git remote add self "$(pwd)/.git"
24 test_expect_success 'ls-remote --tags .git' '
26 git ls-remote --tags .git >actual &&
27 test_cmp expected.tag actual
31 test_expect_success 'ls-remote .git' '
33 git ls-remote .git >actual &&
34 test_cmp expected.all actual
38 test_expect_success 'ls-remote --tags self' '
40 git ls-remote --tags self >actual &&
41 test_cmp expected.tag actual
45 test_expect_success 'ls-remote self' '
47 git ls-remote self >actual &&
48 test_cmp expected.all actual
52 test_expect_success 'dies when no remote specified and no default remotes found' '
54 test_must_fail git ls-remote
58 test_expect_success 'use "origin" when no remote specified' '
60 URL="$(pwd)/.git" &&
61 echo "From $URL" >exp_err &&
63 git remote add origin "$URL" &&
64 git ls-remote 2>actual_err >actual &&
66 test_cmp exp_err actual_err &&
67 test_cmp expected.all actual
71 test_expect_success 'suppress "From <url>" with -q' '
73 git ls-remote -q 2>actual_err &&
74 test_must_fail test_cmp exp_err actual_err
78 test_expect_success 'use branch.<name>.remote if possible' '
81 # Test that we are indeed using branch.<name>.remote, not "origin", even
82 # though the "origin" remote has been set.
85 # setup a new remote to differentiate from "origin"
86 git clone . other.git &&
88 cd other.git &&
89 echo "$(git rev-parse HEAD) HEAD"
90 git show-ref | sed -e "s/ / /"
91 ) >exp &&
93 URL="other.git" &&
94 echo "From $URL" >exp_err &&
96 git remote add other $URL &&
97 git config branch.master.remote other &&
99 git ls-remote 2>actual_err >actual &&
100 test_cmp exp_err actual_err &&
101 test_cmp exp actual
105 cat >exp <<EOF
106 fatal: 'refs*master' does not appear to be a git repository
107 fatal: The remote end hung up unexpectedly
109 test_expect_success 'confuses pattern as remote when no remote specified' '
111 # Do not expect "git ls-remote <pattern>" to work; ls-remote, correctly,
112 # confuses <pattern> for <remote>. Although ugly, this behaviour is akin
113 # to the confusion of refspecs for remotes by git-fetch and git-push,
114 # eg:
116 # $ git fetch branch
119 # We could just as easily have used "master"; the "*" emphasizes its
120 # role as a pattern.
121 test_must_fail git ls-remote refs*master >actual 2>&1 &&
122 test_cmp exp actual
126 test_expect_success 'die with non-2 for wrong repository even with --exit-code' '
127 git ls-remote --exit-code ./no-such-repository ;# not &&
128 status=$? &&
129 test $status != 2 && test $status != 0
132 test_expect_success 'Report success even when nothing matches' '
133 git ls-remote other.git "refs/nsn/*" >actual &&
134 >expect &&
135 test_cmp expect actual
138 test_expect_success 'Report no-match with --exit-code' '
139 test_expect_code 2 git ls-remote --exit-code other.git "refs/nsn/*" >actual &&
140 >expect &&
141 test_cmp expect actual
144 test_expect_success 'Report match with --exit-code' '
145 git ls-remote --exit-code other.git "refs/tags/*" >actual &&
146 git ls-remote . tags/mark >expect &&
147 test_cmp expect actual
150 test_done