git-completion.bash: add branch.*.pushremote to config list
[git.git] / t / t1507-rev-parse-upstream.sh
blobb27a7209f7401706f3b0a37b495fc0cb3a07c29e
1 #!/bin/sh
3 test_description='test <branch>@{upstream} syntax'
5 . ./test-lib.sh
8 test_expect_success 'setup' '
10 test_commit 1 &&
11 git checkout -b side &&
12 test_commit 2 &&
13 git checkout master &&
14 git clone . clone &&
15 test_commit 3 &&
16 (cd clone &&
17 test_commit 4 &&
18 git branch --track my-side origin/side &&
19 git branch --track local-master master &&
20 git remote add -t master master-only .. &&
21 git fetch master-only &&
22 git branch bad-upstream &&
23 git config branch.bad-upstream.remote master-only &&
24 git config branch.bad-upstream.merge refs/heads/side
28 sq="'"
30 full_name () {
31 (cd clone &&
32 git rev-parse --symbolic-full-name "$@")
35 commit_subject () {
36 (cd clone &&
37 git show -s --pretty=format:%s "$@")
40 error_message () {
41 (cd clone &&
42 test_must_fail git rev-parse --verify "$@")
45 test_expect_success '@{upstream} resolves to correct full name' '
46 test refs/remotes/origin/master = "$(full_name @{upstream})"
49 test_expect_success '@{u} resolves to correct full name' '
50 test refs/remotes/origin/master = "$(full_name @{u})"
53 test_expect_success 'my-side@{upstream} resolves to correct full name' '
54 test refs/remotes/origin/side = "$(full_name my-side@{u})"
57 test_expect_success 'refs/heads/my-side@{upstream} does not resolve to my-side{upstream}' '
58 test_must_fail full_name refs/heads/my-side@{upstream}
61 test_expect_success 'my-side@{u} resolves to correct commit' '
62 git checkout side &&
63 test_commit 5 &&
64 (cd clone && git fetch) &&
65 test 2 = "$(commit_subject my-side)" &&
66 test 5 = "$(commit_subject my-side@{u})"
69 test_expect_success 'not-tracking@{u} fails' '
70 test_must_fail full_name non-tracking@{u} &&
71 (cd clone && git checkout --no-track -b non-tracking) &&
72 test_must_fail full_name non-tracking@{u}
75 test_expect_success '<branch>@{u}@{1} resolves correctly' '
76 test_commit 6 &&
77 (cd clone && git fetch) &&
78 test 5 = $(commit_subject my-side@{u}@{1})
81 test_expect_success '@{u} without specifying branch fails on a detached HEAD' '
82 git checkout HEAD^0 &&
83 test_must_fail git rev-parse @{u}
86 test_expect_success 'checkout -b new my-side@{u} forks from the same' '
88 cd clone &&
89 git checkout -b new my-side@{u} &&
90 git rev-parse --symbolic-full-name my-side@{u} >expect &&
91 git rev-parse --symbolic-full-name new@{u} >actual &&
92 test_cmp expect actual
96 test_expect_success 'merge my-side@{u} records the correct name' '
98 cd clone || exit
99 git checkout master || exit
100 git branch -D new ;# can fail but is ok
101 git branch -t new my-side@{u} &&
102 git merge -s ours new@{u} &&
103 git show -s --pretty=format:%s >actual &&
104 echo "Merge remote-tracking branch ${sq}origin/side${sq}" >expect &&
105 test_cmp expect actual
109 test_expect_success 'branch -d other@{u}' '
110 git checkout -t -b other master &&
111 git branch -d @{u} &&
112 git for-each-ref refs/heads/master >actual &&
113 >expect &&
114 test_cmp expect actual
117 test_expect_success 'checkout other@{u}' '
118 git branch -f master HEAD &&
119 git checkout -t -b another master &&
120 git checkout @{u} &&
121 git symbolic-ref HEAD >actual &&
122 echo refs/heads/master >expect &&
123 test_cmp expect actual
126 test_expect_success 'branch@{u} works when tracking a local branch' '
127 test refs/heads/master = "$(full_name local-master@{u})"
130 test_expect_success 'branch@{u} error message when no upstream' '
131 cat >expect <<-EOF &&
132 error: No upstream configured for branch ${sq}non-tracking${sq}
133 fatal: Needed a single revision
135 error_message non-tracking@{u} 2>actual &&
136 test_i18ncmp expect actual
139 test_expect_success '@{u} error message when no upstream' '
140 cat >expect <<-EOF &&
141 error: No upstream configured for branch ${sq}master${sq}
142 fatal: Needed a single revision
144 test_must_fail git rev-parse --verify @{u} 2>actual &&
145 test_i18ncmp expect actual
148 test_expect_success 'branch@{u} error message with misspelt branch' '
149 cat >expect <<-EOF &&
150 error: No such branch: ${sq}no-such-branch${sq}
151 fatal: Needed a single revision
153 error_message no-such-branch@{u} 2>actual &&
154 test_i18ncmp expect actual
157 test_expect_success '@{u} error message when not on a branch' '
158 cat >expect <<-EOF &&
159 error: HEAD does not point to a branch
160 fatal: Needed a single revision
162 git checkout HEAD^0 &&
163 test_must_fail git rev-parse --verify @{u} 2>actual &&
164 test_i18ncmp expect actual
167 test_expect_success 'branch@{u} error message if upstream branch not fetched' '
168 cat >expect <<-EOF &&
169 error: Upstream branch ${sq}refs/heads/side${sq} not stored as a remote-tracking branch
170 fatal: Needed a single revision
172 error_message bad-upstream@{u} 2>actual &&
173 test_i18ncmp expect actual
176 test_expect_success 'pull works when tracking a local branch' '
178 cd clone &&
179 git checkout local-master &&
180 git pull
184 # makes sense if the previous one succeeded
185 test_expect_success '@{u} works when tracking a local branch' '
186 test refs/heads/master = "$(full_name @{u})"
189 cat >expect <<EOF
190 commit 8f489d01d0cc65c3b0f09504ec50b5ed02a70bd5
191 Reflog: master@{0} (C O Mitter <committer@example.com>)
192 Reflog message: branch: Created from HEAD
193 Author: A U Thor <author@example.com>
194 Date: Thu Apr 7 15:15:13 2005 -0700
198 test_expect_success 'log -g other@{u}' '
199 git log -1 -g other@{u} >actual &&
200 test_cmp expect actual
203 cat >expect <<EOF
204 commit 8f489d01d0cc65c3b0f09504ec50b5ed02a70bd5
205 Reflog: master@{Thu Apr 7 15:17:13 2005 -0700} (C O Mitter <committer@example.com>)
206 Reflog message: branch: Created from HEAD
207 Author: A U Thor <author@example.com>
208 Date: Thu Apr 7 15:15:13 2005 -0700
213 test_expect_success 'log -g other@{u}@{now}' '
214 git log -1 -g other@{u}@{now} >actual &&
215 test_cmp expect actual
218 test_done