]> git.ipfire.org Git - thirdparty/git.git/blame - t/t1507-rev-parse-upstream.sh
Merge branch 'ab/detox-gettext-tests'
[thirdparty/git.git] / t / t1507-rev-parse-upstream.sh
CommitLineData
28fb8438
JS
1#!/bin/sh
2
3test_description='test <branch>@{upstream} syntax'
4
06d53148 5GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
334afbc7
JS
6export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7
28fb8438
JS
8. ./test-lib.sh
9
10
11test_expect_success 'setup' '
12
13 test_commit 1 &&
14 git checkout -b side &&
15 test_commit 2 &&
06d53148 16 git checkout main &&
28fb8438
JS
17 git clone . clone &&
18 test_commit 3 &&
19 (cd clone &&
20 test_commit 4 &&
1b4aee94 21 git branch --track my-side origin/side &&
06d53148 22 git branch --track local-main main &&
9892d5d4
JK
23 git branch --track fun@ny origin/side &&
24 git branch --track @funny origin/side &&
25 git branch --track funny@ origin/side &&
06d53148
JS
26 git remote add -t main main-only .. &&
27 git fetch main-only &&
1b4aee94 28 git branch bad-upstream &&
06d53148 29 git config branch.bad-upstream.remote main-only &&
1b4aee94
ZJS
30 git config branch.bad-upstream.merge refs/heads/side
31 )
28fb8438
JS
32'
33
28fb8438
JS
34commit_subject () {
35 (cd clone &&
5236fce6 36 git show -s --pretty=tformat:%s "$@")
28fb8438
JS
37}
38
1b4aee94
ZJS
39error_message () {
40 (cd clone &&
c3a44562 41 test_must_fail git rev-parse --verify "$@" 2>../error)
1b4aee94
ZJS
42}
43
28fb8438 44test_expect_success '@{upstream} resolves to correct full name' '
06d53148 45 echo refs/remotes/origin/main >expect &&
b4417172 46 git -C clone rev-parse --symbolic-full-name @{upstream} >actual &&
5236fce6 47 test_cmp expect actual &&
b4417172 48 git -C clone rev-parse --symbolic-full-name @{UPSTREAM} >actual &&
5236fce6 49 test_cmp expect actual &&
b4417172 50 git -C clone rev-parse --symbolic-full-name @{UpSTReam} >actual &&
5236fce6 51 test_cmp expect actual
28fb8438
JS
52'
53
54test_expect_success '@{u} resolves to correct full name' '
06d53148 55 echo refs/remotes/origin/main >expect &&
b4417172 56 git -C clone rev-parse --symbolic-full-name @{u} >actual &&
5236fce6 57 test_cmp expect actual &&
b4417172 58 git -C clone rev-parse --symbolic-full-name @{U} >actual &&
5236fce6 59 test_cmp expect actual
28fb8438
JS
60'
61
62test_expect_success 'my-side@{upstream} resolves to correct full name' '
5236fce6 63 echo refs/remotes/origin/side >expect &&
b4417172 64 git -C clone rev-parse --symbolic-full-name my-side@{u} >actual &&
5236fce6 65 test_cmp expect actual
28fb8438
JS
66'
67
9892d5d4 68test_expect_success 'upstream of branch with @ in middle' '
b4417172 69 git -C clone rev-parse --symbolic-full-name fun@ny@{u} >actual &&
9892d5d4 70 echo refs/remotes/origin/side >expect &&
244ea1b5 71 test_cmp expect actual &&
b4417172 72 git -C clone rev-parse --symbolic-full-name fun@ny@{U} >actual &&
9892d5d4
JK
73 test_cmp expect actual
74'
75
76test_expect_success 'upstream of branch with @ at start' '
b4417172 77 git -C clone rev-parse --symbolic-full-name @funny@{u} >actual &&
9892d5d4
JK
78 echo refs/remotes/origin/side >expect &&
79 test_cmp expect actual
80'
81
82test_expect_success 'upstream of branch with @ at end' '
b4417172 83 git -C clone rev-parse --symbolic-full-name funny@@{u} >actual &&
9892d5d4
JK
84 echo refs/remotes/origin/side >expect &&
85 test_cmp expect actual
86'
87
617cf931 88test_expect_success 'refs/heads/my-side@{upstream} does not resolve to my-side{upstream}' '
b4417172 89 test_must_fail git -C clone rev-parse --symbolic-full-name refs/heads/my-side@{upstream}
617cf931
KK
90'
91
28fb8438
JS
92test_expect_success 'my-side@{u} resolves to correct commit' '
93 git checkout side &&
94 test_commit 5 &&
95 (cd clone && git fetch) &&
5236fce6
DL
96 echo 2 >expect &&
97 commit_subject my-side >actual &&
98 test_cmp expect actual &&
99 echo 5 >expect &&
100 commit_subject my-side@{u} >actual
28fb8438
JS
101'
102
103test_expect_success 'not-tracking@{u} fails' '
b4417172 104 test_must_fail git -C clone rev-parse --symbolic-full-name non-tracking@{u} &&
28fb8438 105 (cd clone && git checkout --no-track -b non-tracking) &&
b4417172 106 test_must_fail git -C clone rev-parse --symbolic-full-name non-tracking@{u}
28fb8438
JS
107'
108
109test_expect_success '<branch>@{u}@{1} resolves correctly' '
110 test_commit 6 &&
111 (cd clone && git fetch) &&
5236fce6
DL
112 echo 5 >expect &&
113 commit_subject my-side@{u}@{1} >actual &&
114 test_cmp expect actual &&
115 commit_subject my-side@{U}@{1} >actual &&
116 test_cmp expect actual
28fb8438
JS
117'
118
119test_expect_success '@{u} without specifying branch fails on a detached HEAD' '
120 git checkout HEAD^0 &&
244ea1b5
ÆAB
121 test_must_fail git rev-parse @{u} &&
122 test_must_fail git rev-parse @{U}
28fb8438
JS
123'
124
69add8e6
JH
125test_expect_success 'checkout -b new my-side@{u} forks from the same' '
126(
127 cd clone &&
128 git checkout -b new my-side@{u} &&
129 git rev-parse --symbolic-full-name my-side@{u} >expect &&
130 git rev-parse --symbolic-full-name new@{u} >actual &&
131 test_cmp expect actual
132)
133'
134
ae0ba8e2 135test_expect_success 'merge my-side@{u} records the correct name' '
69add8e6 136(
83279748 137 cd clone &&
06d53148 138 git checkout main &&
83279748 139 test_might_fail git branch -D new &&
69add8e6
JH
140 git branch -t new my-side@{u} &&
141 git merge -s ours new@{u} &&
ad2f7255 142 git show -s --pretty=tformat:%s >actual &&
21531927 143 echo "Merge remote-tracking branch ${SQ}origin/side${SQ}" >expect &&
69add8e6
JH
144 test_cmp expect actual
145)
146'
147
ae0ba8e2 148test_expect_success 'branch -d other@{u}' '
06d53148 149 git checkout -t -b other main &&
69add8e6 150 git branch -d @{u} &&
06d53148 151 git for-each-ref refs/heads/main >actual &&
d3c6751b 152 test_must_be_empty actual
69add8e6
JH
153'
154
ae0ba8e2 155test_expect_success 'checkout other@{u}' '
06d53148
JS
156 git branch -f main HEAD &&
157 git checkout -t -b another main &&
69add8e6
JH
158 git checkout @{u} &&
159 git symbolic-ref HEAD >actual &&
06d53148 160 echo refs/heads/main >expect &&
69add8e6
JH
161 test_cmp expect actual
162'
163
1b4aee94 164test_expect_success 'branch@{u} works when tracking a local branch' '
06d53148
JS
165 echo refs/heads/main >expect &&
166 git -C clone rev-parse --symbolic-full-name local-main@{u} >actual &&
5236fce6 167 test_cmp expect actual
1b4aee94
ZJS
168'
169
170test_expect_success 'branch@{u} error message when no upstream' '
171 cat >expect <<-EOF &&
bd482d6e 172 fatal: no upstream configured for branch ${SQ}non-tracking${SQ}
1b4aee94 173 EOF
c3a44562 174 error_message non-tracking@{u} &&
1108cea7 175 test_cmp expect error
1b4aee94
ZJS
176'
177
178test_expect_success '@{u} error message when no upstream' '
179 cat >expect <<-EOF &&
06d53148 180 fatal: no upstream configured for branch ${SQ}main${SQ}
1b4aee94
ZJS
181 EOF
182 test_must_fail git rev-parse --verify @{u} 2>actual &&
1108cea7 183 test_cmp expect actual
1b4aee94
ZJS
184'
185
186test_expect_success 'branch@{u} error message with misspelt branch' '
187 cat >expect <<-EOF &&
bd482d6e 188 fatal: no such branch: ${SQ}no-such-branch${SQ}
1b4aee94 189 EOF
c3a44562 190 error_message no-such-branch@{u} &&
1108cea7 191 test_cmp expect error
1b4aee94
ZJS
192'
193
194test_expect_success '@{u} error message when not on a branch' '
195 cat >expect <<-EOF &&
17bf4ff3 196 fatal: HEAD does not point to a branch
1b4aee94
ZJS
197 EOF
198 git checkout HEAD^0 &&
199 test_must_fail git rev-parse --verify @{u} 2>actual &&
1108cea7 200 test_cmp expect actual
1b4aee94
ZJS
201'
202
203test_expect_success 'branch@{u} error message if upstream branch not fetched' '
204 cat >expect <<-EOF &&
bd482d6e 205 fatal: upstream branch ${SQ}refs/heads/side${SQ} not stored as a remote-tracking branch
1b4aee94 206 EOF
c3a44562 207 error_message bad-upstream@{u} &&
1108cea7 208 test_cmp expect error
1b4aee94
ZJS
209'
210
211test_expect_success 'pull works when tracking a local branch' '
212(
213 cd clone &&
06d53148 214 git checkout local-main &&
1b4aee94
ZJS
215 git pull
216)
217'
218
219# makes sense if the previous one succeeded
220test_expect_success '@{u} works when tracking a local branch' '
06d53148 221 echo refs/heads/main >expect &&
b4417172 222 git -C clone rev-parse --symbolic-full-name @{u} >actual &&
5236fce6 223 test_cmp expect actual
1b4aee94
ZJS
224'
225
105e4733 226test_expect_success 'log -g other@{u}' '
9291e632
DL
227 commit=$(git rev-parse HEAD) &&
228 cat >expect <<-EOF &&
229 commit $commit
06d53148 230 Reflog: main@{0} (C O Mitter <committer@example.com>)
9291e632
DL
231 Reflog message: branch: Created from HEAD
232 Author: A U Thor <author@example.com>
233 Date: Thu Apr 7 15:15:13 2005 -0700
234
235 3
236 EOF
105e4733
JH
237 git log -1 -g other@{u} >actual &&
238 test_cmp expect actual
239'
240
105e4733 241test_expect_success 'log -g other@{u}@{now}' '
9291e632
DL
242 commit=$(git rev-parse HEAD) &&
243 cat >expect <<-EOF &&
244 commit $commit
06d53148 245 Reflog: main@{Thu Apr 7 15:17:13 2005 -0700} (C O Mitter <committer@example.com>)
9291e632
DL
246 Reflog message: branch: Created from HEAD
247 Author: A U Thor <author@example.com>
248 Date: Thu Apr 7 15:15:13 2005 -0700
249
250 3
251 EOF
105e4733
JH
252 git log -1 -g other@{u}@{now} >actual &&
253 test_cmp expect actual
254'
255
3f6eb30f
JK
256test_expect_success '@{reflog}-parsing does not look beyond colon' '
257 echo content >@{yesterday} &&
258 git add @{yesterday} &&
259 git commit -m "funny reflog file" &&
260 git hash-object @{yesterday} >expect &&
261 git rev-parse HEAD:@{yesterday} >actual
262'
263
264test_expect_success '@{upstream}-parsing does not look beyond colon' '
265 echo content >@{upstream} &&
266 git add @{upstream} &&
267 git commit -m "funny upstream file" &&
268 git hash-object @{upstream} >expect &&
269 git rev-parse HEAD:@{upstream} >actual
270'
271
28fb8438 272test_done