Blame


1 818c7501 2019-07-11 stsp #!/bin/sh
2 818c7501 2019-07-11 stsp #
3 5aa81393 2020-01-06 stsp # Copyright (c) 2019, 2020 Stefan Sperling <stsp@openbsd.org>
4 818c7501 2019-07-11 stsp #
5 818c7501 2019-07-11 stsp # Permission to use, copy, modify, and distribute this software for any
6 818c7501 2019-07-11 stsp # purpose with or without fee is hereby granted, provided that the above
7 818c7501 2019-07-11 stsp # copyright notice and this permission notice appear in all copies.
8 818c7501 2019-07-11 stsp #
9 818c7501 2019-07-11 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 818c7501 2019-07-11 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 818c7501 2019-07-11 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 818c7501 2019-07-11 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 818c7501 2019-07-11 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 818c7501 2019-07-11 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 818c7501 2019-07-11 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 818c7501 2019-07-11 stsp
17 818c7501 2019-07-11 stsp . ./common.sh
18 818c7501 2019-07-11 stsp
19 818c7501 2019-07-11 stsp function test_rebase_basic {
20 818c7501 2019-07-11 stsp local testroot=`test_init rebase_basic`
21 818c7501 2019-07-11 stsp
22 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
23 818c7501 2019-07-11 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
24 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
25 818c7501 2019-07-11 stsp
26 818c7501 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
27 818c7501 2019-07-11 stsp (cd $testroot/repo && git rm -q beta)
28 818c7501 2019-07-11 stsp echo "new file on branch" > $testroot/repo/epsilon/new
29 818c7501 2019-07-11 stsp (cd $testroot/repo && git add epsilon/new)
30 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing more changes on newbranch"
31 818c7501 2019-07-11 stsp
32 818c7501 2019-07-11 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
33 818c7501 2019-07-11 stsp local orig_commit2=`git_show_head $testroot/repo`
34 818c7501 2019-07-11 stsp
35 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
36 818c7501 2019-07-11 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
37 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to zeta on master"
38 818c7501 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
39 818c7501 2019-07-11 stsp
40 818c7501 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
41 818c7501 2019-07-11 stsp ret="$?"
42 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
43 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
44 818c7501 2019-07-11 stsp return 1
45 818c7501 2019-07-11 stsp fi
46 818c7501 2019-07-11 stsp
47 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout)
48 818c7501 2019-07-11 stsp
49 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
50 818c7501 2019-07-11 stsp local new_commit1=`git_show_parent_commit $testroot/repo`
51 818c7501 2019-07-11 stsp local new_commit2=`git_show_head $testroot/repo`
52 818c7501 2019-07-11 stsp
53 818c7501 2019-07-11 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
54 818c7501 2019-07-11 stsp local short_orig_commit2=`trim_obj_id 28 $orig_commit2`
55 818c7501 2019-07-11 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
56 818c7501 2019-07-11 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
57 818c7501 2019-07-11 stsp
58 818c7501 2019-07-11 stsp echo "G gamma/delta" >> $testroot/stdout.expected
59 818c7501 2019-07-11 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
60 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
61 818c7501 2019-07-11 stsp echo ": committing to delta on newbranch" >> $testroot/stdout.expected
62 818c7501 2019-07-11 stsp echo "G alpha" >> $testroot/stdout.expected
63 818c7501 2019-07-11 stsp echo "D beta" >> $testroot/stdout.expected
64 818c7501 2019-07-11 stsp echo "A epsilon/new" >> $testroot/stdout.expected
65 818c7501 2019-07-11 stsp echo -n "$short_orig_commit2 -> $short_new_commit2" \
66 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
67 818c7501 2019-07-11 stsp echo ": committing more changes on newbranch" \
68 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
69 818c7501 2019-07-11 stsp echo "Switching work tree to refs/heads/newbranch" \
70 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
71 818c7501 2019-07-11 stsp
72 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
73 818c7501 2019-07-11 stsp ret="$?"
74 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
75 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
76 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
77 818c7501 2019-07-11 stsp return 1
78 818c7501 2019-07-11 stsp fi
79 818c7501 2019-07-11 stsp
80 818c7501 2019-07-11 stsp echo "modified delta on branch" > $testroot/content.expected
81 818c7501 2019-07-11 stsp cat $testroot/wt/gamma/delta > $testroot/content
82 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
83 818c7501 2019-07-11 stsp ret="$?"
84 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
85 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
86 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
87 818c7501 2019-07-11 stsp return 1
88 818c7501 2019-07-11 stsp fi
89 818c7501 2019-07-11 stsp
90 818c7501 2019-07-11 stsp echo "modified alpha on branch" > $testroot/content.expected
91 818c7501 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
92 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
93 818c7501 2019-07-11 stsp ret="$?"
94 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
95 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
96 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
97 818c7501 2019-07-11 stsp return 1
98 818c7501 2019-07-11 stsp fi
99 818c7501 2019-07-11 stsp
100 818c7501 2019-07-11 stsp if [ -e $testroot/wt/beta ]; then
101 818c7501 2019-07-11 stsp echo "removed file beta still exists on disk" >&2
102 818c7501 2019-07-11 stsp test_done "$testroot" "1"
103 818c7501 2019-07-11 stsp return 1
104 818c7501 2019-07-11 stsp fi
105 818c7501 2019-07-11 stsp
106 818c7501 2019-07-11 stsp echo "new file on branch" > $testroot/content.expected
107 818c7501 2019-07-11 stsp cat $testroot/wt/epsilon/new > $testroot/content
108 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
109 818c7501 2019-07-11 stsp ret="$?"
110 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
111 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
112 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
113 818c7501 2019-07-11 stsp return 1
114 818c7501 2019-07-11 stsp fi
115 818c7501 2019-07-11 stsp
116 818c7501 2019-07-11 stsp (cd $testroot/wt && got status > $testroot/stdout)
117 818c7501 2019-07-11 stsp
118 818c7501 2019-07-11 stsp echo -n > $testroot/stdout.expected
119 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
120 818c7501 2019-07-11 stsp ret="$?"
121 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
122 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
123 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
124 818c7501 2019-07-11 stsp return 1
125 818c7501 2019-07-11 stsp fi
126 818c7501 2019-07-11 stsp
127 818c7501 2019-07-11 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
128 818c7501 2019-07-11 stsp echo "commit $new_commit2 (newbranch)" > $testroot/stdout.expected
129 818c7501 2019-07-11 stsp echo "commit $new_commit1" >> $testroot/stdout.expected
130 818c7501 2019-07-11 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
131 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
132 818c7501 2019-07-11 stsp ret="$?"
133 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
134 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
135 818c7501 2019-07-11 stsp fi
136 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
137 818c7501 2019-07-11 stsp }
138 818c7501 2019-07-11 stsp
139 818c7501 2019-07-11 stsp function test_rebase_ancestry_check {
140 818c7501 2019-07-11 stsp local testroot=`test_init rebase_ancestry_check`
141 818c7501 2019-07-11 stsp
142 818c7501 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
143 818c7501 2019-07-11 stsp ret="$?"
144 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
145 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
146 818c7501 2019-07-11 stsp return 1
147 818c7501 2019-07-11 stsp fi
148 818c7501 2019-07-11 stsp
149 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
150 818c7501 2019-07-11 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
151 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
152 818c7501 2019-07-11 stsp
153 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
154 818c7501 2019-07-11 stsp 2> $testroot/stderr)
155 818c7501 2019-07-11 stsp
156 818c7501 2019-07-11 stsp echo -n > $testroot/stdout.expected
157 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
158 818c7501 2019-07-11 stsp ret="$?"
159 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
160 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
161 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
162 818c7501 2019-07-11 stsp return 1
163 818c7501 2019-07-11 stsp fi
164 818c7501 2019-07-11 stsp
165 818c7501 2019-07-11 stsp echo -n "got: specified branch resolves to a commit " \
166 818c7501 2019-07-11 stsp > $testroot/stderr.expected
167 818c7501 2019-07-11 stsp echo "which is already contained in work tree's branch" \
168 818c7501 2019-07-11 stsp >> $testroot/stderr.expected
169 818c7501 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
170 818c7501 2019-07-11 stsp ret="$?"
171 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
172 818c7501 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
173 818c7501 2019-07-11 stsp fi
174 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
175 818c7501 2019-07-11 stsp }
176 818c7501 2019-07-11 stsp
177 818c7501 2019-07-11 stsp function test_rebase_continue {
178 818c7501 2019-07-11 stsp local testroot=`test_init rebase_continue`
179 f69721c3 2019-10-21 stsp local init_commit=`git_show_head $testroot/repo`
180 818c7501 2019-07-11 stsp
181 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
182 818c7501 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
183 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on newbranch"
184 818c7501 2019-07-11 stsp local orig_commit1=`git_show_head $testroot/repo`
185 a0ea4fc0 2020-02-28 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
186 818c7501 2019-07-11 stsp
187 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
188 818c7501 2019-07-11 stsp echo "modified alpha on master" > $testroot/repo/alpha
189 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on master"
190 818c7501 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
191 818c7501 2019-07-11 stsp
192 818c7501 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
193 818c7501 2019-07-11 stsp ret="$?"
194 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
195 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
196 818c7501 2019-07-11 stsp return 1
197 818c7501 2019-07-11 stsp fi
198 818c7501 2019-07-11 stsp
199 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
200 818c7501 2019-07-11 stsp 2> $testroot/stderr)
201 818c7501 2019-07-11 stsp
202 818c7501 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
203 a0ea4fc0 2020-02-28 stsp echo -n "$short_orig_commit1 -> merge conflict" \
204 a0ea4fc0 2020-02-28 stsp >> $testroot/stdout.expected
205 a0ea4fc0 2020-02-28 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
206 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
207 818c7501 2019-07-11 stsp ret="$?"
208 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
209 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
210 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
211 818c7501 2019-07-11 stsp return 1
212 818c7501 2019-07-11 stsp fi
213 818c7501 2019-07-11 stsp
214 11495e04 2019-07-12 stsp echo "got: conflicts must be resolved before rebasing can continue" \
215 818c7501 2019-07-11 stsp > $testroot/stderr.expected
216 818c7501 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
217 818c7501 2019-07-11 stsp ret="$?"
218 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
219 818c7501 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
220 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
221 818c7501 2019-07-11 stsp return 1
222 818c7501 2019-07-11 stsp fi
223 818c7501 2019-07-11 stsp
224 f69721c3 2019-10-21 stsp echo "<<<<<<< merged change: commit $orig_commit1" \
225 f69721c3 2019-10-21 stsp > $testroot/content.expected
226 818c7501 2019-07-11 stsp echo "modified alpha on branch" >> $testroot/content.expected
227 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $init_commit" \
228 f69721c3 2019-10-21 stsp >> $testroot/content.expected
229 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
230 818c7501 2019-07-11 stsp echo "=======" >> $testroot/content.expected
231 818c7501 2019-07-11 stsp echo "modified alpha on master" >> $testroot/content.expected
232 f69721c3 2019-10-21 stsp echo '>>>>>>>' >> $testroot/content.expected
233 818c7501 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
234 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
235 818c7501 2019-07-11 stsp ret="$?"
236 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
237 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
238 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
239 818c7501 2019-07-11 stsp return 1
240 818c7501 2019-07-11 stsp fi
241 818c7501 2019-07-11 stsp
242 818c7501 2019-07-11 stsp (cd $testroot/wt && got status > $testroot/stdout)
243 818c7501 2019-07-11 stsp
244 818c7501 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
245 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
246 818c7501 2019-07-11 stsp ret="$?"
247 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
248 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
249 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
250 818c7501 2019-07-11 stsp return 1
251 818c7501 2019-07-11 stsp fi
252 818c7501 2019-07-11 stsp
253 818c7501 2019-07-11 stsp # resolve the conflict
254 818c7501 2019-07-11 stsp echo "modified alpha on branch and master" > $testroot/wt/alpha
255 818c7501 2019-07-11 stsp
256 f032f1f7 2019-08-04 stsp # test interaction of 'got stage' and rebase -c
257 f032f1f7 2019-08-04 stsp (cd $testroot/wt && got stage alpha > /dev/null)
258 f032f1f7 2019-08-04 stsp (cd $testroot/wt && got rebase -c > $testroot/stdout \
259 f032f1f7 2019-08-04 stsp 2> $testroot/stderr)
260 f032f1f7 2019-08-04 stsp ret="$?"
261 f032f1f7 2019-08-04 stsp if [ "$ret" == "0" ]; then
262 f032f1f7 2019-08-04 stsp echo "rebase succeeded unexpectedly" >&2
263 f032f1f7 2019-08-04 stsp test_done "$testroot" "1"
264 f032f1f7 2019-08-04 stsp return 1
265 f032f1f7 2019-08-04 stsp fi
266 f032f1f7 2019-08-04 stsp echo -n "got: work tree contains files with staged changes; " \
267 f032f1f7 2019-08-04 stsp > $testroot/stderr.expected
268 f032f1f7 2019-08-04 stsp echo "these changes must be committed or unstaged first" \
269 f032f1f7 2019-08-04 stsp >> $testroot/stderr.expected
270 f032f1f7 2019-08-04 stsp cmp -s $testroot/stderr.expected $testroot/stderr
271 f032f1f7 2019-08-04 stsp ret="$?"
272 f032f1f7 2019-08-04 stsp if [ "$ret" != "0" ]; then
273 f032f1f7 2019-08-04 stsp diff -u $testroot/stderr.expected $testroot/stderr
274 f032f1f7 2019-08-04 stsp test_done "$testroot" "$ret"
275 f032f1f7 2019-08-04 stsp return 1
276 f032f1f7 2019-08-04 stsp fi
277 f032f1f7 2019-08-04 stsp
278 f032f1f7 2019-08-04 stsp (cd $testroot/wt && got unstage alpha > /dev/null)
279 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase -c > $testroot/stdout)
280 818c7501 2019-07-11 stsp
281 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
282 818c7501 2019-07-11 stsp local new_commit1=`git_show_head $testroot/repo`
283 818c7501 2019-07-11 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
284 818c7501 2019-07-11 stsp
285 818c7501 2019-07-11 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
286 818c7501 2019-07-11 stsp > $testroot/stdout.expected
287 818c7501 2019-07-11 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
288 818c7501 2019-07-11 stsp echo "Switching work tree to refs/heads/newbranch" \
289 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
290 818c7501 2019-07-11 stsp
291 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
292 818c7501 2019-07-11 stsp ret="$?"
293 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
294 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
295 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
296 818c7501 2019-07-11 stsp return 1
297 818c7501 2019-07-11 stsp fi
298 818c7501 2019-07-11 stsp
299 818c7501 2019-07-11 stsp
300 818c7501 2019-07-11 stsp (cd $testroot/wt && got log -l2 | grep ^commit > $testroot/stdout)
301 818c7501 2019-07-11 stsp echo "commit $new_commit1 (newbranch)" > $testroot/stdout.expected
302 818c7501 2019-07-11 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
303 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
304 818c7501 2019-07-11 stsp ret="$?"
305 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
306 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
307 818c7501 2019-07-11 stsp fi
308 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
309 818c7501 2019-07-11 stsp }
310 818c7501 2019-07-11 stsp
311 818c7501 2019-07-11 stsp function test_rebase_abort {
312 818c7501 2019-07-11 stsp local testroot=`test_init rebase_abort`
313 818c7501 2019-07-11 stsp
314 818c7501 2019-07-11 stsp local init_commit=`git_show_head $testroot/repo`
315 818c7501 2019-07-11 stsp
316 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
317 818c7501 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
318 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on newbranch"
319 818c7501 2019-07-11 stsp local orig_commit1=`git_show_head $testroot/repo`
320 a0ea4fc0 2020-02-28 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
321 818c7501 2019-07-11 stsp
322 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
323 818c7501 2019-07-11 stsp echo "modified alpha on master" > $testroot/repo/alpha
324 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on master"
325 818c7501 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
326 818c7501 2019-07-11 stsp
327 818c7501 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
328 818c7501 2019-07-11 stsp ret="$?"
329 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
330 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
331 818c7501 2019-07-11 stsp return 1
332 818c7501 2019-07-11 stsp fi
333 818c7501 2019-07-11 stsp
334 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
335 818c7501 2019-07-11 stsp 2> $testroot/stderr)
336 818c7501 2019-07-11 stsp
337 818c7501 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
338 a0ea4fc0 2020-02-28 stsp echo -n "$short_orig_commit1 -> merge conflict" \
339 a0ea4fc0 2020-02-28 stsp >> $testroot/stdout.expected
340 a0ea4fc0 2020-02-28 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
341 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
342 818c7501 2019-07-11 stsp ret="$?"
343 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
344 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
345 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
346 818c7501 2019-07-11 stsp return 1
347 818c7501 2019-07-11 stsp fi
348 818c7501 2019-07-11 stsp
349 11495e04 2019-07-12 stsp echo "got: conflicts must be resolved before rebasing can continue" \
350 818c7501 2019-07-11 stsp > $testroot/stderr.expected
351 818c7501 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
352 818c7501 2019-07-11 stsp ret="$?"
353 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
354 818c7501 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
355 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
356 818c7501 2019-07-11 stsp return 1
357 818c7501 2019-07-11 stsp fi
358 818c7501 2019-07-11 stsp
359 f69721c3 2019-10-21 stsp echo "<<<<<<< merged change: commit $orig_commit1" \
360 f69721c3 2019-10-21 stsp > $testroot/content.expected
361 818c7501 2019-07-11 stsp echo "modified alpha on branch" >> $testroot/content.expected
362 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $init_commit" \
363 f69721c3 2019-10-21 stsp >> $testroot/content.expected
364 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
365 818c7501 2019-07-11 stsp echo "=======" >> $testroot/content.expected
366 818c7501 2019-07-11 stsp echo "modified alpha on master" >> $testroot/content.expected
367 f69721c3 2019-10-21 stsp echo '>>>>>>>' >> $testroot/content.expected
368 818c7501 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
369 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
370 818c7501 2019-07-11 stsp ret="$?"
371 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
372 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
373 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
374 818c7501 2019-07-11 stsp return 1
375 818c7501 2019-07-11 stsp fi
376 818c7501 2019-07-11 stsp
377 818c7501 2019-07-11 stsp (cd $testroot/wt && got status > $testroot/stdout)
378 818c7501 2019-07-11 stsp
379 818c7501 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
380 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
381 818c7501 2019-07-11 stsp ret="$?"
382 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
383 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
384 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
385 818c7501 2019-07-11 stsp return 1
386 818c7501 2019-07-11 stsp fi
387 818c7501 2019-07-11 stsp
388 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase -a > $testroot/stdout)
389 818c7501 2019-07-11 stsp
390 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
391 818c7501 2019-07-11 stsp
392 818c7501 2019-07-11 stsp echo "Switching work tree to refs/heads/master" \
393 818c7501 2019-07-11 stsp > $testroot/stdout.expected
394 818c7501 2019-07-11 stsp echo 'R alpha' >> $testroot/stdout.expected
395 818c7501 2019-07-11 stsp echo "Rebase of refs/heads/newbranch aborted" \
396 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
397 818c7501 2019-07-11 stsp
398 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
399 818c7501 2019-07-11 stsp ret="$?"
400 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
401 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
402 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
403 818c7501 2019-07-11 stsp return 1
404 818c7501 2019-07-11 stsp fi
405 818c7501 2019-07-11 stsp
406 818c7501 2019-07-11 stsp echo "modified alpha on master" > $testroot/content.expected
407 818c7501 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
408 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
409 818c7501 2019-07-11 stsp ret="$?"
410 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
411 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
412 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
413 818c7501 2019-07-11 stsp return 1
414 818c7501 2019-07-11 stsp fi
415 818c7501 2019-07-11 stsp
416 818c7501 2019-07-11 stsp (cd $testroot/wt && got log -l3 -c newbranch \
417 818c7501 2019-07-11 stsp | grep ^commit > $testroot/stdout)
418 818c7501 2019-07-11 stsp echo "commit $orig_commit1 (newbranch)" > $testroot/stdout.expected
419 818c7501 2019-07-11 stsp echo "commit $init_commit" >> $testroot/stdout.expected
420 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
421 818c7501 2019-07-11 stsp ret="$?"
422 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
423 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
424 818c7501 2019-07-11 stsp fi
425 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
426 818c7501 2019-07-11 stsp }
427 818c7501 2019-07-11 stsp
428 ff0d2220 2019-07-11 stsp function test_rebase_no_op_change {
429 ff0d2220 2019-07-11 stsp local testroot=`test_init rebase_no_op_change`
430 ff0d2220 2019-07-11 stsp local init_commit=`git_show_head $testroot/repo`
431 ff0d2220 2019-07-11 stsp
432 ff0d2220 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
433 ff0d2220 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
434 ff0d2220 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on newbranch"
435 ff0d2220 2019-07-11 stsp local orig_commit1=`git_show_head $testroot/repo`
436 a0ea4fc0 2020-02-28 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
437 ff0d2220 2019-07-11 stsp
438 ff0d2220 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
439 ff0d2220 2019-07-11 stsp echo "modified alpha on master" > $testroot/repo/alpha
440 ff0d2220 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on master"
441 ff0d2220 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
442 ff0d2220 2019-07-11 stsp
443 ff0d2220 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
444 ff0d2220 2019-07-11 stsp ret="$?"
445 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
446 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
447 ff0d2220 2019-07-11 stsp return 1
448 ff0d2220 2019-07-11 stsp fi
449 ff0d2220 2019-07-11 stsp
450 ff0d2220 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
451 ff0d2220 2019-07-11 stsp 2> $testroot/stderr)
452 ff0d2220 2019-07-11 stsp
453 ff0d2220 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
454 a0ea4fc0 2020-02-28 stsp echo -n "$short_orig_commit1 -> merge conflict" \
455 a0ea4fc0 2020-02-28 stsp >> $testroot/stdout.expected
456 a0ea4fc0 2020-02-28 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
457 ff0d2220 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
458 ff0d2220 2019-07-11 stsp ret="$?"
459 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
460 ff0d2220 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
461 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
462 ff0d2220 2019-07-11 stsp return 1
463 ff0d2220 2019-07-11 stsp fi
464 ff0d2220 2019-07-11 stsp
465 11495e04 2019-07-12 stsp echo "got: conflicts must be resolved before rebasing can continue" \
466 ff0d2220 2019-07-11 stsp > $testroot/stderr.expected
467 ff0d2220 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
468 ff0d2220 2019-07-11 stsp ret="$?"
469 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
470 ff0d2220 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
471 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
472 ff0d2220 2019-07-11 stsp return 1
473 ff0d2220 2019-07-11 stsp fi
474 ff0d2220 2019-07-11 stsp
475 f69721c3 2019-10-21 stsp echo "<<<<<<< merged change: commit $orig_commit1" \
476 f69721c3 2019-10-21 stsp > $testroot/content.expected
477 ff0d2220 2019-07-11 stsp echo "modified alpha on branch" >> $testroot/content.expected
478 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $init_commit" \
479 f69721c3 2019-10-21 stsp >> $testroot/content.expected
480 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
481 ff0d2220 2019-07-11 stsp echo "=======" >> $testroot/content.expected
482 ff0d2220 2019-07-11 stsp echo "modified alpha on master" >> $testroot/content.expected
483 f69721c3 2019-10-21 stsp echo '>>>>>>>' >> $testroot/content.expected
484 ff0d2220 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
485 ff0d2220 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
486 ff0d2220 2019-07-11 stsp ret="$?"
487 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
488 ff0d2220 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
489 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
490 ff0d2220 2019-07-11 stsp return 1
491 ff0d2220 2019-07-11 stsp fi
492 ff0d2220 2019-07-11 stsp
493 ff0d2220 2019-07-11 stsp (cd $testroot/wt && got status > $testroot/stdout)
494 ff0d2220 2019-07-11 stsp
495 ff0d2220 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
496 ff0d2220 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
497 ff0d2220 2019-07-11 stsp ret="$?"
498 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
499 ff0d2220 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
500 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
501 ff0d2220 2019-07-11 stsp return 1
502 ff0d2220 2019-07-11 stsp fi
503 ff0d2220 2019-07-11 stsp
504 ff0d2220 2019-07-11 stsp # resolve the conflict
505 ff0d2220 2019-07-11 stsp echo "modified alpha on master" > $testroot/wt/alpha
506 ff0d2220 2019-07-11 stsp
507 ff0d2220 2019-07-11 stsp (cd $testroot/wt && got rebase -c > $testroot/stdout)
508 ff0d2220 2019-07-11 stsp
509 ff0d2220 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
510 ff0d2220 2019-07-11 stsp local new_commit1=`git_show_head $testroot/repo`
511 ff0d2220 2019-07-11 stsp
512 ff0d2220 2019-07-11 stsp echo -n "$short_orig_commit1 -> no-op change" \
513 ff0d2220 2019-07-11 stsp > $testroot/stdout.expected
514 ff0d2220 2019-07-11 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
515 ff0d2220 2019-07-11 stsp echo "Switching work tree to refs/heads/newbranch" \
516 ff0d2220 2019-07-11 stsp >> $testroot/stdout.expected
517 ff0d2220 2019-07-11 stsp
518 ff0d2220 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
519 ff0d2220 2019-07-11 stsp ret="$?"
520 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
521 ff0d2220 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
522 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
523 ff0d2220 2019-07-11 stsp return 1
524 ff0d2220 2019-07-11 stsp fi
525 ff0d2220 2019-07-11 stsp
526 ff0d2220 2019-07-11 stsp
527 ff0d2220 2019-07-11 stsp (cd $testroot/wt && got log -l2 | grep ^commit > $testroot/stdout)
528 ff0d2220 2019-07-11 stsp echo "commit $master_commit (master, newbranch)" \
529 ff0d2220 2019-07-11 stsp > $testroot/stdout.expected
530 ff0d2220 2019-07-11 stsp echo "commit $init_commit" >> $testroot/stdout.expected
531 7d5807f4 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
532 7d5807f4 2019-07-11 stsp ret="$?"
533 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
534 7d5807f4 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
535 7d5807f4 2019-07-11 stsp fi
536 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
537 7d5807f4 2019-07-11 stsp }
538 7d5807f4 2019-07-11 stsp
539 7d5807f4 2019-07-11 stsp function test_rebase_in_progress {
540 4ba9c4f6 2019-07-11 stsp local testroot=`test_init rebase_in_progress`
541 7d5807f4 2019-07-11 stsp local init_commit=`git_show_head $testroot/repo`
542 7d5807f4 2019-07-11 stsp
543 7d5807f4 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
544 7d5807f4 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
545 7d5807f4 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on newbranch"
546 7d5807f4 2019-07-11 stsp local orig_commit1=`git_show_head $testroot/repo`
547 a0ea4fc0 2020-02-28 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
548 7d5807f4 2019-07-11 stsp
549 7d5807f4 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
550 7d5807f4 2019-07-11 stsp echo "modified alpha on master" > $testroot/repo/alpha
551 7d5807f4 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on master"
552 7d5807f4 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
553 7d5807f4 2019-07-11 stsp
554 7d5807f4 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
555 7d5807f4 2019-07-11 stsp ret="$?"
556 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
557 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
558 7d5807f4 2019-07-11 stsp return 1
559 7d5807f4 2019-07-11 stsp fi
560 7d5807f4 2019-07-11 stsp
561 7d5807f4 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
562 7d5807f4 2019-07-11 stsp 2> $testroot/stderr)
563 7d5807f4 2019-07-11 stsp
564 7d5807f4 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
565 a0ea4fc0 2020-02-28 stsp echo -n "$short_orig_commit1 -> merge conflict" \
566 a0ea4fc0 2020-02-28 stsp >> $testroot/stdout.expected
567 a0ea4fc0 2020-02-28 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
568 7d5807f4 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
569 7d5807f4 2019-07-11 stsp ret="$?"
570 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
571 7d5807f4 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
572 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
573 7d5807f4 2019-07-11 stsp return 1
574 7d5807f4 2019-07-11 stsp fi
575 7d5807f4 2019-07-11 stsp
576 11495e04 2019-07-12 stsp echo "got: conflicts must be resolved before rebasing can continue" \
577 7d5807f4 2019-07-11 stsp > $testroot/stderr.expected
578 7d5807f4 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
579 7d5807f4 2019-07-11 stsp ret="$?"
580 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
581 7d5807f4 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
582 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
583 7d5807f4 2019-07-11 stsp return 1
584 7d5807f4 2019-07-11 stsp fi
585 7d5807f4 2019-07-11 stsp
586 f69721c3 2019-10-21 stsp echo "<<<<<<< merged change: commit $orig_commit1" \
587 f69721c3 2019-10-21 stsp > $testroot/content.expected
588 7d5807f4 2019-07-11 stsp echo "modified alpha on branch" >> $testroot/content.expected
589 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $init_commit" \
590 f69721c3 2019-10-21 stsp >> $testroot/content.expected
591 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
592 7d5807f4 2019-07-11 stsp echo "=======" >> $testroot/content.expected
593 7d5807f4 2019-07-11 stsp echo "modified alpha on master" >> $testroot/content.expected
594 f69721c3 2019-10-21 stsp echo '>>>>>>>' >> $testroot/content.expected
595 7d5807f4 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
596 7d5807f4 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
597 7d5807f4 2019-07-11 stsp ret="$?"
598 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
599 7d5807f4 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
600 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
601 7d5807f4 2019-07-11 stsp return 1
602 7d5807f4 2019-07-11 stsp fi
603 7d5807f4 2019-07-11 stsp
604 7d5807f4 2019-07-11 stsp (cd $testroot/wt && got status > $testroot/stdout)
605 7d5807f4 2019-07-11 stsp
606 7d5807f4 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
607 ff0d2220 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
608 ff0d2220 2019-07-11 stsp ret="$?"
609 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
610 ff0d2220 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
611 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
612 7d5807f4 2019-07-11 stsp return 1
613 ff0d2220 2019-07-11 stsp fi
614 7d5807f4 2019-07-11 stsp
615 7d5807f4 2019-07-11 stsp for cmd in update commit; do
616 7d5807f4 2019-07-11 stsp (cd $testroot/wt && got $cmd > $testroot/stdout \
617 7d5807f4 2019-07-11 stsp 2> $testroot/stderr)
618 7d5807f4 2019-07-11 stsp
619 7d5807f4 2019-07-11 stsp echo -n > $testroot/stdout.expected
620 7d5807f4 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
621 7d5807f4 2019-07-11 stsp ret="$?"
622 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
623 7d5807f4 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
624 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
625 7d5807f4 2019-07-11 stsp return 1
626 7d5807f4 2019-07-11 stsp fi
627 7d5807f4 2019-07-11 stsp
628 7d5807f4 2019-07-11 stsp echo -n "got: a rebase operation is in progress in this " \
629 7d5807f4 2019-07-11 stsp > $testroot/stderr.expected
630 7d5807f4 2019-07-11 stsp echo "work tree and must be continued or aborted first" \
631 7d5807f4 2019-07-11 stsp >> $testroot/stderr.expected
632 7d5807f4 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
633 7d5807f4 2019-07-11 stsp ret="$?"
634 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
635 7d5807f4 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
636 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
637 7d5807f4 2019-07-11 stsp return 1
638 7d5807f4 2019-07-11 stsp fi
639 7d5807f4 2019-07-11 stsp done
640 64c6d990 2019-07-11 stsp
641 64c6d990 2019-07-11 stsp test_done "$testroot" "$ret"
642 64c6d990 2019-07-11 stsp }
643 64c6d990 2019-07-11 stsp
644 64c6d990 2019-07-11 stsp function test_rebase_path_prefix {
645 64c6d990 2019-07-11 stsp local testroot=`test_init rebase_path_prefix`
646 64c6d990 2019-07-11 stsp
647 64c6d990 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
648 64c6d990 2019-07-11 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
649 64c6d990 2019-07-11 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
650 64c6d990 2019-07-11 stsp
651 64c6d990 2019-07-11 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
652 64c6d990 2019-07-11 stsp local orig_commit2=`git_show_head $testroot/repo`
653 64c6d990 2019-07-11 stsp
654 64c6d990 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
655 64c6d990 2019-07-11 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
656 64c6d990 2019-07-11 stsp git_commit $testroot/repo -m "committing to zeta on master"
657 64c6d990 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
658 64c6d990 2019-07-11 stsp
659 64c6d990 2019-07-11 stsp got checkout -p epsilon $testroot/repo $testroot/wt > /dev/null
660 64c6d990 2019-07-11 stsp ret="$?"
661 64c6d990 2019-07-11 stsp if [ "$ret" != "0" ]; then
662 64c6d990 2019-07-11 stsp test_done "$testroot" "$ret"
663 64c6d990 2019-07-11 stsp return 1
664 64c6d990 2019-07-11 stsp fi
665 7d5807f4 2019-07-11 stsp
666 64c6d990 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch \
667 64c6d990 2019-07-11 stsp > $testroot/stdout 2> $testroot/stderr)
668 64c6d990 2019-07-11 stsp
669 64c6d990 2019-07-11 stsp echo -n > $testroot/stdout.expected
670 64c6d990 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
671 64c6d990 2019-07-11 stsp ret="$?"
672 64c6d990 2019-07-11 stsp if [ "$ret" != "0" ]; then
673 64c6d990 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
674 64c6d990 2019-07-11 stsp test_done "$testroot" "$ret"
675 64c6d990 2019-07-11 stsp return 1
676 64c6d990 2019-07-11 stsp fi
677 64c6d990 2019-07-11 stsp
678 64c6d990 2019-07-11 stsp echo -n "got: cannot rebase branch which contains changes outside " \
679 64c6d990 2019-07-11 stsp > $testroot/stderr.expected
680 64c6d990 2019-07-11 stsp echo "of this work tree's path prefix" >> $testroot/stderr.expected
681 787c8eb6 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
682 787c8eb6 2019-07-11 stsp ret="$?"
683 787c8eb6 2019-07-11 stsp if [ "$ret" != "0" ]; then
684 787c8eb6 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
685 787c8eb6 2019-07-11 stsp fi
686 787c8eb6 2019-07-11 stsp test_done "$testroot" "$ret"
687 787c8eb6 2019-07-11 stsp }
688 787c8eb6 2019-07-11 stsp
689 787c8eb6 2019-07-11 stsp function test_rebase_preserves_logmsg {
690 787c8eb6 2019-07-11 stsp local testroot=`test_init rebase_preserves_logmsg`
691 787c8eb6 2019-07-11 stsp
692 787c8eb6 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
693 787c8eb6 2019-07-11 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
694 787c8eb6 2019-07-11 stsp git_commit $testroot/repo -m "modified delta on newbranch"
695 787c8eb6 2019-07-11 stsp
696 787c8eb6 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
697 787c8eb6 2019-07-11 stsp git_commit $testroot/repo -m "modified alpha on newbranch"
698 787c8eb6 2019-07-11 stsp
699 787c8eb6 2019-07-11 stsp (cd $testroot/repo && got log -c newbranch -l2 | grep -v ^date: \
700 787c8eb6 2019-07-11 stsp > $testroot/log.expected)
701 787c8eb6 2019-07-11 stsp
702 787c8eb6 2019-07-11 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
703 787c8eb6 2019-07-11 stsp local orig_commit2=`git_show_head $testroot/repo`
704 787c8eb6 2019-07-11 stsp
705 787c8eb6 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
706 787c8eb6 2019-07-11 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
707 787c8eb6 2019-07-11 stsp git_commit $testroot/repo -m "committing to zeta on master"
708 787c8eb6 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
709 787c8eb6 2019-07-11 stsp
710 787c8eb6 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
711 787c8eb6 2019-07-11 stsp ret="$?"
712 787c8eb6 2019-07-11 stsp if [ "$ret" != "0" ]; then
713 787c8eb6 2019-07-11 stsp test_done "$testroot" "$ret"
714 787c8eb6 2019-07-11 stsp return 1
715 787c8eb6 2019-07-11 stsp fi
716 787c8eb6 2019-07-11 stsp
717 787c8eb6 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > /dev/null \
718 787c8eb6 2019-07-11 stsp 2> $testroot/stderr)
719 787c8eb6 2019-07-11 stsp
720 787c8eb6 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
721 787c8eb6 2019-07-11 stsp local new_commit1=`git_show_parent_commit $testroot/repo`
722 787c8eb6 2019-07-11 stsp local new_commit2=`git_show_head $testroot/repo`
723 787c8eb6 2019-07-11 stsp
724 787c8eb6 2019-07-11 stsp echo -n > $testroot/stderr.expected
725 64c6d990 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
726 64c6d990 2019-07-11 stsp ret="$?"
727 64c6d990 2019-07-11 stsp if [ "$ret" != "0" ]; then
728 64c6d990 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
729 787c8eb6 2019-07-11 stsp test_done "$testroot" "$ret"
730 787c8eb6 2019-07-11 stsp return 1
731 64c6d990 2019-07-11 stsp fi
732 787c8eb6 2019-07-11 stsp
733 787c8eb6 2019-07-11 stsp (cd $testroot/wt && got log -c newbranch -l2 | grep -v ^date: \
734 787c8eb6 2019-07-11 stsp > $testroot/log)
735 787c8eb6 2019-07-11 stsp sed -i -e "s/$orig_commit1/$new_commit1/" $testroot/log.expected
736 787c8eb6 2019-07-11 stsp sed -i -e "s/$orig_commit2/$new_commit2/" $testroot/log.expected
737 787c8eb6 2019-07-11 stsp cmp -s $testroot/log.expected $testroot/log
738 787c8eb6 2019-07-11 stsp ret="$?"
739 787c8eb6 2019-07-11 stsp if [ "$ret" != "0" ]; then
740 787c8eb6 2019-07-11 stsp diff -u $testroot/log.expected $testroot/log
741 fc66b545 2019-08-12 stsp fi
742 fc66b545 2019-08-12 stsp
743 fc66b545 2019-08-12 stsp test_done "$testroot" "$ret"
744 fc66b545 2019-08-12 stsp }
745 fc66b545 2019-08-12 stsp
746 fc66b545 2019-08-12 stsp function test_rebase_no_commits_to_rebase {
747 fc66b545 2019-08-12 stsp local testroot=`test_init rebase_no_commits_to_rebase`
748 fc66b545 2019-08-12 stsp
749 fc66b545 2019-08-12 stsp got checkout $testroot/repo $testroot/wt > /dev/null
750 fc66b545 2019-08-12 stsp ret="$?"
751 fc66b545 2019-08-12 stsp if [ "$ret" != "0" ]; then
752 fc66b545 2019-08-12 stsp test_done "$testroot" "$ret"
753 fc66b545 2019-08-12 stsp return 1
754 fc66b545 2019-08-12 stsp fi
755 fc66b545 2019-08-12 stsp
756 da76fce2 2020-02-24 stsp (cd $testroot/wt && got branch -n newbranch)
757 fc66b545 2019-08-12 stsp
758 fc66b545 2019-08-12 stsp echo "modified alpha on master" > $testroot/wt/alpha
759 fc66b545 2019-08-12 stsp (cd $testroot/wt && got commit -m 'test rebase_no_commits_to_rebase' \
760 fc66b545 2019-08-12 stsp > /dev/null)
761 fc66b545 2019-08-12 stsp (cd $testroot/wt && got update > /dev/null)
762 fc66b545 2019-08-12 stsp
763 fc66b545 2019-08-12 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
764 fc66b545 2019-08-12 stsp 2> $testroot/stderr)
765 fc66b545 2019-08-12 stsp
766 fc66b545 2019-08-12 stsp echo "got: no commits to rebase" > $testroot/stderr.expected
767 fc66b545 2019-08-12 stsp cmp -s $testroot/stderr.expected $testroot/stderr
768 fc66b545 2019-08-12 stsp ret="$?"
769 fc66b545 2019-08-12 stsp if [ "$ret" != "0" ]; then
770 fc66b545 2019-08-12 stsp diff -u $testroot/stderr.expected $testroot/stderr
771 fc66b545 2019-08-12 stsp test_done "$testroot" "$ret"
772 fc66b545 2019-08-12 stsp return 1
773 787c8eb6 2019-07-11 stsp fi
774 787c8eb6 2019-07-11 stsp
775 fc66b545 2019-08-12 stsp echo "Rebase of refs/heads/newbranch aborted" \
776 fc66b545 2019-08-12 stsp > $testroot/stdout.expected
777 fc66b545 2019-08-12 stsp cmp -s $testroot/stdout.expected $testroot/stdout
778 fc66b545 2019-08-12 stsp ret="$?"
779 fc66b545 2019-08-12 stsp if [ "$ret" != "0" ]; then
780 fc66b545 2019-08-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
781 fc66b545 2019-08-12 stsp test_done "$testroot" "$ret"
782 fc66b545 2019-08-12 stsp return 1
783 fc66b545 2019-08-12 stsp fi
784 fc66b545 2019-08-12 stsp
785 fc66b545 2019-08-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
786 fc66b545 2019-08-12 stsp echo "Already up-to-date" > $testroot/stdout.expected
787 fc66b545 2019-08-12 stsp cmp -s $testroot/stdout.expected $testroot/stdout
788 fc66b545 2019-08-12 stsp ret="$?"
789 fc66b545 2019-08-12 stsp if [ "$ret" != "0" ]; then
790 fc66b545 2019-08-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
791 fc66b545 2019-08-12 stsp fi
792 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
793 ff0d2220 2019-07-11 stsp }
794 38b0338b 2019-11-29 stsp
795 38b0338b 2019-11-29 stsp function test_rebase_forward {
796 38b0338b 2019-11-29 stsp local testroot=`test_init rebase_forward`
797 38b0338b 2019-11-29 stsp local commit0=`git_show_head $testroot/repo`
798 38b0338b 2019-11-29 stsp
799 38b0338b 2019-11-29 stsp got checkout $testroot/repo $testroot/wt > /dev/null
800 38b0338b 2019-11-29 stsp ret="$?"
801 38b0338b 2019-11-29 stsp if [ "$ret" != "0" ]; then
802 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
803 38b0338b 2019-11-29 stsp return 1
804 38b0338b 2019-11-29 stsp fi
805 38b0338b 2019-11-29 stsp
806 38b0338b 2019-11-29 stsp echo "change alpha 1" > $testroot/wt/alpha
807 38b0338b 2019-11-29 stsp (cd $testroot/wt && got commit -m 'test rebase_forward' \
808 38b0338b 2019-11-29 stsp > /dev/null)
809 38b0338b 2019-11-29 stsp local commit1=`git_show_head $testroot/repo`
810 ff0d2220 2019-07-11 stsp
811 38b0338b 2019-11-29 stsp echo "change alpha 2" > $testroot/wt/alpha
812 38b0338b 2019-11-29 stsp (cd $testroot/wt && got commit -m 'test rebase_forward' \
813 38b0338b 2019-11-29 stsp > /dev/null)
814 38b0338b 2019-11-29 stsp local commit2=`git_show_head $testroot/repo`
815 38b0338b 2019-11-29 stsp
816 38b0338b 2019-11-29 stsp # Simulate a situation where fast-forward is required.
817 38b0338b 2019-11-29 stsp # We want to fast-forward master to origin/master:
818 38b0338b 2019-11-29 stsp # commit 3907e11dceaae2ca7f8db79c2af31794673945ad (origin/master)
819 38b0338b 2019-11-29 stsp # commit ffcffcd102cf1af6572fbdbb4cf07a0f1fd2d840 (master)
820 38b0338b 2019-11-29 stsp # commit 87a6a8a2263a15b61c016ff1720b24741d455eb5
821 38b0338b 2019-11-29 stsp (cd $testroot/repo && got ref -d master)
822 e31abbf2 2020-03-22 stsp (cd $testroot/repo && got ref -c $commit1 refs/heads/master)
823 e31abbf2 2020-03-22 stsp (cd $testroot/repo && got ref -c $commit2 refs/remotes/origin/master)
824 38b0338b 2019-11-29 stsp
825 38b0338b 2019-11-29 stsp (cd $testroot/wt && got up -b origin/master > /dev/null)
826 38b0338b 2019-11-29 stsp
827 38b0338b 2019-11-29 stsp (cd $testroot/wt && got rebase master \
828 38b0338b 2019-11-29 stsp > $testroot/stdout 2> $testroot/stderr)
829 38b0338b 2019-11-29 stsp
830 38b0338b 2019-11-29 stsp echo "Forwarding refs/heads/master to commit $commit2" \
831 38b0338b 2019-11-29 stsp > $testroot/stdout.expected
832 38b0338b 2019-11-29 stsp echo "Switching work tree to refs/heads/master" \
833 38b0338b 2019-11-29 stsp >> $testroot/stdout.expected
834 38b0338b 2019-11-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
835 38b0338b 2019-11-29 stsp ret="$?"
836 38b0338b 2019-11-29 stsp if [ "$ret" != "0" ]; then
837 38b0338b 2019-11-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
838 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
839 38b0338b 2019-11-29 stsp return 1
840 38b0338b 2019-11-29 stsp fi
841 38b0338b 2019-11-29 stsp
842 38b0338b 2019-11-29 stsp # Ensure that rebase operation was completed correctly
843 38b0338b 2019-11-29 stsp (cd $testroot/wt && got rebase -a \
844 38b0338b 2019-11-29 stsp > $testroot/stdout 2> $testroot/stderr)
845 38b0338b 2019-11-29 stsp echo -n "" > $testroot/stdout.expected
846 38b0338b 2019-11-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
847 38b0338b 2019-11-29 stsp ret="$?"
848 38b0338b 2019-11-29 stsp if [ "$ret" != "0" ]; then
849 38b0338b 2019-11-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
850 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
851 38b0338b 2019-11-29 stsp return 1
852 38b0338b 2019-11-29 stsp fi
853 38b0338b 2019-11-29 stsp echo "got: rebase operation not in progress" > $testroot/stderr.expected
854 38b0338b 2019-11-29 stsp cmp -s $testroot/stderr.expected $testroot/stderr
855 38b0338b 2019-11-29 stsp ret="$?"
856 38b0338b 2019-11-29 stsp if [ "$ret" != "0" ]; then
857 38b0338b 2019-11-29 stsp diff -u $testroot/stderr.expected $testroot/stderr
858 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
859 38b0338b 2019-11-29 stsp return 1
860 38b0338b 2019-11-29 stsp fi
861 38b0338b 2019-11-29 stsp
862 da76fce2 2020-02-24 stsp (cd $testroot/wt && got branch -n > $testroot/stdout)
863 38b0338b 2019-11-29 stsp echo "master" > $testroot/stdout.expected
864 38b0338b 2019-11-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
865 38b0338b 2019-11-29 stsp ret="$?"
866 38b0338b 2019-11-29 stsp if [ "$ret" != "0" ]; then
867 38b0338b 2019-11-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
868 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
869 38b0338b 2019-11-29 stsp return 1
870 38b0338b 2019-11-29 stsp fi
871 38b0338b 2019-11-29 stsp
872 38b0338b 2019-11-29 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
873 38b0338b 2019-11-29 stsp echo "commit $commit2 (master, origin/master)" > $testroot/stdout.expected
874 38b0338b 2019-11-29 stsp echo "commit $commit1" >> $testroot/stdout.expected
875 38b0338b 2019-11-29 stsp echo "commit $commit0" >> $testroot/stdout.expected
876 38b0338b 2019-11-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
877 38b0338b 2019-11-29 stsp ret="$?"
878 38b0338b 2019-11-29 stsp if [ "$ret" != "0" ]; then
879 38b0338b 2019-11-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
880 38b0338b 2019-11-29 stsp fi
881 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
882 38b0338b 2019-11-29 stsp }
883 e51d7b55 2020-01-04 stsp
884 e51d7b55 2020-01-04 stsp function test_rebase_out_of_date {
885 e51d7b55 2020-01-04 stsp local testroot=`test_init rebase_out_of_date`
886 e51d7b55 2020-01-04 stsp local initial_commit=`git_show_head $testroot/repo`
887 e51d7b55 2020-01-04 stsp
888 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git checkout -q -b newbranch)
889 e51d7b55 2020-01-04 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
890 e51d7b55 2020-01-04 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
891 38b0338b 2019-11-29 stsp
892 e51d7b55 2020-01-04 stsp echo "modified alpha on branch" > $testroot/repo/alpha
893 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git rm -q beta)
894 e51d7b55 2020-01-04 stsp echo "new file on branch" > $testroot/repo/epsilon/new
895 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git add epsilon/new)
896 e51d7b55 2020-01-04 stsp git_commit $testroot/repo -m "committing more changes on newbranch"
897 e51d7b55 2020-01-04 stsp
898 e51d7b55 2020-01-04 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
899 e51d7b55 2020-01-04 stsp local orig_commit2=`git_show_head $testroot/repo`
900 e51d7b55 2020-01-04 stsp
901 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git checkout -q master)
902 e51d7b55 2020-01-04 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
903 e51d7b55 2020-01-04 stsp git_commit $testroot/repo -m "committing to zeta on master"
904 e51d7b55 2020-01-04 stsp local master_commit1=`git_show_head $testroot/repo`
905 e51d7b55 2020-01-04 stsp
906 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git checkout -q master)
907 e51d7b55 2020-01-04 stsp echo "modified beta on master" > $testroot/repo/beta
908 e51d7b55 2020-01-04 stsp git_commit $testroot/repo -m "committing to beta on master"
909 e51d7b55 2020-01-04 stsp local master_commit2=`git_show_head $testroot/repo`
910 e51d7b55 2020-01-04 stsp
911 e51d7b55 2020-01-04 stsp got checkout -c $master_commit1 $testroot/repo $testroot/wt \
912 e51d7b55 2020-01-04 stsp > /dev/null
913 e51d7b55 2020-01-04 stsp ret="$?"
914 e51d7b55 2020-01-04 stsp if [ "$ret" != "0" ]; then
915 e51d7b55 2020-01-04 stsp test_done "$testroot" "$ret"
916 e51d7b55 2020-01-04 stsp return 1
917 e51d7b55 2020-01-04 stsp fi
918 e51d7b55 2020-01-04 stsp
919 e51d7b55 2020-01-04 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
920 e51d7b55 2020-01-04 stsp 2> $testroot/stderr)
921 e51d7b55 2020-01-04 stsp
922 e51d7b55 2020-01-04 stsp echo -n > $testroot/stdout.expected
923 e51d7b55 2020-01-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
924 e51d7b55 2020-01-04 stsp ret="$?"
925 e51d7b55 2020-01-04 stsp if [ "$ret" != "0" ]; then
926 e51d7b55 2020-01-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
927 e51d7b55 2020-01-04 stsp test_done "$testroot" "$ret"
928 e51d7b55 2020-01-04 stsp return 1
929 e51d7b55 2020-01-04 stsp fi
930 e51d7b55 2020-01-04 stsp
931 e51d7b55 2020-01-04 stsp echo -n "got: work tree must be updated before it can be " \
932 e51d7b55 2020-01-04 stsp > $testroot/stderr.expected
933 e51d7b55 2020-01-04 stsp echo "used to rebase a branch" >> $testroot/stderr.expected
934 e51d7b55 2020-01-04 stsp cmp -s $testroot/stderr.expected $testroot/stderr
935 e51d7b55 2020-01-04 stsp ret="$?"
936 e51d7b55 2020-01-04 stsp if [ "$ret" != "0" ]; then
937 e51d7b55 2020-01-04 stsp diff -u $testroot/stderr.expected $testroot/stderr
938 e51d7b55 2020-01-04 stsp test_done "$testroot" "$ret"
939 e51d7b55 2020-01-04 stsp return 1
940 e51d7b55 2020-01-04 stsp fi
941 e51d7b55 2020-01-04 stsp
942 e51d7b55 2020-01-04 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
943 e51d7b55 2020-01-04 stsp echo "commit $master_commit2 (master)" > $testroot/stdout.expected
944 e51d7b55 2020-01-04 stsp echo "commit $master_commit1" >> $testroot/stdout.expected
945 e51d7b55 2020-01-04 stsp echo "commit $initial_commit" >> $testroot/stdout.expected
946 1ae0a341 2020-02-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
947 1ae0a341 2020-02-14 stsp ret="$?"
948 1ae0a341 2020-02-14 stsp if [ "$ret" != "0" ]; then
949 1ae0a341 2020-02-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
950 1ae0a341 2020-02-14 stsp fi
951 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
952 1ae0a341 2020-02-14 stsp }
953 1ae0a341 2020-02-14 stsp
954 1ae0a341 2020-02-14 stsp function test_rebase_trims_empty_dir {
955 1ae0a341 2020-02-14 stsp local testroot=`test_init rebase_trims_empty_dir`
956 1ae0a341 2020-02-14 stsp
957 1ae0a341 2020-02-14 stsp (cd $testroot/repo && git checkout -q -b newbranch)
958 1ae0a341 2020-02-14 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
959 1ae0a341 2020-02-14 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
960 1ae0a341 2020-02-14 stsp
961 1ae0a341 2020-02-14 stsp (cd $testroot/repo && git rm -q epsilon/zeta)
962 1ae0a341 2020-02-14 stsp git_commit $testroot/repo -m "removing zeta on newbranch"
963 1ae0a341 2020-02-14 stsp
964 1ae0a341 2020-02-14 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
965 1ae0a341 2020-02-14 stsp local orig_commit2=`git_show_head $testroot/repo`
966 1ae0a341 2020-02-14 stsp
967 1ae0a341 2020-02-14 stsp (cd $testroot/repo && git checkout -q master)
968 1ae0a341 2020-02-14 stsp echo "modified alpha on master" > $testroot/repo/alpha
969 1ae0a341 2020-02-14 stsp git_commit $testroot/repo -m "committing to alpha on master"
970 1ae0a341 2020-02-14 stsp local master_commit=`git_show_head $testroot/repo`
971 1ae0a341 2020-02-14 stsp
972 1ae0a341 2020-02-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
973 1ae0a341 2020-02-14 stsp ret="$?"
974 1ae0a341 2020-02-14 stsp if [ "$ret" != "0" ]; then
975 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
976 1ae0a341 2020-02-14 stsp return 1
977 1ae0a341 2020-02-14 stsp fi
978 1ae0a341 2020-02-14 stsp
979 1ae0a341 2020-02-14 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout)
980 1ae0a341 2020-02-14 stsp
981 1ae0a341 2020-02-14 stsp (cd $testroot/repo && git checkout -q newbranch)
982 1ae0a341 2020-02-14 stsp local new_commit1=`git_show_parent_commit $testroot/repo`
983 1ae0a341 2020-02-14 stsp local new_commit2=`git_show_head $testroot/repo`
984 1ae0a341 2020-02-14 stsp
985 1ae0a341 2020-02-14 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
986 1ae0a341 2020-02-14 stsp local short_orig_commit2=`trim_obj_id 28 $orig_commit2`
987 1ae0a341 2020-02-14 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
988 1ae0a341 2020-02-14 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
989 1ae0a341 2020-02-14 stsp
990 1ae0a341 2020-02-14 stsp echo "G gamma/delta" >> $testroot/stdout.expected
991 1ae0a341 2020-02-14 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
992 1ae0a341 2020-02-14 stsp >> $testroot/stdout.expected
993 1ae0a341 2020-02-14 stsp echo ": committing to delta on newbranch" >> $testroot/stdout.expected
994 1ae0a341 2020-02-14 stsp echo "D epsilon/zeta" >> $testroot/stdout.expected
995 1ae0a341 2020-02-14 stsp echo -n "$short_orig_commit2 -> $short_new_commit2" \
996 1ae0a341 2020-02-14 stsp >> $testroot/stdout.expected
997 1ae0a341 2020-02-14 stsp echo ": removing zeta on newbranch" \
998 1ae0a341 2020-02-14 stsp >> $testroot/stdout.expected
999 1ae0a341 2020-02-14 stsp echo "Switching work tree to refs/heads/newbranch" \
1000 1ae0a341 2020-02-14 stsp >> $testroot/stdout.expected
1001 1ae0a341 2020-02-14 stsp
1002 e51d7b55 2020-01-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1003 e51d7b55 2020-01-04 stsp ret="$?"
1004 e51d7b55 2020-01-04 stsp if [ "$ret" != "0" ]; then
1005 e51d7b55 2020-01-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
1006 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1007 1ae0a341 2020-02-14 stsp return 1
1008 e51d7b55 2020-01-04 stsp fi
1009 1ae0a341 2020-02-14 stsp
1010 1ae0a341 2020-02-14 stsp echo "modified delta on branch" > $testroot/content.expected
1011 1ae0a341 2020-02-14 stsp cat $testroot/wt/gamma/delta > $testroot/content
1012 1ae0a341 2020-02-14 stsp cmp -s $testroot/content.expected $testroot/content
1013 1ae0a341 2020-02-14 stsp ret="$?"
1014 1ae0a341 2020-02-14 stsp if [ "$ret" != "0" ]; then
1015 1ae0a341 2020-02-14 stsp diff -u $testroot/content.expected $testroot/content
1016 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1017 1ae0a341 2020-02-14 stsp return 1
1018 1ae0a341 2020-02-14 stsp fi
1019 1ae0a341 2020-02-14 stsp
1020 1ae0a341 2020-02-14 stsp echo "modified alpha on master" > $testroot/content.expected
1021 1ae0a341 2020-02-14 stsp cat $testroot/wt/alpha > $testroot/content
1022 1ae0a341 2020-02-14 stsp cmp -s $testroot/content.expected $testroot/content
1023 1ae0a341 2020-02-14 stsp ret="$?"
1024 1ae0a341 2020-02-14 stsp if [ "$ret" != "0" ]; then
1025 1ae0a341 2020-02-14 stsp diff -u $testroot/content.expected $testroot/content
1026 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1027 1ae0a341 2020-02-14 stsp return 1
1028 1ae0a341 2020-02-14 stsp fi
1029 1ae0a341 2020-02-14 stsp
1030 1ae0a341 2020-02-14 stsp if [ -e $testroot/wt/epsilon ]; then
1031 1ae0a341 2020-02-14 stsp echo "parent of removed zeta still exists on disk" >&2
1032 1ae0a341 2020-02-14 stsp test_done "$testroot" "1"
1033 1ae0a341 2020-02-14 stsp return 1
1034 1ae0a341 2020-02-14 stsp fi
1035 1ae0a341 2020-02-14 stsp
1036 1ae0a341 2020-02-14 stsp (cd $testroot/wt && got status > $testroot/stdout)
1037 1ae0a341 2020-02-14 stsp
1038 1ae0a341 2020-02-14 stsp echo -n > $testroot/stdout.expected
1039 1ae0a341 2020-02-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1040 1ae0a341 2020-02-14 stsp ret="$?"
1041 1ae0a341 2020-02-14 stsp if [ "$ret" != "0" ]; then
1042 1ae0a341 2020-02-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1043 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1044 1ae0a341 2020-02-14 stsp return 1
1045 1ae0a341 2020-02-14 stsp fi
1046 1ae0a341 2020-02-14 stsp
1047 1ae0a341 2020-02-14 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1048 1ae0a341 2020-02-14 stsp echo "commit $new_commit2 (newbranch)" > $testroot/stdout.expected
1049 1ae0a341 2020-02-14 stsp echo "commit $new_commit1" >> $testroot/stdout.expected
1050 1ae0a341 2020-02-14 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
1051 1ae0a341 2020-02-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1052 1ae0a341 2020-02-14 stsp ret="$?"
1053 1ae0a341 2020-02-14 stsp if [ "$ret" != "0" ]; then
1054 1ae0a341 2020-02-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1055 1ae0a341 2020-02-14 stsp fi
1056 e51d7b55 2020-01-04 stsp test_done "$testroot" "$ret"
1057 e51d7b55 2020-01-04 stsp }
1058 ca6da77d 2020-03-22 stsp
1059 ca6da77d 2020-03-22 stsp function test_rebase_delete_missing_file {
1060 ca6da77d 2020-03-22 stsp local testroot=`test_init rebase_delete_missing_file`
1061 ca6da77d 2020-03-22 stsp
1062 ca6da77d 2020-03-22 stsp mkdir -p $testroot/repo/d/f/g
1063 ca6da77d 2020-03-22 stsp echo "new file" > $testroot/repo/d/f/g/new
1064 ca6da77d 2020-03-22 stsp (cd $testroot/repo && git add d/f/g/new)
1065 ca6da77d 2020-03-22 stsp git_commit $testroot/repo -m "adding a subdir"
1066 ca6da77d 2020-03-22 stsp local commit0=`git_show_head $testroot/repo`
1067 ca6da77d 2020-03-22 stsp
1068 a740a1b3 2020-03-22 stsp got br -r $testroot/repo -c master newbranch
1069 a740a1b3 2020-03-22 stsp
1070 a740a1b3 2020-03-22 stsp got checkout -b newbranch $testroot/repo $testroot/wt > /dev/null
1071 ca6da77d 2020-03-22 stsp
1072 a740a1b3 2020-03-22 stsp echo "modified delta on branch" > $testroot/wt/gamma/delta
1073 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got commit \
1074 a740a1b3 2020-03-22 stsp -m "committing to delta on newbranch" > /dev/null)
1075 ca6da77d 2020-03-22 stsp
1076 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got rm beta d/f/g/new > /dev/null)
1077 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got commit \
1078 a740a1b3 2020-03-22 stsp -m "removing beta and d/f/g/new on newbranch" > /dev/null)
1079 a740a1b3 2020-03-22 stsp
1080 a740a1b3 2020-03-22 stsp (cd $testroot/repo && git checkout -q newbranch)
1081 ca6da77d 2020-03-22 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
1082 ca6da77d 2020-03-22 stsp local orig_commit2=`git_show_head $testroot/repo`
1083 ca6da77d 2020-03-22 stsp
1084 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got update -b master > /dev/null)
1085 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got rm beta d/f/g/new > /dev/null)
1086 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got commit \
1087 a740a1b3 2020-03-22 stsp -m "removing beta and d/f/g/new on master" > /dev/null)
1088 a740a1b3 2020-03-22 stsp
1089 ca6da77d 2020-03-22 stsp (cd $testroot/repo && git checkout -q master)
1090 ca6da77d 2020-03-22 stsp local master_commit=`git_show_head $testroot/repo`
1091 ca6da77d 2020-03-22 stsp
1092 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got update -b master > /dev/null)
1093 ca6da77d 2020-03-22 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout)
1094 ca6da77d 2020-03-22 stsp
1095 ca6da77d 2020-03-22 stsp (cd $testroot/repo && git checkout -q newbranch)
1096 ca6da77d 2020-03-22 stsp local new_commit1=`git_show_head $testroot/repo`
1097 ca6da77d 2020-03-22 stsp
1098 ca6da77d 2020-03-22 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
1099 ca6da77d 2020-03-22 stsp local short_orig_commit2=`trim_obj_id 28 $orig_commit2`
1100 ca6da77d 2020-03-22 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
1101 ca6da77d 2020-03-22 stsp
1102 ca6da77d 2020-03-22 stsp echo "G gamma/delta" >> $testroot/stdout.expected
1103 ca6da77d 2020-03-22 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
1104 ca6da77d 2020-03-22 stsp >> $testroot/stdout.expected
1105 ca6da77d 2020-03-22 stsp echo ": committing to delta on newbranch" >> $testroot/stdout.expected
1106 ca6da77d 2020-03-22 stsp echo "! beta" >> $testroot/stdout.expected
1107 ca6da77d 2020-03-22 stsp echo "! d/f/g/new" >> $testroot/stdout.expected
1108 ca6da77d 2020-03-22 stsp echo -n "$short_orig_commit2 -> no-op change" \
1109 ca6da77d 2020-03-22 stsp >> $testroot/stdout.expected
1110 a740a1b3 2020-03-22 stsp echo ": removing beta and d/f/g/new on newbranch" \
1111 ca6da77d 2020-03-22 stsp >> $testroot/stdout.expected
1112 ca6da77d 2020-03-22 stsp echo "Switching work tree to refs/heads/newbranch" \
1113 ca6da77d 2020-03-22 stsp >> $testroot/stdout.expected
1114 ca6da77d 2020-03-22 stsp
1115 ca6da77d 2020-03-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1116 ca6da77d 2020-03-22 stsp ret="$?"
1117 ca6da77d 2020-03-22 stsp if [ "$ret" != "0" ]; then
1118 ca6da77d 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1119 ca6da77d 2020-03-22 stsp test_done "$testroot" "$ret"
1120 ca6da77d 2020-03-22 stsp return 1
1121 ca6da77d 2020-03-22 stsp fi
1122 ca6da77d 2020-03-22 stsp
1123 ca6da77d 2020-03-22 stsp echo "modified delta on branch" > $testroot/content.expected
1124 ca6da77d 2020-03-22 stsp cat $testroot/wt/gamma/delta > $testroot/content
1125 ca6da77d 2020-03-22 stsp cmp -s $testroot/content.expected $testroot/content
1126 ca6da77d 2020-03-22 stsp ret="$?"
1127 ca6da77d 2020-03-22 stsp if [ "$ret" != "0" ]; then
1128 ca6da77d 2020-03-22 stsp diff -u $testroot/content.expected $testroot/content
1129 ca6da77d 2020-03-22 stsp test_done "$testroot" "$ret"
1130 ca6da77d 2020-03-22 stsp return 1
1131 ca6da77d 2020-03-22 stsp fi
1132 ca6da77d 2020-03-22 stsp
1133 ca6da77d 2020-03-22 stsp if [ -e $testroot/wt/beta ]; then
1134 ca6da77d 2020-03-22 stsp echo "removed file beta still exists on disk" >&2
1135 ca6da77d 2020-03-22 stsp test_done "$testroot" "1"
1136 ca6da77d 2020-03-22 stsp return 1
1137 ca6da77d 2020-03-22 stsp fi
1138 ca6da77d 2020-03-22 stsp
1139 ca6da77d 2020-03-22 stsp (cd $testroot/wt && got status > $testroot/stdout)
1140 ca6da77d 2020-03-22 stsp
1141 ca6da77d 2020-03-22 stsp echo -n > $testroot/stdout.expected
1142 ca6da77d 2020-03-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1143 ca6da77d 2020-03-22 stsp ret="$?"
1144 ca6da77d 2020-03-22 stsp if [ "$ret" != "0" ]; then
1145 ca6da77d 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1146 ca6da77d 2020-03-22 stsp test_done "$testroot" "$ret"
1147 ca6da77d 2020-03-22 stsp return 1
1148 ca6da77d 2020-03-22 stsp fi
1149 ca6da77d 2020-03-22 stsp
1150 ca6da77d 2020-03-22 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1151 ca6da77d 2020-03-22 stsp echo "commit $new_commit1 (newbranch)" > $testroot/stdout.expected
1152 ca6da77d 2020-03-22 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
1153 ca6da77d 2020-03-22 stsp echo "commit $commit0" >> $testroot/stdout.expected
1154 ca6da77d 2020-03-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1155 ca6da77d 2020-03-22 stsp ret="$?"
1156 ca6da77d 2020-03-22 stsp if [ "$ret" != "0" ]; then
1157 ca6da77d 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1158 ca6da77d 2020-03-22 stsp fi
1159 ca6da77d 2020-03-22 stsp test_done "$testroot" "$ret"
1160 ca6da77d 2020-03-22 stsp }
1161 ca6da77d 2020-03-22 stsp
1162 dcf44d04 2019-07-11 stsp run_test test_rebase_basic
1163 dcf44d04 2019-07-11 stsp run_test test_rebase_ancestry_check
1164 dcf44d04 2019-07-11 stsp run_test test_rebase_continue
1165 dcf44d04 2019-07-11 stsp run_test test_rebase_abort
1166 ff0d2220 2019-07-11 stsp run_test test_rebase_no_op_change
1167 7d5807f4 2019-07-11 stsp run_test test_rebase_in_progress
1168 64c6d990 2019-07-11 stsp run_test test_rebase_path_prefix
1169 787c8eb6 2019-07-11 stsp run_test test_rebase_preserves_logmsg
1170 fc66b545 2019-08-12 stsp run_test test_rebase_no_commits_to_rebase
1171 38b0338b 2019-11-29 stsp run_test test_rebase_forward
1172 e51d7b55 2020-01-04 stsp run_test test_rebase_out_of_date
1173 1ae0a341 2020-02-14 stsp run_test test_rebase_trims_empty_dir
1174 ca6da77d 2020-03-22 stsp run_test test_rebase_delete_missing_file