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 f6cae3ed 2020-09-13 naddy 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 a615e0e7 2020-12-16 stsp test_done "$testroot" "$ret"
136 a615e0e7 2020-12-16 stsp return 1
137 818c7501 2019-07-11 stsp fi
138 a615e0e7 2020-12-16 stsp
139 a615e0e7 2020-12-16 stsp (cd $testroot/wt && got update > $testroot/stdout)
140 a615e0e7 2020-12-16 stsp
141 a615e0e7 2020-12-16 stsp echo 'Already up-to-date' > $testroot/stdout.expected
142 a615e0e7 2020-12-16 stsp cmp -s $testroot/stdout.expected $testroot/stdout
143 a615e0e7 2020-12-16 stsp ret="$?"
144 a615e0e7 2020-12-16 stsp if [ "$ret" != "0" ]; then
145 a615e0e7 2020-12-16 stsp diff -u $testroot/stdout.expected $testroot/stdout
146 a615e0e7 2020-12-16 stsp fi
147 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
148 818c7501 2019-07-11 stsp }
149 818c7501 2019-07-11 stsp
150 f6cae3ed 2020-09-13 naddy test_rebase_ancestry_check() {
151 818c7501 2019-07-11 stsp local testroot=`test_init rebase_ancestry_check`
152 818c7501 2019-07-11 stsp
153 818c7501 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
154 818c7501 2019-07-11 stsp ret="$?"
155 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
156 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
157 818c7501 2019-07-11 stsp return 1
158 818c7501 2019-07-11 stsp fi
159 818c7501 2019-07-11 stsp
160 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
161 818c7501 2019-07-11 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
162 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
163 818c7501 2019-07-11 stsp
164 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
165 818c7501 2019-07-11 stsp 2> $testroot/stderr)
166 818c7501 2019-07-11 stsp
167 818c7501 2019-07-11 stsp echo -n > $testroot/stdout.expected
168 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
169 818c7501 2019-07-11 stsp ret="$?"
170 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
171 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
172 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
173 818c7501 2019-07-11 stsp return 1
174 818c7501 2019-07-11 stsp fi
175 818c7501 2019-07-11 stsp
176 df3ed485 2021-01-31 stsp echo "got: refs/heads/newbranch is already based on refs/heads/master" \
177 818c7501 2019-07-11 stsp > $testroot/stderr.expected
178 818c7501 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
179 818c7501 2019-07-11 stsp ret="$?"
180 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
181 818c7501 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
182 818c7501 2019-07-11 stsp fi
183 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
184 818c7501 2019-07-11 stsp }
185 818c7501 2019-07-11 stsp
186 f6cae3ed 2020-09-13 naddy test_rebase_continue() {
187 818c7501 2019-07-11 stsp local testroot=`test_init rebase_continue`
188 f69721c3 2019-10-21 stsp local init_commit=`git_show_head $testroot/repo`
189 818c7501 2019-07-11 stsp
190 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
191 818c7501 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
192 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on newbranch"
193 818c7501 2019-07-11 stsp local orig_commit1=`git_show_head $testroot/repo`
194 a0ea4fc0 2020-02-28 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
195 818c7501 2019-07-11 stsp
196 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
197 818c7501 2019-07-11 stsp echo "modified alpha on master" > $testroot/repo/alpha
198 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on master"
199 818c7501 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
200 818c7501 2019-07-11 stsp
201 818c7501 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
202 818c7501 2019-07-11 stsp ret="$?"
203 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
204 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
205 818c7501 2019-07-11 stsp return 1
206 818c7501 2019-07-11 stsp fi
207 818c7501 2019-07-11 stsp
208 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
209 818c7501 2019-07-11 stsp 2> $testroot/stderr)
210 818c7501 2019-07-11 stsp
211 818c7501 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
212 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
213 a0ea4fc0 2020-02-28 stsp echo -n "$short_orig_commit1 -> merge conflict" \
214 a0ea4fc0 2020-02-28 stsp >> $testroot/stdout.expected
215 a0ea4fc0 2020-02-28 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
216 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
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/stdout.expected $testroot/stdout
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 11495e04 2019-07-12 stsp echo "got: conflicts must be resolved before rebasing can continue" \
225 818c7501 2019-07-11 stsp > $testroot/stderr.expected
226 818c7501 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
227 818c7501 2019-07-11 stsp ret="$?"
228 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
229 818c7501 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
230 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
231 818c7501 2019-07-11 stsp return 1
232 818c7501 2019-07-11 stsp fi
233 818c7501 2019-07-11 stsp
234 f69721c3 2019-10-21 stsp echo "<<<<<<< merged change: commit $orig_commit1" \
235 f69721c3 2019-10-21 stsp > $testroot/content.expected
236 818c7501 2019-07-11 stsp echo "modified alpha on branch" >> $testroot/content.expected
237 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $init_commit" \
238 f69721c3 2019-10-21 stsp >> $testroot/content.expected
239 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
240 818c7501 2019-07-11 stsp echo "=======" >> $testroot/content.expected
241 818c7501 2019-07-11 stsp echo "modified alpha on master" >> $testroot/content.expected
242 f69721c3 2019-10-21 stsp echo '>>>>>>>' >> $testroot/content.expected
243 818c7501 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
244 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
245 818c7501 2019-07-11 stsp ret="$?"
246 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
247 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
248 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
249 818c7501 2019-07-11 stsp return 1
250 818c7501 2019-07-11 stsp fi
251 818c7501 2019-07-11 stsp
252 818c7501 2019-07-11 stsp (cd $testroot/wt && got status > $testroot/stdout)
253 818c7501 2019-07-11 stsp
254 818c7501 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
255 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
256 818c7501 2019-07-11 stsp ret="$?"
257 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
258 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
259 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
260 818c7501 2019-07-11 stsp return 1
261 818c7501 2019-07-11 stsp fi
262 818c7501 2019-07-11 stsp
263 818c7501 2019-07-11 stsp # resolve the conflict
264 818c7501 2019-07-11 stsp echo "modified alpha on branch and master" > $testroot/wt/alpha
265 818c7501 2019-07-11 stsp
266 f032f1f7 2019-08-04 stsp # test interaction of 'got stage' and rebase -c
267 f032f1f7 2019-08-04 stsp (cd $testroot/wt && got stage alpha > /dev/null)
268 f032f1f7 2019-08-04 stsp (cd $testroot/wt && got rebase -c > $testroot/stdout \
269 f032f1f7 2019-08-04 stsp 2> $testroot/stderr)
270 f032f1f7 2019-08-04 stsp ret="$?"
271 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
272 f032f1f7 2019-08-04 stsp echo "rebase succeeded unexpectedly" >&2
273 f032f1f7 2019-08-04 stsp test_done "$testroot" "1"
274 f032f1f7 2019-08-04 stsp return 1
275 f032f1f7 2019-08-04 stsp fi
276 f032f1f7 2019-08-04 stsp echo -n "got: work tree contains files with staged changes; " \
277 f032f1f7 2019-08-04 stsp > $testroot/stderr.expected
278 f032f1f7 2019-08-04 stsp echo "these changes must be committed or unstaged first" \
279 f032f1f7 2019-08-04 stsp >> $testroot/stderr.expected
280 f032f1f7 2019-08-04 stsp cmp -s $testroot/stderr.expected $testroot/stderr
281 f032f1f7 2019-08-04 stsp ret="$?"
282 f032f1f7 2019-08-04 stsp if [ "$ret" != "0" ]; then
283 f032f1f7 2019-08-04 stsp diff -u $testroot/stderr.expected $testroot/stderr
284 f032f1f7 2019-08-04 stsp test_done "$testroot" "$ret"
285 f032f1f7 2019-08-04 stsp return 1
286 f032f1f7 2019-08-04 stsp fi
287 f032f1f7 2019-08-04 stsp
288 f032f1f7 2019-08-04 stsp (cd $testroot/wt && got unstage alpha > /dev/null)
289 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase -c > $testroot/stdout)
290 818c7501 2019-07-11 stsp
291 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
292 818c7501 2019-07-11 stsp local new_commit1=`git_show_head $testroot/repo`
293 818c7501 2019-07-11 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
294 818c7501 2019-07-11 stsp
295 818c7501 2019-07-11 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
296 818c7501 2019-07-11 stsp > $testroot/stdout.expected
297 818c7501 2019-07-11 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
298 818c7501 2019-07-11 stsp echo "Switching work tree to refs/heads/newbranch" \
299 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
300 818c7501 2019-07-11 stsp
301 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
302 818c7501 2019-07-11 stsp ret="$?"
303 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
304 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
305 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
306 818c7501 2019-07-11 stsp return 1
307 818c7501 2019-07-11 stsp fi
308 818c7501 2019-07-11 stsp
309 818c7501 2019-07-11 stsp
310 818c7501 2019-07-11 stsp (cd $testroot/wt && got log -l2 | grep ^commit > $testroot/stdout)
311 818c7501 2019-07-11 stsp echo "commit $new_commit1 (newbranch)" > $testroot/stdout.expected
312 818c7501 2019-07-11 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
313 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
314 818c7501 2019-07-11 stsp ret="$?"
315 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
316 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
317 818c7501 2019-07-11 stsp fi
318 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
319 818c7501 2019-07-11 stsp }
320 818c7501 2019-07-11 stsp
321 f6cae3ed 2020-09-13 naddy test_rebase_abort() {
322 818c7501 2019-07-11 stsp local testroot=`test_init rebase_abort`
323 818c7501 2019-07-11 stsp
324 818c7501 2019-07-11 stsp local init_commit=`git_show_head $testroot/repo`
325 818c7501 2019-07-11 stsp
326 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
327 818c7501 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
328 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on newbranch"
329 818c7501 2019-07-11 stsp local orig_commit1=`git_show_head $testroot/repo`
330 a0ea4fc0 2020-02-28 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
331 818c7501 2019-07-11 stsp
332 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
333 818c7501 2019-07-11 stsp echo "modified alpha on master" > $testroot/repo/alpha
334 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on master"
335 818c7501 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
336 818c7501 2019-07-11 stsp
337 818c7501 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
338 818c7501 2019-07-11 stsp ret="$?"
339 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
340 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
341 818c7501 2019-07-11 stsp return 1
342 818c7501 2019-07-11 stsp fi
343 818c7501 2019-07-11 stsp
344 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
345 818c7501 2019-07-11 stsp 2> $testroot/stderr)
346 818c7501 2019-07-11 stsp
347 818c7501 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
348 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
349 a0ea4fc0 2020-02-28 stsp echo -n "$short_orig_commit1 -> merge conflict" \
350 a0ea4fc0 2020-02-28 stsp >> $testroot/stdout.expected
351 a0ea4fc0 2020-02-28 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
352 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
353 818c7501 2019-07-11 stsp ret="$?"
354 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
355 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
356 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
357 818c7501 2019-07-11 stsp return 1
358 818c7501 2019-07-11 stsp fi
359 818c7501 2019-07-11 stsp
360 11495e04 2019-07-12 stsp echo "got: conflicts must be resolved before rebasing can continue" \
361 818c7501 2019-07-11 stsp > $testroot/stderr.expected
362 818c7501 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
363 818c7501 2019-07-11 stsp ret="$?"
364 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
365 818c7501 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
366 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
367 818c7501 2019-07-11 stsp return 1
368 818c7501 2019-07-11 stsp fi
369 818c7501 2019-07-11 stsp
370 f69721c3 2019-10-21 stsp echo "<<<<<<< merged change: commit $orig_commit1" \
371 f69721c3 2019-10-21 stsp > $testroot/content.expected
372 818c7501 2019-07-11 stsp echo "modified alpha on branch" >> $testroot/content.expected
373 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $init_commit" \
374 f69721c3 2019-10-21 stsp >> $testroot/content.expected
375 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
376 818c7501 2019-07-11 stsp echo "=======" >> $testroot/content.expected
377 818c7501 2019-07-11 stsp echo "modified alpha on master" >> $testroot/content.expected
378 f69721c3 2019-10-21 stsp echo '>>>>>>>' >> $testroot/content.expected
379 818c7501 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
380 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
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/content.expected $testroot/content
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 status > $testroot/stdout)
389 818c7501 2019-07-11 stsp
390 818c7501 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
391 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
392 818c7501 2019-07-11 stsp ret="$?"
393 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
394 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
395 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
396 818c7501 2019-07-11 stsp return 1
397 818c7501 2019-07-11 stsp fi
398 818c7501 2019-07-11 stsp
399 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase -a > $testroot/stdout)
400 818c7501 2019-07-11 stsp
401 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
402 818c7501 2019-07-11 stsp
403 818c7501 2019-07-11 stsp echo "Switching work tree to refs/heads/master" \
404 818c7501 2019-07-11 stsp > $testroot/stdout.expected
405 818c7501 2019-07-11 stsp echo 'R alpha' >> $testroot/stdout.expected
406 818c7501 2019-07-11 stsp echo "Rebase of refs/heads/newbranch aborted" \
407 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
408 818c7501 2019-07-11 stsp
409 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
410 818c7501 2019-07-11 stsp ret="$?"
411 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
412 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
413 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
414 818c7501 2019-07-11 stsp return 1
415 818c7501 2019-07-11 stsp fi
416 818c7501 2019-07-11 stsp
417 818c7501 2019-07-11 stsp echo "modified alpha on master" > $testroot/content.expected
418 818c7501 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
419 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
420 818c7501 2019-07-11 stsp ret="$?"
421 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
422 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
423 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
424 818c7501 2019-07-11 stsp return 1
425 818c7501 2019-07-11 stsp fi
426 818c7501 2019-07-11 stsp
427 818c7501 2019-07-11 stsp (cd $testroot/wt && got log -l3 -c newbranch \
428 818c7501 2019-07-11 stsp | grep ^commit > $testroot/stdout)
429 818c7501 2019-07-11 stsp echo "commit $orig_commit1 (newbranch)" > $testroot/stdout.expected
430 818c7501 2019-07-11 stsp echo "commit $init_commit" >> $testroot/stdout.expected
431 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
432 818c7501 2019-07-11 stsp ret="$?"
433 818c7501 2019-07-11 stsp if [ "$ret" != "0" ]; then
434 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
435 818c7501 2019-07-11 stsp fi
436 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
437 818c7501 2019-07-11 stsp }
438 818c7501 2019-07-11 stsp
439 f6cae3ed 2020-09-13 naddy test_rebase_no_op_change() {
440 ff0d2220 2019-07-11 stsp local testroot=`test_init rebase_no_op_change`
441 ff0d2220 2019-07-11 stsp local init_commit=`git_show_head $testroot/repo`
442 ff0d2220 2019-07-11 stsp
443 ff0d2220 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
444 ff0d2220 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
445 ff0d2220 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on newbranch"
446 ff0d2220 2019-07-11 stsp local orig_commit1=`git_show_head $testroot/repo`
447 a0ea4fc0 2020-02-28 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
448 ff0d2220 2019-07-11 stsp
449 ff0d2220 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
450 ff0d2220 2019-07-11 stsp echo "modified alpha on master" > $testroot/repo/alpha
451 ff0d2220 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on master"
452 ff0d2220 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
453 ff0d2220 2019-07-11 stsp
454 ff0d2220 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
455 ff0d2220 2019-07-11 stsp ret="$?"
456 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
457 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
458 ff0d2220 2019-07-11 stsp return 1
459 ff0d2220 2019-07-11 stsp fi
460 ff0d2220 2019-07-11 stsp
461 ff0d2220 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
462 ff0d2220 2019-07-11 stsp 2> $testroot/stderr)
463 ff0d2220 2019-07-11 stsp
464 ff0d2220 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
465 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
466 a0ea4fc0 2020-02-28 stsp echo -n "$short_orig_commit1 -> merge conflict" \
467 a0ea4fc0 2020-02-28 stsp >> $testroot/stdout.expected
468 a0ea4fc0 2020-02-28 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
469 ff0d2220 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
470 ff0d2220 2019-07-11 stsp ret="$?"
471 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
472 ff0d2220 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
473 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
474 ff0d2220 2019-07-11 stsp return 1
475 ff0d2220 2019-07-11 stsp fi
476 ff0d2220 2019-07-11 stsp
477 11495e04 2019-07-12 stsp echo "got: conflicts must be resolved before rebasing can continue" \
478 ff0d2220 2019-07-11 stsp > $testroot/stderr.expected
479 ff0d2220 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
480 ff0d2220 2019-07-11 stsp ret="$?"
481 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
482 ff0d2220 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
483 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
484 ff0d2220 2019-07-11 stsp return 1
485 ff0d2220 2019-07-11 stsp fi
486 ff0d2220 2019-07-11 stsp
487 f69721c3 2019-10-21 stsp echo "<<<<<<< merged change: commit $orig_commit1" \
488 f69721c3 2019-10-21 stsp > $testroot/content.expected
489 ff0d2220 2019-07-11 stsp echo "modified alpha on branch" >> $testroot/content.expected
490 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $init_commit" \
491 f69721c3 2019-10-21 stsp >> $testroot/content.expected
492 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
493 ff0d2220 2019-07-11 stsp echo "=======" >> $testroot/content.expected
494 ff0d2220 2019-07-11 stsp echo "modified alpha on master" >> $testroot/content.expected
495 f69721c3 2019-10-21 stsp echo '>>>>>>>' >> $testroot/content.expected
496 ff0d2220 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
497 ff0d2220 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
498 ff0d2220 2019-07-11 stsp ret="$?"
499 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
500 ff0d2220 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
501 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
502 ff0d2220 2019-07-11 stsp return 1
503 ff0d2220 2019-07-11 stsp fi
504 ff0d2220 2019-07-11 stsp
505 ff0d2220 2019-07-11 stsp (cd $testroot/wt && got status > $testroot/stdout)
506 ff0d2220 2019-07-11 stsp
507 ff0d2220 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
508 ff0d2220 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
509 ff0d2220 2019-07-11 stsp ret="$?"
510 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
511 ff0d2220 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
512 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
513 ff0d2220 2019-07-11 stsp return 1
514 ff0d2220 2019-07-11 stsp fi
515 ff0d2220 2019-07-11 stsp
516 ff0d2220 2019-07-11 stsp # resolve the conflict
517 ff0d2220 2019-07-11 stsp echo "modified alpha on master" > $testroot/wt/alpha
518 ff0d2220 2019-07-11 stsp
519 ff0d2220 2019-07-11 stsp (cd $testroot/wt && got rebase -c > $testroot/stdout)
520 ff0d2220 2019-07-11 stsp
521 ff0d2220 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
522 ff0d2220 2019-07-11 stsp local new_commit1=`git_show_head $testroot/repo`
523 ff0d2220 2019-07-11 stsp
524 ff0d2220 2019-07-11 stsp echo -n "$short_orig_commit1 -> no-op change" \
525 ff0d2220 2019-07-11 stsp > $testroot/stdout.expected
526 ff0d2220 2019-07-11 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
527 ff0d2220 2019-07-11 stsp echo "Switching work tree to refs/heads/newbranch" \
528 ff0d2220 2019-07-11 stsp >> $testroot/stdout.expected
529 ff0d2220 2019-07-11 stsp
530 ff0d2220 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
531 ff0d2220 2019-07-11 stsp ret="$?"
532 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
533 ff0d2220 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
534 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
535 ff0d2220 2019-07-11 stsp return 1
536 ff0d2220 2019-07-11 stsp fi
537 ff0d2220 2019-07-11 stsp
538 ff0d2220 2019-07-11 stsp
539 ff0d2220 2019-07-11 stsp (cd $testroot/wt && got log -l2 | grep ^commit > $testroot/stdout)
540 ff0d2220 2019-07-11 stsp echo "commit $master_commit (master, newbranch)" \
541 ff0d2220 2019-07-11 stsp > $testroot/stdout.expected
542 ff0d2220 2019-07-11 stsp echo "commit $init_commit" >> $testroot/stdout.expected
543 7d5807f4 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
544 7d5807f4 2019-07-11 stsp ret="$?"
545 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
546 7d5807f4 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
547 7d5807f4 2019-07-11 stsp fi
548 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
549 7d5807f4 2019-07-11 stsp }
550 7d5807f4 2019-07-11 stsp
551 f6cae3ed 2020-09-13 naddy test_rebase_in_progress() {
552 4ba9c4f6 2019-07-11 stsp local testroot=`test_init rebase_in_progress`
553 7d5807f4 2019-07-11 stsp local init_commit=`git_show_head $testroot/repo`
554 7d5807f4 2019-07-11 stsp
555 7d5807f4 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
556 7d5807f4 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
557 7d5807f4 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on newbranch"
558 7d5807f4 2019-07-11 stsp local orig_commit1=`git_show_head $testroot/repo`
559 a0ea4fc0 2020-02-28 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
560 7d5807f4 2019-07-11 stsp
561 7d5807f4 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
562 7d5807f4 2019-07-11 stsp echo "modified alpha on master" > $testroot/repo/alpha
563 7d5807f4 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on master"
564 7d5807f4 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
565 7d5807f4 2019-07-11 stsp
566 7d5807f4 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
567 7d5807f4 2019-07-11 stsp ret="$?"
568 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
569 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
570 7d5807f4 2019-07-11 stsp return 1
571 7d5807f4 2019-07-11 stsp fi
572 7d5807f4 2019-07-11 stsp
573 7d5807f4 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
574 7d5807f4 2019-07-11 stsp 2> $testroot/stderr)
575 7d5807f4 2019-07-11 stsp
576 7d5807f4 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
577 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
578 a0ea4fc0 2020-02-28 stsp echo -n "$short_orig_commit1 -> merge conflict" \
579 a0ea4fc0 2020-02-28 stsp >> $testroot/stdout.expected
580 a0ea4fc0 2020-02-28 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
581 7d5807f4 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
582 7d5807f4 2019-07-11 stsp ret="$?"
583 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
584 7d5807f4 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
585 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
586 7d5807f4 2019-07-11 stsp return 1
587 7d5807f4 2019-07-11 stsp fi
588 7d5807f4 2019-07-11 stsp
589 11495e04 2019-07-12 stsp echo "got: conflicts must be resolved before rebasing can continue" \
590 7d5807f4 2019-07-11 stsp > $testroot/stderr.expected
591 7d5807f4 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
592 7d5807f4 2019-07-11 stsp ret="$?"
593 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
594 7d5807f4 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
595 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
596 7d5807f4 2019-07-11 stsp return 1
597 7d5807f4 2019-07-11 stsp fi
598 7d5807f4 2019-07-11 stsp
599 f69721c3 2019-10-21 stsp echo "<<<<<<< merged change: commit $orig_commit1" \
600 f69721c3 2019-10-21 stsp > $testroot/content.expected
601 7d5807f4 2019-07-11 stsp echo "modified alpha on branch" >> $testroot/content.expected
602 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $init_commit" \
603 f69721c3 2019-10-21 stsp >> $testroot/content.expected
604 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
605 7d5807f4 2019-07-11 stsp echo "=======" >> $testroot/content.expected
606 7d5807f4 2019-07-11 stsp echo "modified alpha on master" >> $testroot/content.expected
607 f69721c3 2019-10-21 stsp echo '>>>>>>>' >> $testroot/content.expected
608 7d5807f4 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
609 7d5807f4 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
610 7d5807f4 2019-07-11 stsp ret="$?"
611 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
612 7d5807f4 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
613 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
614 7d5807f4 2019-07-11 stsp return 1
615 7d5807f4 2019-07-11 stsp fi
616 7d5807f4 2019-07-11 stsp
617 7d5807f4 2019-07-11 stsp (cd $testroot/wt && got status > $testroot/stdout)
618 7d5807f4 2019-07-11 stsp
619 7d5807f4 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
620 ff0d2220 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
621 ff0d2220 2019-07-11 stsp ret="$?"
622 ff0d2220 2019-07-11 stsp if [ "$ret" != "0" ]; then
623 ff0d2220 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 ff0d2220 2019-07-11 stsp fi
627 7d5807f4 2019-07-11 stsp
628 7d5807f4 2019-07-11 stsp for cmd in update commit; do
629 7d5807f4 2019-07-11 stsp (cd $testroot/wt && got $cmd > $testroot/stdout \
630 7d5807f4 2019-07-11 stsp 2> $testroot/stderr)
631 7d5807f4 2019-07-11 stsp
632 7d5807f4 2019-07-11 stsp echo -n > $testroot/stdout.expected
633 7d5807f4 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
634 7d5807f4 2019-07-11 stsp ret="$?"
635 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
636 7d5807f4 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
637 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
638 7d5807f4 2019-07-11 stsp return 1
639 7d5807f4 2019-07-11 stsp fi
640 7d5807f4 2019-07-11 stsp
641 7d5807f4 2019-07-11 stsp echo -n "got: a rebase operation is in progress in this " \
642 7d5807f4 2019-07-11 stsp > $testroot/stderr.expected
643 7d5807f4 2019-07-11 stsp echo "work tree and must be continued or aborted first" \
644 7d5807f4 2019-07-11 stsp >> $testroot/stderr.expected
645 7d5807f4 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
646 7d5807f4 2019-07-11 stsp ret="$?"
647 7d5807f4 2019-07-11 stsp if [ "$ret" != "0" ]; then
648 7d5807f4 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
649 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
650 7d5807f4 2019-07-11 stsp return 1
651 7d5807f4 2019-07-11 stsp fi
652 7d5807f4 2019-07-11 stsp done
653 64c6d990 2019-07-11 stsp
654 64c6d990 2019-07-11 stsp test_done "$testroot" "$ret"
655 64c6d990 2019-07-11 stsp }
656 64c6d990 2019-07-11 stsp
657 f6cae3ed 2020-09-13 naddy test_rebase_path_prefix() {
658 64c6d990 2019-07-11 stsp local testroot=`test_init rebase_path_prefix`
659 64c6d990 2019-07-11 stsp
660 64c6d990 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
661 64c6d990 2019-07-11 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
662 64c6d990 2019-07-11 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
663 64c6d990 2019-07-11 stsp
664 64c6d990 2019-07-11 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
665 64c6d990 2019-07-11 stsp local orig_commit2=`git_show_head $testroot/repo`
666 64c6d990 2019-07-11 stsp
667 64c6d990 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
668 64c6d990 2019-07-11 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
669 64c6d990 2019-07-11 stsp git_commit $testroot/repo -m "committing to zeta on master"
670 64c6d990 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
671 64c6d990 2019-07-11 stsp
672 64c6d990 2019-07-11 stsp got checkout -p epsilon $testroot/repo $testroot/wt > /dev/null
673 64c6d990 2019-07-11 stsp ret="$?"
674 64c6d990 2019-07-11 stsp if [ "$ret" != "0" ]; then
675 64c6d990 2019-07-11 stsp test_done "$testroot" "$ret"
676 64c6d990 2019-07-11 stsp return 1
677 64c6d990 2019-07-11 stsp fi
678 7d5807f4 2019-07-11 stsp
679 64c6d990 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch \
680 64c6d990 2019-07-11 stsp > $testroot/stdout 2> $testroot/stderr)
681 64c6d990 2019-07-11 stsp
682 64c6d990 2019-07-11 stsp echo -n > $testroot/stdout.expected
683 64c6d990 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
684 64c6d990 2019-07-11 stsp ret="$?"
685 64c6d990 2019-07-11 stsp if [ "$ret" != "0" ]; then
686 64c6d990 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
687 64c6d990 2019-07-11 stsp test_done "$testroot" "$ret"
688 64c6d990 2019-07-11 stsp return 1
689 64c6d990 2019-07-11 stsp fi
690 64c6d990 2019-07-11 stsp
691 64c6d990 2019-07-11 stsp echo -n "got: cannot rebase branch which contains changes outside " \
692 64c6d990 2019-07-11 stsp > $testroot/stderr.expected
693 64c6d990 2019-07-11 stsp echo "of this work tree's path prefix" >> $testroot/stderr.expected
694 787c8eb6 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
695 787c8eb6 2019-07-11 stsp ret="$?"
696 787c8eb6 2019-07-11 stsp if [ "$ret" != "0" ]; then
697 787c8eb6 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
698 787c8eb6 2019-07-11 stsp fi
699 787c8eb6 2019-07-11 stsp test_done "$testroot" "$ret"
700 787c8eb6 2019-07-11 stsp }
701 787c8eb6 2019-07-11 stsp
702 f6cae3ed 2020-09-13 naddy test_rebase_preserves_logmsg() {
703 787c8eb6 2019-07-11 stsp local testroot=`test_init rebase_preserves_logmsg`
704 787c8eb6 2019-07-11 stsp
705 787c8eb6 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
706 787c8eb6 2019-07-11 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
707 787c8eb6 2019-07-11 stsp git_commit $testroot/repo -m "modified delta on newbranch"
708 787c8eb6 2019-07-11 stsp
709 787c8eb6 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
710 787c8eb6 2019-07-11 stsp git_commit $testroot/repo -m "modified alpha on newbranch"
711 787c8eb6 2019-07-11 stsp
712 787c8eb6 2019-07-11 stsp (cd $testroot/repo && got log -c newbranch -l2 | grep -v ^date: \
713 787c8eb6 2019-07-11 stsp > $testroot/log.expected)
714 787c8eb6 2019-07-11 stsp
715 787c8eb6 2019-07-11 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
716 787c8eb6 2019-07-11 stsp local orig_commit2=`git_show_head $testroot/repo`
717 787c8eb6 2019-07-11 stsp
718 787c8eb6 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
719 787c8eb6 2019-07-11 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
720 787c8eb6 2019-07-11 stsp git_commit $testroot/repo -m "committing to zeta on master"
721 787c8eb6 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
722 787c8eb6 2019-07-11 stsp
723 787c8eb6 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
724 787c8eb6 2019-07-11 stsp ret="$?"
725 787c8eb6 2019-07-11 stsp if [ "$ret" != "0" ]; then
726 787c8eb6 2019-07-11 stsp test_done "$testroot" "$ret"
727 787c8eb6 2019-07-11 stsp return 1
728 787c8eb6 2019-07-11 stsp fi
729 787c8eb6 2019-07-11 stsp
730 787c8eb6 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > /dev/null \
731 787c8eb6 2019-07-11 stsp 2> $testroot/stderr)
732 787c8eb6 2019-07-11 stsp
733 787c8eb6 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
734 787c8eb6 2019-07-11 stsp local new_commit1=`git_show_parent_commit $testroot/repo`
735 787c8eb6 2019-07-11 stsp local new_commit2=`git_show_head $testroot/repo`
736 787c8eb6 2019-07-11 stsp
737 787c8eb6 2019-07-11 stsp echo -n > $testroot/stderr.expected
738 64c6d990 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
739 64c6d990 2019-07-11 stsp ret="$?"
740 64c6d990 2019-07-11 stsp if [ "$ret" != "0" ]; then
741 64c6d990 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
742 787c8eb6 2019-07-11 stsp test_done "$testroot" "$ret"
743 787c8eb6 2019-07-11 stsp return 1
744 64c6d990 2019-07-11 stsp fi
745 787c8eb6 2019-07-11 stsp
746 787c8eb6 2019-07-11 stsp (cd $testroot/wt && got log -c newbranch -l2 | grep -v ^date: \
747 787c8eb6 2019-07-11 stsp > $testroot/log)
748 787c8eb6 2019-07-11 stsp sed -i -e "s/$orig_commit1/$new_commit1/" $testroot/log.expected
749 787c8eb6 2019-07-11 stsp sed -i -e "s/$orig_commit2/$new_commit2/" $testroot/log.expected
750 787c8eb6 2019-07-11 stsp cmp -s $testroot/log.expected $testroot/log
751 787c8eb6 2019-07-11 stsp ret="$?"
752 787c8eb6 2019-07-11 stsp if [ "$ret" != "0" ]; then
753 787c8eb6 2019-07-11 stsp diff -u $testroot/log.expected $testroot/log
754 fc66b545 2019-08-12 stsp fi
755 fc66b545 2019-08-12 stsp
756 fc66b545 2019-08-12 stsp test_done "$testroot" "$ret"
757 fc66b545 2019-08-12 stsp }
758 fc66b545 2019-08-12 stsp
759 f6cae3ed 2020-09-13 naddy test_rebase_no_commits_to_rebase() {
760 fc66b545 2019-08-12 stsp local testroot=`test_init rebase_no_commits_to_rebase`
761 fc66b545 2019-08-12 stsp
762 fc66b545 2019-08-12 stsp got checkout $testroot/repo $testroot/wt > /dev/null
763 fc66b545 2019-08-12 stsp ret="$?"
764 fc66b545 2019-08-12 stsp if [ "$ret" != "0" ]; then
765 fc66b545 2019-08-12 stsp test_done "$testroot" "$ret"
766 fc66b545 2019-08-12 stsp return 1
767 fc66b545 2019-08-12 stsp fi
768 fc66b545 2019-08-12 stsp
769 da76fce2 2020-02-24 stsp (cd $testroot/wt && got branch -n newbranch)
770 fc66b545 2019-08-12 stsp
771 fc66b545 2019-08-12 stsp echo "modified alpha on master" > $testroot/wt/alpha
772 fc66b545 2019-08-12 stsp (cd $testroot/wt && got commit -m 'test rebase_no_commits_to_rebase' \
773 fc66b545 2019-08-12 stsp > /dev/null)
774 fc66b545 2019-08-12 stsp (cd $testroot/wt && got update > /dev/null)
775 fc66b545 2019-08-12 stsp
776 fc66b545 2019-08-12 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
777 fc66b545 2019-08-12 stsp 2> $testroot/stderr)
778 fc66b545 2019-08-12 stsp
779 fc66b545 2019-08-12 stsp echo "got: no commits to rebase" > $testroot/stderr.expected
780 fc66b545 2019-08-12 stsp cmp -s $testroot/stderr.expected $testroot/stderr
781 fc66b545 2019-08-12 stsp ret="$?"
782 fc66b545 2019-08-12 stsp if [ "$ret" != "0" ]; then
783 fc66b545 2019-08-12 stsp diff -u $testroot/stderr.expected $testroot/stderr
784 fc66b545 2019-08-12 stsp test_done "$testroot" "$ret"
785 fc66b545 2019-08-12 stsp return 1
786 787c8eb6 2019-07-11 stsp fi
787 787c8eb6 2019-07-11 stsp
788 fc66b545 2019-08-12 stsp echo "Rebase of refs/heads/newbranch aborted" \
789 fc66b545 2019-08-12 stsp > $testroot/stdout.expected
790 fc66b545 2019-08-12 stsp cmp -s $testroot/stdout.expected $testroot/stdout
791 fc66b545 2019-08-12 stsp ret="$?"
792 fc66b545 2019-08-12 stsp if [ "$ret" != "0" ]; then
793 fc66b545 2019-08-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
794 fc66b545 2019-08-12 stsp test_done "$testroot" "$ret"
795 fc66b545 2019-08-12 stsp return 1
796 fc66b545 2019-08-12 stsp fi
797 fc66b545 2019-08-12 stsp
798 fc66b545 2019-08-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
799 fc66b545 2019-08-12 stsp echo "Already up-to-date" > $testroot/stdout.expected
800 fc66b545 2019-08-12 stsp cmp -s $testroot/stdout.expected $testroot/stdout
801 fc66b545 2019-08-12 stsp ret="$?"
802 fc66b545 2019-08-12 stsp if [ "$ret" != "0" ]; then
803 fc66b545 2019-08-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
804 fc66b545 2019-08-12 stsp fi
805 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
806 ff0d2220 2019-07-11 stsp }
807 38b0338b 2019-11-29 stsp
808 f6cae3ed 2020-09-13 naddy test_rebase_forward() {
809 38b0338b 2019-11-29 stsp local testroot=`test_init rebase_forward`
810 38b0338b 2019-11-29 stsp local commit0=`git_show_head $testroot/repo`
811 38b0338b 2019-11-29 stsp
812 38b0338b 2019-11-29 stsp got checkout $testroot/repo $testroot/wt > /dev/null
813 38b0338b 2019-11-29 stsp ret="$?"
814 38b0338b 2019-11-29 stsp if [ "$ret" != "0" ]; then
815 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
816 38b0338b 2019-11-29 stsp return 1
817 38b0338b 2019-11-29 stsp fi
818 38b0338b 2019-11-29 stsp
819 38b0338b 2019-11-29 stsp echo "change alpha 1" > $testroot/wt/alpha
820 38b0338b 2019-11-29 stsp (cd $testroot/wt && got commit -m 'test rebase_forward' \
821 38b0338b 2019-11-29 stsp > /dev/null)
822 38b0338b 2019-11-29 stsp local commit1=`git_show_head $testroot/repo`
823 ff0d2220 2019-07-11 stsp
824 38b0338b 2019-11-29 stsp echo "change alpha 2" > $testroot/wt/alpha
825 38b0338b 2019-11-29 stsp (cd $testroot/wt && got commit -m 'test rebase_forward' \
826 38b0338b 2019-11-29 stsp > /dev/null)
827 38b0338b 2019-11-29 stsp local commit2=`git_show_head $testroot/repo`
828 38b0338b 2019-11-29 stsp
829 38b0338b 2019-11-29 stsp # Simulate a situation where fast-forward is required.
830 38b0338b 2019-11-29 stsp # We want to fast-forward master to origin/master:
831 38b0338b 2019-11-29 stsp # commit 3907e11dceaae2ca7f8db79c2af31794673945ad (origin/master)
832 38b0338b 2019-11-29 stsp # commit ffcffcd102cf1af6572fbdbb4cf07a0f1fd2d840 (master)
833 38b0338b 2019-11-29 stsp # commit 87a6a8a2263a15b61c016ff1720b24741d455eb5
834 38b0338b 2019-11-29 stsp (cd $testroot/repo && got ref -d master)
835 e31abbf2 2020-03-22 stsp (cd $testroot/repo && got ref -c $commit1 refs/heads/master)
836 e31abbf2 2020-03-22 stsp (cd $testroot/repo && got ref -c $commit2 refs/remotes/origin/master)
837 38b0338b 2019-11-29 stsp
838 38b0338b 2019-11-29 stsp (cd $testroot/wt && got up -b origin/master > /dev/null)
839 38b0338b 2019-11-29 stsp
840 38b0338b 2019-11-29 stsp (cd $testroot/wt && got rebase master \
841 38b0338b 2019-11-29 stsp > $testroot/stdout 2> $testroot/stderr)
842 38b0338b 2019-11-29 stsp
843 38b0338b 2019-11-29 stsp echo "Forwarding refs/heads/master to commit $commit2" \
844 38b0338b 2019-11-29 stsp > $testroot/stdout.expected
845 38b0338b 2019-11-29 stsp echo "Switching work tree to refs/heads/master" \
846 38b0338b 2019-11-29 stsp >> $testroot/stdout.expected
847 38b0338b 2019-11-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
848 38b0338b 2019-11-29 stsp ret="$?"
849 38b0338b 2019-11-29 stsp if [ "$ret" != "0" ]; then
850 38b0338b 2019-11-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
851 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
852 38b0338b 2019-11-29 stsp return 1
853 38b0338b 2019-11-29 stsp fi
854 38b0338b 2019-11-29 stsp
855 38b0338b 2019-11-29 stsp # Ensure that rebase operation was completed correctly
856 38b0338b 2019-11-29 stsp (cd $testroot/wt && got rebase -a \
857 38b0338b 2019-11-29 stsp > $testroot/stdout 2> $testroot/stderr)
858 38b0338b 2019-11-29 stsp echo -n "" > $testroot/stdout.expected
859 38b0338b 2019-11-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
860 38b0338b 2019-11-29 stsp ret="$?"
861 38b0338b 2019-11-29 stsp if [ "$ret" != "0" ]; then
862 38b0338b 2019-11-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
863 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
864 38b0338b 2019-11-29 stsp return 1
865 38b0338b 2019-11-29 stsp fi
866 38b0338b 2019-11-29 stsp echo "got: rebase operation not in progress" > $testroot/stderr.expected
867 38b0338b 2019-11-29 stsp cmp -s $testroot/stderr.expected $testroot/stderr
868 38b0338b 2019-11-29 stsp ret="$?"
869 38b0338b 2019-11-29 stsp if [ "$ret" != "0" ]; then
870 38b0338b 2019-11-29 stsp diff -u $testroot/stderr.expected $testroot/stderr
871 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
872 38b0338b 2019-11-29 stsp return 1
873 38b0338b 2019-11-29 stsp fi
874 38b0338b 2019-11-29 stsp
875 da76fce2 2020-02-24 stsp (cd $testroot/wt && got branch -n > $testroot/stdout)
876 38b0338b 2019-11-29 stsp echo "master" > $testroot/stdout.expected
877 38b0338b 2019-11-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
878 38b0338b 2019-11-29 stsp ret="$?"
879 38b0338b 2019-11-29 stsp if [ "$ret" != "0" ]; then
880 38b0338b 2019-11-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
881 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
882 38b0338b 2019-11-29 stsp return 1
883 38b0338b 2019-11-29 stsp fi
884 38b0338b 2019-11-29 stsp
885 38b0338b 2019-11-29 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
886 38b0338b 2019-11-29 stsp echo "commit $commit2 (master, origin/master)" > $testroot/stdout.expected
887 38b0338b 2019-11-29 stsp echo "commit $commit1" >> $testroot/stdout.expected
888 38b0338b 2019-11-29 stsp echo "commit $commit0" >> $testroot/stdout.expected
889 38b0338b 2019-11-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
890 38b0338b 2019-11-29 stsp ret="$?"
891 38b0338b 2019-11-29 stsp if [ "$ret" != "0" ]; then
892 38b0338b 2019-11-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
893 38b0338b 2019-11-29 stsp fi
894 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
895 38b0338b 2019-11-29 stsp }
896 e51d7b55 2020-01-04 stsp
897 f6cae3ed 2020-09-13 naddy test_rebase_out_of_date() {
898 e51d7b55 2020-01-04 stsp local testroot=`test_init rebase_out_of_date`
899 e51d7b55 2020-01-04 stsp local initial_commit=`git_show_head $testroot/repo`
900 e51d7b55 2020-01-04 stsp
901 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git checkout -q -b newbranch)
902 e51d7b55 2020-01-04 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
903 e51d7b55 2020-01-04 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
904 38b0338b 2019-11-29 stsp
905 e51d7b55 2020-01-04 stsp echo "modified alpha on branch" > $testroot/repo/alpha
906 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git rm -q beta)
907 e51d7b55 2020-01-04 stsp echo "new file on branch" > $testroot/repo/epsilon/new
908 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git add epsilon/new)
909 e51d7b55 2020-01-04 stsp git_commit $testroot/repo -m "committing more changes on newbranch"
910 e51d7b55 2020-01-04 stsp
911 e51d7b55 2020-01-04 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
912 e51d7b55 2020-01-04 stsp local orig_commit2=`git_show_head $testroot/repo`
913 e51d7b55 2020-01-04 stsp
914 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git checkout -q master)
915 e51d7b55 2020-01-04 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
916 e51d7b55 2020-01-04 stsp git_commit $testroot/repo -m "committing to zeta on master"
917 e51d7b55 2020-01-04 stsp local master_commit1=`git_show_head $testroot/repo`
918 e51d7b55 2020-01-04 stsp
919 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git checkout -q master)
920 e51d7b55 2020-01-04 stsp echo "modified beta on master" > $testroot/repo/beta
921 e51d7b55 2020-01-04 stsp git_commit $testroot/repo -m "committing to beta on master"
922 e51d7b55 2020-01-04 stsp local master_commit2=`git_show_head $testroot/repo`
923 e51d7b55 2020-01-04 stsp
924 e51d7b55 2020-01-04 stsp got checkout -c $master_commit1 $testroot/repo $testroot/wt \
925 e51d7b55 2020-01-04 stsp > /dev/null
926 e51d7b55 2020-01-04 stsp ret="$?"
927 e51d7b55 2020-01-04 stsp if [ "$ret" != "0" ]; then
928 e51d7b55 2020-01-04 stsp test_done "$testroot" "$ret"
929 e51d7b55 2020-01-04 stsp return 1
930 e51d7b55 2020-01-04 stsp fi
931 e51d7b55 2020-01-04 stsp
932 e51d7b55 2020-01-04 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
933 e51d7b55 2020-01-04 stsp 2> $testroot/stderr)
934 e51d7b55 2020-01-04 stsp
935 e51d7b55 2020-01-04 stsp echo -n > $testroot/stdout.expected
936 e51d7b55 2020-01-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
937 e51d7b55 2020-01-04 stsp ret="$?"
938 e51d7b55 2020-01-04 stsp if [ "$ret" != "0" ]; then
939 e51d7b55 2020-01-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
940 e51d7b55 2020-01-04 stsp test_done "$testroot" "$ret"
941 e51d7b55 2020-01-04 stsp return 1
942 e51d7b55 2020-01-04 stsp fi
943 e51d7b55 2020-01-04 stsp
944 e51d7b55 2020-01-04 stsp echo -n "got: work tree must be updated before it can be " \
945 e51d7b55 2020-01-04 stsp > $testroot/stderr.expected
946 e51d7b55 2020-01-04 stsp echo "used to rebase a branch" >> $testroot/stderr.expected
947 e51d7b55 2020-01-04 stsp cmp -s $testroot/stderr.expected $testroot/stderr
948 e51d7b55 2020-01-04 stsp ret="$?"
949 e51d7b55 2020-01-04 stsp if [ "$ret" != "0" ]; then
950 e51d7b55 2020-01-04 stsp diff -u $testroot/stderr.expected $testroot/stderr
951 e51d7b55 2020-01-04 stsp test_done "$testroot" "$ret"
952 e51d7b55 2020-01-04 stsp return 1
953 e51d7b55 2020-01-04 stsp fi
954 e51d7b55 2020-01-04 stsp
955 e51d7b55 2020-01-04 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
956 e51d7b55 2020-01-04 stsp echo "commit $master_commit2 (master)" > $testroot/stdout.expected
957 e51d7b55 2020-01-04 stsp echo "commit $master_commit1" >> $testroot/stdout.expected
958 e51d7b55 2020-01-04 stsp echo "commit $initial_commit" >> $testroot/stdout.expected
959 1ae0a341 2020-02-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
960 1ae0a341 2020-02-14 stsp ret="$?"
961 1ae0a341 2020-02-14 stsp if [ "$ret" != "0" ]; then
962 1ae0a341 2020-02-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
963 1ae0a341 2020-02-14 stsp fi
964 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
965 1ae0a341 2020-02-14 stsp }
966 1ae0a341 2020-02-14 stsp
967 f6cae3ed 2020-09-13 naddy test_rebase_trims_empty_dir() {
968 1ae0a341 2020-02-14 stsp local testroot=`test_init rebase_trims_empty_dir`
969 1ae0a341 2020-02-14 stsp
970 1ae0a341 2020-02-14 stsp (cd $testroot/repo && git checkout -q -b newbranch)
971 1ae0a341 2020-02-14 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
972 1ae0a341 2020-02-14 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
973 1ae0a341 2020-02-14 stsp
974 1ae0a341 2020-02-14 stsp (cd $testroot/repo && git rm -q epsilon/zeta)
975 1ae0a341 2020-02-14 stsp git_commit $testroot/repo -m "removing zeta on newbranch"
976 1ae0a341 2020-02-14 stsp
977 1ae0a341 2020-02-14 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
978 1ae0a341 2020-02-14 stsp local orig_commit2=`git_show_head $testroot/repo`
979 1ae0a341 2020-02-14 stsp
980 1ae0a341 2020-02-14 stsp (cd $testroot/repo && git checkout -q master)
981 1ae0a341 2020-02-14 stsp echo "modified alpha on master" > $testroot/repo/alpha
982 1ae0a341 2020-02-14 stsp git_commit $testroot/repo -m "committing to alpha on master"
983 1ae0a341 2020-02-14 stsp local master_commit=`git_show_head $testroot/repo`
984 1ae0a341 2020-02-14 stsp
985 1ae0a341 2020-02-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
986 1ae0a341 2020-02-14 stsp ret="$?"
987 1ae0a341 2020-02-14 stsp if [ "$ret" != "0" ]; then
988 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
989 1ae0a341 2020-02-14 stsp return 1
990 1ae0a341 2020-02-14 stsp fi
991 1ae0a341 2020-02-14 stsp
992 1ae0a341 2020-02-14 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout)
993 1ae0a341 2020-02-14 stsp
994 1ae0a341 2020-02-14 stsp (cd $testroot/repo && git checkout -q newbranch)
995 1ae0a341 2020-02-14 stsp local new_commit1=`git_show_parent_commit $testroot/repo`
996 1ae0a341 2020-02-14 stsp local new_commit2=`git_show_head $testroot/repo`
997 1ae0a341 2020-02-14 stsp
998 1ae0a341 2020-02-14 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
999 1ae0a341 2020-02-14 stsp local short_orig_commit2=`trim_obj_id 28 $orig_commit2`
1000 1ae0a341 2020-02-14 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
1001 1ae0a341 2020-02-14 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
1002 1ae0a341 2020-02-14 stsp
1003 1ae0a341 2020-02-14 stsp echo "G gamma/delta" >> $testroot/stdout.expected
1004 1ae0a341 2020-02-14 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
1005 1ae0a341 2020-02-14 stsp >> $testroot/stdout.expected
1006 1ae0a341 2020-02-14 stsp echo ": committing to delta on newbranch" >> $testroot/stdout.expected
1007 1ae0a341 2020-02-14 stsp echo "D epsilon/zeta" >> $testroot/stdout.expected
1008 1ae0a341 2020-02-14 stsp echo -n "$short_orig_commit2 -> $short_new_commit2" \
1009 1ae0a341 2020-02-14 stsp >> $testroot/stdout.expected
1010 1ae0a341 2020-02-14 stsp echo ": removing zeta on newbranch" \
1011 1ae0a341 2020-02-14 stsp >> $testroot/stdout.expected
1012 1ae0a341 2020-02-14 stsp echo "Switching work tree to refs/heads/newbranch" \
1013 1ae0a341 2020-02-14 stsp >> $testroot/stdout.expected
1014 1ae0a341 2020-02-14 stsp
1015 e51d7b55 2020-01-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1016 e51d7b55 2020-01-04 stsp ret="$?"
1017 e51d7b55 2020-01-04 stsp if [ "$ret" != "0" ]; then
1018 e51d7b55 2020-01-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
1019 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1020 1ae0a341 2020-02-14 stsp return 1
1021 e51d7b55 2020-01-04 stsp fi
1022 1ae0a341 2020-02-14 stsp
1023 1ae0a341 2020-02-14 stsp echo "modified delta on branch" > $testroot/content.expected
1024 1ae0a341 2020-02-14 stsp cat $testroot/wt/gamma/delta > $testroot/content
1025 1ae0a341 2020-02-14 stsp cmp -s $testroot/content.expected $testroot/content
1026 1ae0a341 2020-02-14 stsp ret="$?"
1027 1ae0a341 2020-02-14 stsp if [ "$ret" != "0" ]; then
1028 1ae0a341 2020-02-14 stsp diff -u $testroot/content.expected $testroot/content
1029 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1030 1ae0a341 2020-02-14 stsp return 1
1031 1ae0a341 2020-02-14 stsp fi
1032 1ae0a341 2020-02-14 stsp
1033 1ae0a341 2020-02-14 stsp echo "modified alpha on master" > $testroot/content.expected
1034 1ae0a341 2020-02-14 stsp cat $testroot/wt/alpha > $testroot/content
1035 1ae0a341 2020-02-14 stsp cmp -s $testroot/content.expected $testroot/content
1036 1ae0a341 2020-02-14 stsp ret="$?"
1037 1ae0a341 2020-02-14 stsp if [ "$ret" != "0" ]; then
1038 1ae0a341 2020-02-14 stsp diff -u $testroot/content.expected $testroot/content
1039 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1040 1ae0a341 2020-02-14 stsp return 1
1041 1ae0a341 2020-02-14 stsp fi
1042 1ae0a341 2020-02-14 stsp
1043 1ae0a341 2020-02-14 stsp if [ -e $testroot/wt/epsilon ]; then
1044 1ae0a341 2020-02-14 stsp echo "parent of removed zeta still exists on disk" >&2
1045 1ae0a341 2020-02-14 stsp test_done "$testroot" "1"
1046 1ae0a341 2020-02-14 stsp return 1
1047 1ae0a341 2020-02-14 stsp fi
1048 1ae0a341 2020-02-14 stsp
1049 1ae0a341 2020-02-14 stsp (cd $testroot/wt && got status > $testroot/stdout)
1050 1ae0a341 2020-02-14 stsp
1051 1ae0a341 2020-02-14 stsp echo -n > $testroot/stdout.expected
1052 1ae0a341 2020-02-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1053 1ae0a341 2020-02-14 stsp ret="$?"
1054 1ae0a341 2020-02-14 stsp if [ "$ret" != "0" ]; then
1055 1ae0a341 2020-02-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1056 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1057 1ae0a341 2020-02-14 stsp return 1
1058 1ae0a341 2020-02-14 stsp fi
1059 1ae0a341 2020-02-14 stsp
1060 1ae0a341 2020-02-14 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1061 1ae0a341 2020-02-14 stsp echo "commit $new_commit2 (newbranch)" > $testroot/stdout.expected
1062 1ae0a341 2020-02-14 stsp echo "commit $new_commit1" >> $testroot/stdout.expected
1063 1ae0a341 2020-02-14 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
1064 1ae0a341 2020-02-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1065 1ae0a341 2020-02-14 stsp ret="$?"
1066 1ae0a341 2020-02-14 stsp if [ "$ret" != "0" ]; then
1067 1ae0a341 2020-02-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1068 1ae0a341 2020-02-14 stsp fi
1069 e51d7b55 2020-01-04 stsp test_done "$testroot" "$ret"
1070 e51d7b55 2020-01-04 stsp }
1071 ca6da77d 2020-03-22 stsp
1072 f6cae3ed 2020-09-13 naddy test_rebase_delete_missing_file() {
1073 ca6da77d 2020-03-22 stsp local testroot=`test_init rebase_delete_missing_file`
1074 ca6da77d 2020-03-22 stsp
1075 ca6da77d 2020-03-22 stsp mkdir -p $testroot/repo/d/f/g
1076 ca6da77d 2020-03-22 stsp echo "new file" > $testroot/repo/d/f/g/new
1077 ca6da77d 2020-03-22 stsp (cd $testroot/repo && git add d/f/g/new)
1078 ca6da77d 2020-03-22 stsp git_commit $testroot/repo -m "adding a subdir"
1079 ca6da77d 2020-03-22 stsp local commit0=`git_show_head $testroot/repo`
1080 ca6da77d 2020-03-22 stsp
1081 a740a1b3 2020-03-22 stsp got br -r $testroot/repo -c master newbranch
1082 a740a1b3 2020-03-22 stsp
1083 a740a1b3 2020-03-22 stsp got checkout -b newbranch $testroot/repo $testroot/wt > /dev/null
1084 ca6da77d 2020-03-22 stsp
1085 a740a1b3 2020-03-22 stsp echo "modified delta on branch" > $testroot/wt/gamma/delta
1086 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got commit \
1087 a740a1b3 2020-03-22 stsp -m "committing to delta on newbranch" > /dev/null)
1088 ca6da77d 2020-03-22 stsp
1089 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got rm beta d/f/g/new > /dev/null)
1090 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got commit \
1091 a740a1b3 2020-03-22 stsp -m "removing beta and d/f/g/new on newbranch" > /dev/null)
1092 a740a1b3 2020-03-22 stsp
1093 a740a1b3 2020-03-22 stsp (cd $testroot/repo && git checkout -q newbranch)
1094 ca6da77d 2020-03-22 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
1095 ca6da77d 2020-03-22 stsp local orig_commit2=`git_show_head $testroot/repo`
1096 ca6da77d 2020-03-22 stsp
1097 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got update -b master > /dev/null)
1098 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got rm beta d/f/g/new > /dev/null)
1099 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got commit \
1100 a740a1b3 2020-03-22 stsp -m "removing beta and d/f/g/new on master" > /dev/null)
1101 a740a1b3 2020-03-22 stsp
1102 ca6da77d 2020-03-22 stsp (cd $testroot/repo && git checkout -q master)
1103 ca6da77d 2020-03-22 stsp local master_commit=`git_show_head $testroot/repo`
1104 ca6da77d 2020-03-22 stsp
1105 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got update -b master > /dev/null)
1106 ca6da77d 2020-03-22 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout)
1107 ca6da77d 2020-03-22 stsp
1108 ca6da77d 2020-03-22 stsp (cd $testroot/repo && git checkout -q newbranch)
1109 ca6da77d 2020-03-22 stsp local new_commit1=`git_show_head $testroot/repo`
1110 ca6da77d 2020-03-22 stsp
1111 ca6da77d 2020-03-22 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
1112 ca6da77d 2020-03-22 stsp local short_orig_commit2=`trim_obj_id 28 $orig_commit2`
1113 ca6da77d 2020-03-22 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
1114 ca6da77d 2020-03-22 stsp
1115 ca6da77d 2020-03-22 stsp echo "G gamma/delta" >> $testroot/stdout.expected
1116 ca6da77d 2020-03-22 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
1117 ca6da77d 2020-03-22 stsp >> $testroot/stdout.expected
1118 ca6da77d 2020-03-22 stsp echo ": committing to delta on newbranch" >> $testroot/stdout.expected
1119 ca6da77d 2020-03-22 stsp echo "! beta" >> $testroot/stdout.expected
1120 ca6da77d 2020-03-22 stsp echo "! d/f/g/new" >> $testroot/stdout.expected
1121 ca6da77d 2020-03-22 stsp echo -n "$short_orig_commit2 -> no-op change" \
1122 ca6da77d 2020-03-22 stsp >> $testroot/stdout.expected
1123 a740a1b3 2020-03-22 stsp echo ": removing beta and d/f/g/new on newbranch" \
1124 ca6da77d 2020-03-22 stsp >> $testroot/stdout.expected
1125 ca6da77d 2020-03-22 stsp echo "Switching work tree to refs/heads/newbranch" \
1126 ca6da77d 2020-03-22 stsp >> $testroot/stdout.expected
1127 ca6da77d 2020-03-22 stsp
1128 ca6da77d 2020-03-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1129 ca6da77d 2020-03-22 stsp ret="$?"
1130 ca6da77d 2020-03-22 stsp if [ "$ret" != "0" ]; then
1131 ca6da77d 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1132 ca6da77d 2020-03-22 stsp test_done "$testroot" "$ret"
1133 ca6da77d 2020-03-22 stsp return 1
1134 ca6da77d 2020-03-22 stsp fi
1135 ca6da77d 2020-03-22 stsp
1136 ca6da77d 2020-03-22 stsp echo "modified delta on branch" > $testroot/content.expected
1137 ca6da77d 2020-03-22 stsp cat $testroot/wt/gamma/delta > $testroot/content
1138 ca6da77d 2020-03-22 stsp cmp -s $testroot/content.expected $testroot/content
1139 ca6da77d 2020-03-22 stsp ret="$?"
1140 ca6da77d 2020-03-22 stsp if [ "$ret" != "0" ]; then
1141 ca6da77d 2020-03-22 stsp diff -u $testroot/content.expected $testroot/content
1142 ca6da77d 2020-03-22 stsp test_done "$testroot" "$ret"
1143 ca6da77d 2020-03-22 stsp return 1
1144 ca6da77d 2020-03-22 stsp fi
1145 ca6da77d 2020-03-22 stsp
1146 ca6da77d 2020-03-22 stsp if [ -e $testroot/wt/beta ]; then
1147 ca6da77d 2020-03-22 stsp echo "removed file beta still exists on disk" >&2
1148 ca6da77d 2020-03-22 stsp test_done "$testroot" "1"
1149 ca6da77d 2020-03-22 stsp return 1
1150 ca6da77d 2020-03-22 stsp fi
1151 ca6da77d 2020-03-22 stsp
1152 ca6da77d 2020-03-22 stsp (cd $testroot/wt && got status > $testroot/stdout)
1153 ca6da77d 2020-03-22 stsp
1154 ca6da77d 2020-03-22 stsp echo -n > $testroot/stdout.expected
1155 ca6da77d 2020-03-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1156 ca6da77d 2020-03-22 stsp ret="$?"
1157 ca6da77d 2020-03-22 stsp if [ "$ret" != "0" ]; then
1158 ca6da77d 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1159 ca6da77d 2020-03-22 stsp test_done "$testroot" "$ret"
1160 ca6da77d 2020-03-22 stsp return 1
1161 ca6da77d 2020-03-22 stsp fi
1162 ca6da77d 2020-03-22 stsp
1163 ca6da77d 2020-03-22 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1164 ca6da77d 2020-03-22 stsp echo "commit $new_commit1 (newbranch)" > $testroot/stdout.expected
1165 ca6da77d 2020-03-22 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
1166 ca6da77d 2020-03-22 stsp echo "commit $commit0" >> $testroot/stdout.expected
1167 70551d57 2020-04-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1168 70551d57 2020-04-24 stsp ret="$?"
1169 70551d57 2020-04-24 stsp if [ "$ret" != "0" ]; then
1170 70551d57 2020-04-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
1171 70551d57 2020-04-24 stsp fi
1172 70551d57 2020-04-24 stsp test_done "$testroot" "$ret"
1173 70551d57 2020-04-24 stsp }
1174 70551d57 2020-04-24 stsp
1175 f6cae3ed 2020-09-13 naddy test_rebase_rm_add_rm_file() {
1176 70551d57 2020-04-24 stsp local testroot=`test_init rebase_rm_add_rm_file`
1177 70551d57 2020-04-24 stsp
1178 70551d57 2020-04-24 stsp (cd $testroot/repo && git checkout -q -b newbranch)
1179 70551d57 2020-04-24 stsp (cd $testroot/repo && git rm -q beta)
1180 70551d57 2020-04-24 stsp git_commit $testroot/repo -m "removing beta from newbranch"
1181 70551d57 2020-04-24 stsp local orig_commit1=`git_show_head $testroot/repo`
1182 70551d57 2020-04-24 stsp
1183 70551d57 2020-04-24 stsp echo 'restored beta' > $testroot/repo/beta
1184 70551d57 2020-04-24 stsp (cd $testroot/repo && git add beta)
1185 70551d57 2020-04-24 stsp git_commit $testroot/repo -m "restoring beta on newbranch"
1186 70551d57 2020-04-24 stsp local orig_commit2=`git_show_head $testroot/repo`
1187 70551d57 2020-04-24 stsp
1188 70551d57 2020-04-24 stsp (cd $testroot/repo && git rm -q beta)
1189 70551d57 2020-04-24 stsp git_commit $testroot/repo -m "removing beta from newbranch again"
1190 70551d57 2020-04-24 stsp local orig_commit3=`git_show_head $testroot/repo`
1191 70551d57 2020-04-24 stsp
1192 70551d57 2020-04-24 stsp (cd $testroot/repo && git checkout -q master)
1193 70551d57 2020-04-24 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
1194 70551d57 2020-04-24 stsp git_commit $testroot/repo -m "committing to zeta on master"
1195 70551d57 2020-04-24 stsp local master_commit=`git_show_head $testroot/repo`
1196 70551d57 2020-04-24 stsp
1197 70551d57 2020-04-24 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1198 70551d57 2020-04-24 stsp ret="$?"
1199 70551d57 2020-04-24 stsp if [ "$ret" != "0" ]; then
1200 70551d57 2020-04-24 stsp test_done "$testroot" "$ret"
1201 70551d57 2020-04-24 stsp return 1
1202 70551d57 2020-04-24 stsp fi
1203 70551d57 2020-04-24 stsp
1204 70551d57 2020-04-24 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout)
1205 70551d57 2020-04-24 stsp
1206 70551d57 2020-04-24 stsp # this would error out with 'got: file index is corrupt'
1207 70551d57 2020-04-24 stsp (cd $testroot/wt && got status > /dev/null)
1208 70551d57 2020-04-24 stsp ret="$?"
1209 70551d57 2020-04-24 stsp if [ "$ret" != "0" ]; then
1210 70551d57 2020-04-24 stsp echo "got status command failed unexpectedly" >&2
1211 70551d57 2020-04-24 stsp test_done "$testroot" "$ret"
1212 70551d57 2020-04-24 stsp return 1
1213 70551d57 2020-04-24 stsp fi
1214 70551d57 2020-04-24 stsp
1215 70551d57 2020-04-24 stsp (cd $testroot/repo && git checkout -q newbranch)
1216 70551d57 2020-04-24 stsp local new_commit3=`git_show_head $testroot/repo`
1217 70551d57 2020-04-24 stsp local new_commit2=`git_show_parent_commit $testroot/repo`
1218 70551d57 2020-04-24 stsp local new_commit1=`git_show_parent_commit $testroot/repo $new_commit2`
1219 70551d57 2020-04-24 stsp
1220 70551d57 2020-04-24 stsp (cd $testroot/repo && git checkout -q newbranch)
1221 70551d57 2020-04-24 stsp
1222 70551d57 2020-04-24 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
1223 70551d57 2020-04-24 stsp local short_orig_commit2=`trim_obj_id 28 $orig_commit2`
1224 70551d57 2020-04-24 stsp local short_orig_commit3=`trim_obj_id 28 $orig_commit3`
1225 70551d57 2020-04-24 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
1226 70551d57 2020-04-24 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
1227 70551d57 2020-04-24 stsp local short_new_commit3=`trim_obj_id 28 $new_commit3`
1228 70551d57 2020-04-24 stsp
1229 70551d57 2020-04-24 stsp echo "D beta" > $testroot/stdout.expected
1230 70551d57 2020-04-24 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
1231 70551d57 2020-04-24 stsp >> $testroot/stdout.expected
1232 70551d57 2020-04-24 stsp echo ": removing beta from newbranch" >> $testroot/stdout.expected
1233 70551d57 2020-04-24 stsp echo "A beta" >> $testroot/stdout.expected
1234 70551d57 2020-04-24 stsp echo -n "$short_orig_commit2 -> $short_new_commit2" \
1235 70551d57 2020-04-24 stsp >> $testroot/stdout.expected
1236 70551d57 2020-04-24 stsp echo ": restoring beta on newbranch" >> $testroot/stdout.expected
1237 70551d57 2020-04-24 stsp echo "D beta" >> $testroot/stdout.expected
1238 70551d57 2020-04-24 stsp echo -n "$short_orig_commit3 -> $short_new_commit3" \
1239 70551d57 2020-04-24 stsp >> $testroot/stdout.expected
1240 70551d57 2020-04-24 stsp echo ": removing beta from newbranch again" >> $testroot/stdout.expected
1241 70551d57 2020-04-24 stsp echo "Switching work tree to refs/heads/newbranch" \
1242 70551d57 2020-04-24 stsp >> $testroot/stdout.expected
1243 70551d57 2020-04-24 stsp
1244 ca6da77d 2020-03-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1245 ca6da77d 2020-03-22 stsp ret="$?"
1246 ca6da77d 2020-03-22 stsp if [ "$ret" != "0" ]; then
1247 ca6da77d 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1248 70551d57 2020-04-24 stsp test_done "$testroot" "$ret"
1249 70551d57 2020-04-24 stsp return 1
1250 ca6da77d 2020-03-22 stsp fi
1251 70551d57 2020-04-24 stsp
1252 70551d57 2020-04-24 stsp (cd $testroot/wt && got status > $testroot/stdout)
1253 70551d57 2020-04-24 stsp ret="$?"
1254 70551d57 2020-04-24 stsp if [ "$ret" != "0" ]; then
1255 70551d57 2020-04-24 stsp echo "got status command failed unexpectedly" >&2
1256 70551d57 2020-04-24 stsp test_done "$testroot" "$ret"
1257 70551d57 2020-04-24 stsp return 1
1258 70551d57 2020-04-24 stsp fi
1259 70551d57 2020-04-24 stsp
1260 70551d57 2020-04-24 stsp echo -n > $testroot/stdout.expected
1261 70551d57 2020-04-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1262 70551d57 2020-04-24 stsp ret="$?"
1263 70551d57 2020-04-24 stsp if [ "$ret" != "0" ]; then
1264 70551d57 2020-04-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
1265 70551d57 2020-04-24 stsp test_done "$testroot" "$ret"
1266 70551d57 2020-04-24 stsp return 1
1267 70551d57 2020-04-24 stsp fi
1268 70551d57 2020-04-24 stsp
1269 70551d57 2020-04-24 stsp (cd $testroot/wt && got log -l4 | grep ^commit > $testroot/stdout)
1270 70551d57 2020-04-24 stsp echo "commit $new_commit3 (newbranch)" > $testroot/stdout.expected
1271 70551d57 2020-04-24 stsp echo "commit $new_commit2" >> $testroot/stdout.expected
1272 70551d57 2020-04-24 stsp echo "commit $new_commit1" >> $testroot/stdout.expected
1273 70551d57 2020-04-24 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
1274 70551d57 2020-04-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1275 70551d57 2020-04-24 stsp ret="$?"
1276 70551d57 2020-04-24 stsp if [ "$ret" != "0" ]; then
1277 70551d57 2020-04-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
1278 70551d57 2020-04-24 stsp fi
1279 ca6da77d 2020-03-22 stsp test_done "$testroot" "$ret"
1280 ca6da77d 2020-03-22 stsp }
1281 ca6da77d 2020-03-22 stsp
1282 7fb414ae 2020-08-08 stsp test_parseargs "$@"
1283 dcf44d04 2019-07-11 stsp run_test test_rebase_basic
1284 dcf44d04 2019-07-11 stsp run_test test_rebase_ancestry_check
1285 dcf44d04 2019-07-11 stsp run_test test_rebase_continue
1286 dcf44d04 2019-07-11 stsp run_test test_rebase_abort
1287 ff0d2220 2019-07-11 stsp run_test test_rebase_no_op_change
1288 7d5807f4 2019-07-11 stsp run_test test_rebase_in_progress
1289 64c6d990 2019-07-11 stsp run_test test_rebase_path_prefix
1290 787c8eb6 2019-07-11 stsp run_test test_rebase_preserves_logmsg
1291 fc66b545 2019-08-12 stsp run_test test_rebase_no_commits_to_rebase
1292 38b0338b 2019-11-29 stsp run_test test_rebase_forward
1293 e51d7b55 2020-01-04 stsp run_test test_rebase_out_of_date
1294 1ae0a341 2020-02-14 stsp run_test test_rebase_trims_empty_dir
1295 ca6da77d 2020-03-22 stsp run_test test_rebase_delete_missing_file
1296 70551d57 2020-04-24 stsp run_test test_rebase_rm_add_rm_file