]> git.ipfire.org Git - thirdparty/git.git/blame - t/t6040-tracking-info.sh
status: update short status to respect --no-ahead-behind
[thirdparty/git.git] / t / t6040-tracking-info.sh
CommitLineData
c0234b2e
JH
1#!/bin/sh
2
3test_description='remote tracking stats'
4
5. ./test-lib.sh
6
7advance () {
8 echo "$1" >"$1" &&
9 git add "$1" &&
10 test_tick &&
11 git commit -m "$1"
12}
13
14test_expect_success setup '
e6821d09
JK
15 advance a &&
16 advance b &&
17 advance c &&
c0234b2e
JH
18 git clone . test &&
19 (
20 cd test &&
21 git checkout -b b1 origin &&
22 git reset --hard HEAD^ &&
23 advance d &&
24 git checkout -b b2 origin &&
25 git reset --hard b1 &&
26 git checkout -b b3 origin &&
27 git reset --hard HEAD^ &&
28 git checkout -b b4 origin &&
29 advance e &&
f2e08739
JX
30 advance f &&
31 git checkout -b brokenbase origin &&
32 git checkout -b b5 --track brokenbase &&
33 advance g &&
f223459b
JX
34 git branch -d brokenbase &&
35 git checkout -b b6 origin
57dac0bf
MG
36 ) &&
37 git checkout -b follower --track master &&
f2e08739 38 advance h
c0234b2e
JH
39'
40
6b364d48 41script='s/^..\(b.\) *[0-9a-f]* \(.*\)$/\1 \2/p'
c0234b2e 42cat >expect <<\EOF
6b364d48
TH
43b1 [ahead 1, behind 1] d
44b2 [ahead 1, behind 1] d
45b3 [behind 1] b
46b4 [ahead 2] f
949af068 47b5 [gone] g
6b364d48 48b6 c
c0234b2e
JH
49EOF
50
b3e1900a 51test_expect_success 'branch -v' '
c0234b2e
JH
52 (
53 cd test &&
54 git branch -v
55 ) |
56 sed -n -e "$script" >actual &&
b3e1900a 57 test_i18ncmp expect actual
c0234b2e
JH
58'
59
afc1692f 60cat >expect <<\EOF
6b364d48
TH
61b1 [origin/master: ahead 1, behind 1] d
62b2 [origin/master: ahead 1, behind 1] d
63b3 [origin/master: behind 1] b
64b4 [origin/master: ahead 2] f
65b5 [brokenbase: gone] g
66b6 [origin/master] c
afc1692f
MG
67EOF
68
69test_expect_success 'branch -vv' '
70 (
71 cd test &&
72 git branch -vv
73 ) |
74 sed -n -e "$script" >actual &&
75 test_i18ncmp expect actual
76'
77
f2e08739 78test_expect_success 'checkout (diverged from upstream)' '
c0234b2e
JH
79 (
80 cd test && git checkout b1
81 ) >actual &&
76642cce 82 test_i18ngrep "have 1 and 1 different" actual
c0234b2e
JH
83'
84
5e6e2b48 85test_expect_success 'checkout with local tracked branch' '
57dac0bf 86 git checkout master &&
a48fcd83 87 git checkout follower >actual &&
76642cce 88 test_i18ngrep "is ahead of" actual
57dac0bf
MG
89'
90
f2e08739
JX
91test_expect_success 'checkout (upstream is gone)' '
92 (
93 cd test &&
94 git checkout b5
95 ) >actual &&
96 test_i18ngrep "is based on .*, but the upstream is gone." actual
97'
98
f223459b
JX
99test_expect_success 'checkout (up-to-date with upstream)' '
100 (
101 cd test && git checkout b6
102 ) >actual &&
7560f547 103 test_i18ngrep "Your branch is up to date with .origin/master" actual
f223459b
JX
104'
105
f2e08739 106test_expect_success 'status (diverged from upstream)' '
c0234b2e
JH
107 (
108 cd test &&
109 git checkout b1 >/dev/null &&
110 # reports nothing to commit
9e4b7ab6 111 test_must_fail git commit --dry-run
c0234b2e 112 ) >actual &&
76642cce 113 test_i18ngrep "have 1 and 1 different" actual
c0234b2e
JH
114'
115
f2e08739
JX
116test_expect_success 'status (upstream is gone)' '
117 (
118 cd test &&
119 git checkout b5 >/dev/null &&
120 # reports nothing to commit
121 test_must_fail git commit --dry-run
122 ) >actual &&
123 test_i18ngrep "is based on .*, but the upstream is gone." actual
124'
125
f223459b
JX
126test_expect_success 'status (up-to-date with upstream)' '
127 (
128 cd test &&
129 git checkout b6 >/dev/null &&
130 # reports nothing to commit
131 test_must_fail git commit --dry-run
132 ) >actual &&
7560f547 133 test_i18ngrep "Your branch is up to date with .origin/master" actual
f223459b
JX
134'
135
f2e08739
JX
136cat >expect <<\EOF
137## b1...origin/master [ahead 1, behind 1]
138EOF
139
140test_expect_success 'status -s -b (diverged from upstream)' '
141 (
142 cd test &&
143 git checkout b1 >/dev/null &&
144 git status -s -b | head -1
145 ) >actual &&
146 test_i18ncmp expect actual
3ca1897c
JH
147'
148
149cat >expect <<\EOF
150## b1...origin/master [different]
151EOF
152
153test_expect_success 'status -s -b --no-ahead-behind (diverged from upstream)' '
154 (
155 cd test &&
156 git checkout b1 >/dev/null &&
157 git status -s -b --no-ahead-behind | head -1
158 ) >actual &&
159 test_i18ncmp expect actual
f2e08739
JX
160'
161
162cat >expect <<\EOF
163## b5...brokenbase [gone]
164EOF
165
166test_expect_success 'status -s -b (upstream is gone)' '
167 (
168 cd test &&
169 git checkout b5 >/dev/null &&
170 git status -s -b | head -1
171 ) >actual &&
172 test_i18ncmp expect actual
173'
174
f223459b
JX
175cat >expect <<\EOF
176## b6...origin/master
177EOF
178
179test_expect_success 'status -s -b (up-to-date with upstream)' '
180 (
181 cd test &&
182 git checkout b6 >/dev/null &&
183 git status -s -b | head -1
184 ) >actual &&
185 test_i18ncmp expect actual
186'
187
21b5b1e8 188test_expect_success 'fail to track lightweight tags' '
1be570f4
MG
189 git checkout master &&
190 git tag light &&
21b5b1e8 191 test_must_fail git branch --track lighttrack light >actual &&
76642cce 192 test_i18ngrep ! "set up to track" actual &&
21b5b1e8 193 test_must_fail git checkout lighttrack
1be570f4 194'
c0234b2e 195
21b5b1e8 196test_expect_success 'fail to track annotated tags' '
1be570f4
MG
197 git checkout master &&
198 git tag -m heavy heavy &&
21b5b1e8 199 test_must_fail git branch --track heavytrack heavy >actual &&
76642cce 200 test_i18ngrep ! "set up to track" actual &&
21b5b1e8 201 test_must_fail git checkout heavytrack
1be570f4 202'
4fc50066 203
52668846 204test_expect_success '--set-upstream-to does not change branch' '
4fc50066 205 git branch from-master master &&
52668846 206 git branch --set-upstream-to master from-master &&
4fc50066
IL
207 git branch from-master2 master &&
208 test_must_fail git config branch.from-master2.merge > actual &&
209 git rev-list from-master2 &&
210 git update-ref refs/heads/from-master2 from-master2^ &&
211 git rev-parse from-master2 >expect2 &&
52668846 212 git branch --set-upstream-to master from-master2 &&
4fc50066
IL
213 git config branch.from-master.merge > actual &&
214 git rev-parse from-master2 >actual2 &&
215 grep -q "^refs/heads/master$" actual &&
216 cmp expect2 actual2
217'
e9d4f740 218
52668846
KS
219test_expect_success '--set-upstream-to @{-1}' '
220 git checkout follower &&
e9d4f740
MG
221 git checkout from-master2 &&
222 git config branch.from-master2.merge > expect2 &&
52668846 223 git branch --set-upstream-to @{-1} from-master &&
e9d4f740
MG
224 git config branch.from-master.merge > actual &&
225 git config branch.from-master2.merge > actual2 &&
52668846 226 git branch --set-upstream-to follower from-master &&
e9d4f740
MG
227 git config branch.from-master.merge > expect &&
228 test_cmp expect2 actual2 &&
229 test_cmp expect actual
230'
231
c0234b2e 232test_done