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 e600f124 2021-03-21 stsp local commit0=`git_show_head $testroot/repo`
22 e600f124 2021-03-21 stsp local commit0_author_time=`git_show_author_time $testroot/repo`
23 818c7501 2019-07-11 stsp
24 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
25 818c7501 2019-07-11 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
26 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
27 818c7501 2019-07-11 stsp
28 818c7501 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
29 818c7501 2019-07-11 stsp (cd $testroot/repo && git rm -q beta)
30 818c7501 2019-07-11 stsp echo "new file on branch" > $testroot/repo/epsilon/new
31 818c7501 2019-07-11 stsp (cd $testroot/repo && git add epsilon/new)
32 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing more changes on newbranch"
33 818c7501 2019-07-11 stsp
34 818c7501 2019-07-11 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
35 818c7501 2019-07-11 stsp local orig_commit2=`git_show_head $testroot/repo`
36 e600f124 2021-03-21 stsp local orig_author_time2=`git_show_author_time $testroot/repo`
37 818c7501 2019-07-11 stsp
38 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
39 818c7501 2019-07-11 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
40 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to zeta on master"
41 818c7501 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
42 818c7501 2019-07-11 stsp
43 818c7501 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
44 fc414659 2022-04-16 thomas ret=$?
45 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
46 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
47 818c7501 2019-07-11 stsp return 1
48 818c7501 2019-07-11 stsp fi
49 818c7501 2019-07-11 stsp
50 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout)
51 818c7501 2019-07-11 stsp
52 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
53 818c7501 2019-07-11 stsp local new_commit1=`git_show_parent_commit $testroot/repo`
54 818c7501 2019-07-11 stsp local new_commit2=`git_show_head $testroot/repo`
55 e600f124 2021-03-21 stsp local new_author_time2=`git_show_author_time $testroot/repo`
56 818c7501 2019-07-11 stsp
57 818c7501 2019-07-11 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
58 818c7501 2019-07-11 stsp local short_orig_commit2=`trim_obj_id 28 $orig_commit2`
59 818c7501 2019-07-11 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
60 818c7501 2019-07-11 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
61 818c7501 2019-07-11 stsp
62 818c7501 2019-07-11 stsp echo "G gamma/delta" >> $testroot/stdout.expected
63 818c7501 2019-07-11 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
64 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
65 818c7501 2019-07-11 stsp echo ": committing to delta on newbranch" >> $testroot/stdout.expected
66 818c7501 2019-07-11 stsp echo "G alpha" >> $testroot/stdout.expected
67 818c7501 2019-07-11 stsp echo "D beta" >> $testroot/stdout.expected
68 818c7501 2019-07-11 stsp echo "A epsilon/new" >> $testroot/stdout.expected
69 818c7501 2019-07-11 stsp echo -n "$short_orig_commit2 -> $short_new_commit2" \
70 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
71 818c7501 2019-07-11 stsp echo ": committing more changes on newbranch" \
72 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
73 818c7501 2019-07-11 stsp echo "Switching work tree to refs/heads/newbranch" \
74 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
75 818c7501 2019-07-11 stsp
76 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
77 fc414659 2022-04-16 thomas ret=$?
78 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
79 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
80 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
81 818c7501 2019-07-11 stsp return 1
82 818c7501 2019-07-11 stsp fi
83 818c7501 2019-07-11 stsp
84 818c7501 2019-07-11 stsp echo "modified delta on branch" > $testroot/content.expected
85 818c7501 2019-07-11 stsp cat $testroot/wt/gamma/delta > $testroot/content
86 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
87 fc414659 2022-04-16 thomas ret=$?
88 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
89 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
90 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
91 818c7501 2019-07-11 stsp return 1
92 818c7501 2019-07-11 stsp fi
93 818c7501 2019-07-11 stsp
94 818c7501 2019-07-11 stsp echo "modified alpha on branch" > $testroot/content.expected
95 818c7501 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
96 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
97 fc414659 2022-04-16 thomas ret=$?
98 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
99 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
100 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
101 818c7501 2019-07-11 stsp return 1
102 818c7501 2019-07-11 stsp fi
103 818c7501 2019-07-11 stsp
104 818c7501 2019-07-11 stsp if [ -e $testroot/wt/beta ]; then
105 818c7501 2019-07-11 stsp echo "removed file beta still exists on disk" >&2
106 818c7501 2019-07-11 stsp test_done "$testroot" "1"
107 818c7501 2019-07-11 stsp return 1
108 818c7501 2019-07-11 stsp fi
109 818c7501 2019-07-11 stsp
110 818c7501 2019-07-11 stsp echo "new file on branch" > $testroot/content.expected
111 818c7501 2019-07-11 stsp cat $testroot/wt/epsilon/new > $testroot/content
112 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
113 fc414659 2022-04-16 thomas ret=$?
114 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
115 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
116 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
117 818c7501 2019-07-11 stsp return 1
118 818c7501 2019-07-11 stsp fi
119 818c7501 2019-07-11 stsp
120 818c7501 2019-07-11 stsp (cd $testroot/wt && got status > $testroot/stdout)
121 818c7501 2019-07-11 stsp
122 818c7501 2019-07-11 stsp echo -n > $testroot/stdout.expected
123 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
124 fc414659 2022-04-16 thomas ret=$?
125 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
126 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
127 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
128 818c7501 2019-07-11 stsp return 1
129 818c7501 2019-07-11 stsp fi
130 818c7501 2019-07-11 stsp
131 818c7501 2019-07-11 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
132 818c7501 2019-07-11 stsp echo "commit $new_commit2 (newbranch)" > $testroot/stdout.expected
133 818c7501 2019-07-11 stsp echo "commit $new_commit1" >> $testroot/stdout.expected
134 818c7501 2019-07-11 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
135 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
136 fc414659 2022-04-16 thomas ret=$?
137 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
138 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
139 a615e0e7 2020-12-16 stsp test_done "$testroot" "$ret"
140 a615e0e7 2020-12-16 stsp return 1
141 818c7501 2019-07-11 stsp fi
142 a615e0e7 2020-12-16 stsp
143 a615e0e7 2020-12-16 stsp (cd $testroot/wt && got update > $testroot/stdout)
144 a615e0e7 2020-12-16 stsp
145 a615e0e7 2020-12-16 stsp echo 'Already up-to-date' > $testroot/stdout.expected
146 a615e0e7 2020-12-16 stsp cmp -s $testroot/stdout.expected $testroot/stdout
147 fc414659 2022-04-16 thomas ret=$?
148 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
149 a615e0e7 2020-12-16 stsp diff -u $testroot/stdout.expected $testroot/stdout
150 e600f124 2021-03-21 stsp test_done "$testroot" "$ret"
151 a9662115 2021-08-29 naddy return 1
152 a615e0e7 2020-12-16 stsp fi
153 e600f124 2021-03-21 stsp
154 e600f124 2021-03-21 stsp # We should have a backup of old commits
155 e600f124 2021-03-21 stsp (cd $testroot/repo && got rebase -l > $testroot/stdout)
156 fa37079f 2021-10-09 thomas local prev_LC_TIME="$LC_TIME"
157 fa37079f 2021-10-09 thomas export LC_TIME=C
158 fa37079f 2021-10-09 thomas d_orig2=`date -u -d "@$orig_author_time2" +"%a %b %e %X %Y UTC"`
159 fa37079f 2021-10-09 thomas export LC_TIME="$prev_LC_TIME"
160 180f111d 2021-09-21 thomas.ad d_new2=`date -u -d "@$new_author_time2" +"%G-%m-%d"`
161 180f111d 2021-09-21 thomas.ad d_0=`date -u -d "@$commit0_author_time" +"%G-%m-%d"`
162 e600f124 2021-03-21 stsp cat > $testroot/stdout.expected <<EOF
163 e600f124 2021-03-21 stsp -----------------------------------------------
164 e600f124 2021-03-21 stsp commit $orig_commit2 (formerly newbranch)
165 e600f124 2021-03-21 stsp from: $GOT_AUTHOR
166 e600f124 2021-03-21 stsp date: $d_orig2
167 e600f124 2021-03-21 stsp
168 e600f124 2021-03-21 stsp committing more changes on newbranch
169 e600f124 2021-03-21 stsp
170 e600f124 2021-03-21 stsp has become commit $new_commit2 (newbranch)
171 e600f124 2021-03-21 stsp $d_new2 $GOT_AUTHOR_11 committing more changes on newbranch
172 e600f124 2021-03-21 stsp history forked at $commit0
173 e600f124 2021-03-21 stsp $d_0 $GOT_AUTHOR_11 adding the test tree
174 e600f124 2021-03-21 stsp EOF
175 e600f124 2021-03-21 stsp cmp -s $testroot/stdout.expected $testroot/stdout
176 fc414659 2022-04-16 thomas ret=$?
177 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
178 e600f124 2021-03-21 stsp diff -u $testroot/stdout.expected $testroot/stdout
179 9e822917 2021-03-23 stsp test_done "$testroot" "$ret"
180 a9662115 2021-08-29 naddy return 1
181 e600f124 2021-03-21 stsp fi
182 9e822917 2021-03-23 stsp
183 9e822917 2021-03-23 stsp # Asking for backups of a branch which has none should yield an error
184 9e822917 2021-03-23 stsp (cd $testroot/repo && got rebase -l master \
185 9e822917 2021-03-23 stsp > $testroot/stdout 2> $testroot/stderr)
186 9e822917 2021-03-23 stsp echo -n > $testroot/stdout.expected
187 9e822917 2021-03-23 stsp echo "got: refs/got/backup/rebase/master/: no such reference found" \
188 9e822917 2021-03-23 stsp > $testroot/stderr.expected
189 9e822917 2021-03-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
190 fc414659 2022-04-16 thomas ret=$?
191 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
192 9e822917 2021-03-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
193 9e822917 2021-03-23 stsp test_done "$testroot" "$ret"
194 643b85bc 2021-07-16 stsp return 1
195 9e822917 2021-03-23 stsp fi
196 9e822917 2021-03-23 stsp cmp -s $testroot/stderr.expected $testroot/stderr
197 fc414659 2022-04-16 thomas ret=$?
198 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
199 9e822917 2021-03-23 stsp diff -u $testroot/stderr.expected $testroot/stderr
200 643b85bc 2021-07-16 stsp test_done "$testroot" "$ret"
201 643b85bc 2021-07-16 stsp return 1
202 9e822917 2021-03-23 stsp fi
203 643b85bc 2021-07-16 stsp
204 643b85bc 2021-07-16 stsp # Delete all backup refs
205 643b85bc 2021-07-16 stsp (cd $testroot/repo && got rebase -X \
206 643b85bc 2021-07-16 stsp > $testroot/stdout 2> $testroot/stderr)
207 643b85bc 2021-07-16 stsp echo -n "Deleted refs/got/backup/rebase/newbranch/$new_commit2: " \
208 643b85bc 2021-07-16 stsp > $testroot/stdout.expected
209 643b85bc 2021-07-16 stsp echo "$orig_commit2" >> $testroot/stdout.expected
210 643b85bc 2021-07-16 stsp echo -n > $testroot/stderr.expected
211 643b85bc 2021-07-16 stsp cmp -s $testroot/stdout.expected $testroot/stdout
212 fc414659 2022-04-16 thomas ret=$?
213 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
214 643b85bc 2021-07-16 stsp diff -u $testroot/stdout.expected $testroot/stdout
215 643b85bc 2021-07-16 stsp test_done "$testroot" "$ret"
216 643b85bc 2021-07-16 stsp return 1
217 643b85bc 2021-07-16 stsp fi
218 643b85bc 2021-07-16 stsp cmp -s $testroot/stderr.expected $testroot/stderr
219 fc414659 2022-04-16 thomas ret=$?
220 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
221 643b85bc 2021-07-16 stsp diff -u $testroot/stderr.expected $testroot/stderr
222 643b85bc 2021-07-16 stsp test_done "$testroot" "$ret"
223 643b85bc 2021-07-16 stsp return 1
224 643b85bc 2021-07-16 stsp fi
225 643b85bc 2021-07-16 stsp
226 643b85bc 2021-07-16 stsp (cd $testroot/repo && got rebase -l > $testroot/stdout)
227 643b85bc 2021-07-16 stsp echo -n > $testroot/stdout.expected
228 643b85bc 2021-07-16 stsp cmp -s $testroot/stdout.expected $testroot/stdout
229 fc414659 2022-04-16 thomas ret=$?
230 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
231 643b85bc 2021-07-16 stsp diff -u $testroot/stdout.expected $testroot/stdout
232 643b85bc 2021-07-16 stsp fi
233 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
234 818c7501 2019-07-11 stsp }
235 818c7501 2019-07-11 stsp
236 f6cae3ed 2020-09-13 naddy test_rebase_ancestry_check() {
237 818c7501 2019-07-11 stsp local testroot=`test_init rebase_ancestry_check`
238 818c7501 2019-07-11 stsp
239 818c7501 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
240 fc414659 2022-04-16 thomas ret=$?
241 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
242 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
243 818c7501 2019-07-11 stsp return 1
244 818c7501 2019-07-11 stsp fi
245 818c7501 2019-07-11 stsp
246 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
247 818c7501 2019-07-11 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
248 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
249 82d979c5 2021-11-04 thomas local newbranch_id=`git_show_head $testroot/repo`
250 818c7501 2019-07-11 stsp
251 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
252 818c7501 2019-07-11 stsp 2> $testroot/stderr)
253 818c7501 2019-07-11 stsp
254 82d979c5 2021-11-04 thomas echo "refs/heads/newbranch is already based on refs/heads/master" \
255 82d979c5 2021-11-04 thomas > $testroot/stdout.expected
256 82d979c5 2021-11-04 thomas echo "Switching work tree from refs/heads/master to refs/heads/newbranch" \
257 82d979c5 2021-11-04 thomas >> $testroot/stdout.expected
258 82d979c5 2021-11-04 thomas echo "U gamma/delta" >> $testroot/stdout.expected
259 82d979c5 2021-11-04 thomas echo "Updated to refs/heads/newbranch: ${newbranch_id}" \
260 82d979c5 2021-11-04 thomas >> $testroot/stdout.expected
261 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
262 fc414659 2022-04-16 thomas ret=$?
263 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
264 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
265 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
266 818c7501 2019-07-11 stsp return 1
267 818c7501 2019-07-11 stsp fi
268 818c7501 2019-07-11 stsp
269 82d979c5 2021-11-04 thomas echo -n > $testroot/stderr.expected
270 818c7501 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
271 fc414659 2022-04-16 thomas ret=$?
272 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
273 818c7501 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
274 818c7501 2019-07-11 stsp fi
275 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
276 818c7501 2019-07-11 stsp }
277 818c7501 2019-07-11 stsp
278 f6cae3ed 2020-09-13 naddy test_rebase_continue() {
279 818c7501 2019-07-11 stsp local testroot=`test_init rebase_continue`
280 f69721c3 2019-10-21 stsp local init_commit=`git_show_head $testroot/repo`
281 818c7501 2019-07-11 stsp
282 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
283 818c7501 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
284 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on newbranch"
285 818c7501 2019-07-11 stsp local orig_commit1=`git_show_head $testroot/repo`
286 a0ea4fc0 2020-02-28 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
287 818c7501 2019-07-11 stsp
288 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
289 818c7501 2019-07-11 stsp echo "modified alpha on master" > $testroot/repo/alpha
290 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on master"
291 818c7501 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
292 818c7501 2019-07-11 stsp
293 818c7501 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
294 fc414659 2022-04-16 thomas ret=$?
295 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
296 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
297 818c7501 2019-07-11 stsp return 1
298 818c7501 2019-07-11 stsp fi
299 818c7501 2019-07-11 stsp
300 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
301 818c7501 2019-07-11 stsp 2> $testroot/stderr)
302 818c7501 2019-07-11 stsp
303 818c7501 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
304 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
305 a0ea4fc0 2020-02-28 stsp echo -n "$short_orig_commit1 -> merge conflict" \
306 a0ea4fc0 2020-02-28 stsp >> $testroot/stdout.expected
307 a0ea4fc0 2020-02-28 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
308 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
309 fc414659 2022-04-16 thomas ret=$?
310 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
311 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
312 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
313 818c7501 2019-07-11 stsp return 1
314 818c7501 2019-07-11 stsp fi
315 818c7501 2019-07-11 stsp
316 11495e04 2019-07-12 stsp echo "got: conflicts must be resolved before rebasing can continue" \
317 818c7501 2019-07-11 stsp > $testroot/stderr.expected
318 818c7501 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
319 fc414659 2022-04-16 thomas ret=$?
320 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
321 818c7501 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
322 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
323 818c7501 2019-07-11 stsp return 1
324 818c7501 2019-07-11 stsp fi
325 818c7501 2019-07-11 stsp
326 54d5be07 2021-06-03 stsp echo '<<<<<<<' > $testroot/content.expected
327 54d5be07 2021-06-03 stsp echo "modified alpha on master" >> $testroot/content.expected
328 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $init_commit" \
329 f69721c3 2019-10-21 stsp >> $testroot/content.expected
330 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
331 818c7501 2019-07-11 stsp echo "=======" >> $testroot/content.expected
332 54d5be07 2021-06-03 stsp echo "modified alpha on branch" >> $testroot/content.expected
333 54d5be07 2021-06-03 stsp echo ">>>>>>> merged change: commit $orig_commit1" \
334 54d5be07 2021-06-03 stsp >> $testroot/content.expected
335 818c7501 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
336 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
337 fc414659 2022-04-16 thomas ret=$?
338 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
339 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
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 status > $testroot/stdout)
345 818c7501 2019-07-11 stsp
346 818c7501 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
347 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
348 fc414659 2022-04-16 thomas ret=$?
349 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
350 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
351 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
352 818c7501 2019-07-11 stsp return 1
353 818c7501 2019-07-11 stsp fi
354 818c7501 2019-07-11 stsp
355 818c7501 2019-07-11 stsp # resolve the conflict
356 818c7501 2019-07-11 stsp echo "modified alpha on branch and master" > $testroot/wt/alpha
357 818c7501 2019-07-11 stsp
358 f032f1f7 2019-08-04 stsp # test interaction of 'got stage' and rebase -c
359 f032f1f7 2019-08-04 stsp (cd $testroot/wt && got stage alpha > /dev/null)
360 f032f1f7 2019-08-04 stsp (cd $testroot/wt && got rebase -c > $testroot/stdout \
361 f032f1f7 2019-08-04 stsp 2> $testroot/stderr)
362 fc414659 2022-04-16 thomas ret=$?
363 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
364 f032f1f7 2019-08-04 stsp echo "rebase succeeded unexpectedly" >&2
365 f032f1f7 2019-08-04 stsp test_done "$testroot" "1"
366 f032f1f7 2019-08-04 stsp return 1
367 f032f1f7 2019-08-04 stsp fi
368 f032f1f7 2019-08-04 stsp echo -n "got: work tree contains files with staged changes; " \
369 f032f1f7 2019-08-04 stsp > $testroot/stderr.expected
370 f032f1f7 2019-08-04 stsp echo "these changes must be committed or unstaged first" \
371 f032f1f7 2019-08-04 stsp >> $testroot/stderr.expected
372 f032f1f7 2019-08-04 stsp cmp -s $testroot/stderr.expected $testroot/stderr
373 fc414659 2022-04-16 thomas ret=$?
374 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
375 f032f1f7 2019-08-04 stsp diff -u $testroot/stderr.expected $testroot/stderr
376 f032f1f7 2019-08-04 stsp test_done "$testroot" "$ret"
377 f032f1f7 2019-08-04 stsp return 1
378 f032f1f7 2019-08-04 stsp fi
379 f032f1f7 2019-08-04 stsp
380 f032f1f7 2019-08-04 stsp (cd $testroot/wt && got unstage alpha > /dev/null)
381 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase -c > $testroot/stdout)
382 818c7501 2019-07-11 stsp
383 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
384 818c7501 2019-07-11 stsp local new_commit1=`git_show_head $testroot/repo`
385 818c7501 2019-07-11 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
386 818c7501 2019-07-11 stsp
387 818c7501 2019-07-11 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
388 818c7501 2019-07-11 stsp > $testroot/stdout.expected
389 818c7501 2019-07-11 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
390 818c7501 2019-07-11 stsp echo "Switching work tree to refs/heads/newbranch" \
391 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
392 818c7501 2019-07-11 stsp
393 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
394 fc414659 2022-04-16 thomas ret=$?
395 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
396 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
397 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
398 818c7501 2019-07-11 stsp return 1
399 818c7501 2019-07-11 stsp fi
400 818c7501 2019-07-11 stsp
401 818c7501 2019-07-11 stsp
402 818c7501 2019-07-11 stsp (cd $testroot/wt && got log -l2 | grep ^commit > $testroot/stdout)
403 818c7501 2019-07-11 stsp echo "commit $new_commit1 (newbranch)" > $testroot/stdout.expected
404 818c7501 2019-07-11 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
405 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
406 fc414659 2022-04-16 thomas ret=$?
407 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
408 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
409 818c7501 2019-07-11 stsp fi
410 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
411 818c7501 2019-07-11 stsp }
412 818c7501 2019-07-11 stsp
413 f6cae3ed 2020-09-13 naddy test_rebase_abort() {
414 818c7501 2019-07-11 stsp local testroot=`test_init rebase_abort`
415 818c7501 2019-07-11 stsp
416 818c7501 2019-07-11 stsp local init_commit=`git_show_head $testroot/repo`
417 818c7501 2019-07-11 stsp
418 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
419 818c7501 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
420 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on newbranch"
421 818c7501 2019-07-11 stsp local orig_commit1=`git_show_head $testroot/repo`
422 a0ea4fc0 2020-02-28 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
423 818c7501 2019-07-11 stsp
424 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
425 818c7501 2019-07-11 stsp echo "modified alpha on master" > $testroot/repo/alpha
426 818c7501 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on master"
427 818c7501 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
428 818c7501 2019-07-11 stsp
429 818c7501 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
430 fc414659 2022-04-16 thomas ret=$?
431 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
432 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
433 818c7501 2019-07-11 stsp return 1
434 818c7501 2019-07-11 stsp fi
435 d52bac28 2021-10-08 thomas
436 d52bac28 2021-10-08 thomas # unrelated unversioned file in work tree
437 d52bac28 2021-10-08 thomas touch $testroot/wt/unversioned-file
438 818c7501 2019-07-11 stsp
439 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
440 818c7501 2019-07-11 stsp 2> $testroot/stderr)
441 818c7501 2019-07-11 stsp
442 818c7501 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
443 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
444 a0ea4fc0 2020-02-28 stsp echo -n "$short_orig_commit1 -> merge conflict" \
445 a0ea4fc0 2020-02-28 stsp >> $testroot/stdout.expected
446 a0ea4fc0 2020-02-28 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
447 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
448 fc414659 2022-04-16 thomas ret=$?
449 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
450 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
451 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
452 818c7501 2019-07-11 stsp return 1
453 818c7501 2019-07-11 stsp fi
454 818c7501 2019-07-11 stsp
455 11495e04 2019-07-12 stsp echo "got: conflicts must be resolved before rebasing can continue" \
456 818c7501 2019-07-11 stsp > $testroot/stderr.expected
457 818c7501 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
458 fc414659 2022-04-16 thomas ret=$?
459 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
460 818c7501 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
461 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
462 818c7501 2019-07-11 stsp return 1
463 818c7501 2019-07-11 stsp fi
464 818c7501 2019-07-11 stsp
465 54d5be07 2021-06-03 stsp echo '<<<<<<<' > $testroot/content.expected
466 54d5be07 2021-06-03 stsp echo "modified alpha on master" >> $testroot/content.expected
467 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $init_commit" \
468 f69721c3 2019-10-21 stsp >> $testroot/content.expected
469 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
470 818c7501 2019-07-11 stsp echo "=======" >> $testroot/content.expected
471 54d5be07 2021-06-03 stsp echo "modified alpha on branch" >> $testroot/content.expected
472 54d5be07 2021-06-03 stsp echo ">>>>>>> merged change: commit $orig_commit1" \
473 54d5be07 2021-06-03 stsp >> $testroot/content.expected
474 818c7501 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
475 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
476 fc414659 2022-04-16 thomas ret=$?
477 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
478 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
479 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
480 818c7501 2019-07-11 stsp return 1
481 818c7501 2019-07-11 stsp fi
482 818c7501 2019-07-11 stsp
483 818c7501 2019-07-11 stsp (cd $testroot/wt && got status > $testroot/stdout)
484 818c7501 2019-07-11 stsp
485 818c7501 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
486 d52bac28 2021-10-08 thomas echo "? unversioned-file" >> $testroot/stdout.expected
487 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
488 fc414659 2022-04-16 thomas ret=$?
489 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
490 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
491 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
492 818c7501 2019-07-11 stsp return 1
493 818c7501 2019-07-11 stsp fi
494 818c7501 2019-07-11 stsp
495 818c7501 2019-07-11 stsp (cd $testroot/wt && got rebase -a > $testroot/stdout)
496 818c7501 2019-07-11 stsp
497 818c7501 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
498 818c7501 2019-07-11 stsp
499 818c7501 2019-07-11 stsp echo "Switching work tree to refs/heads/master" \
500 818c7501 2019-07-11 stsp > $testroot/stdout.expected
501 818c7501 2019-07-11 stsp echo 'R alpha' >> $testroot/stdout.expected
502 818c7501 2019-07-11 stsp echo "Rebase of refs/heads/newbranch aborted" \
503 818c7501 2019-07-11 stsp >> $testroot/stdout.expected
504 818c7501 2019-07-11 stsp
505 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
506 fc414659 2022-04-16 thomas ret=$?
507 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
508 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
509 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
510 818c7501 2019-07-11 stsp return 1
511 818c7501 2019-07-11 stsp fi
512 818c7501 2019-07-11 stsp
513 818c7501 2019-07-11 stsp echo "modified alpha on master" > $testroot/content.expected
514 818c7501 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
515 818c7501 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
516 fc414659 2022-04-16 thomas ret=$?
517 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
518 818c7501 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
519 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
520 818c7501 2019-07-11 stsp return 1
521 818c7501 2019-07-11 stsp fi
522 818c7501 2019-07-11 stsp
523 818c7501 2019-07-11 stsp (cd $testroot/wt && got log -l3 -c newbranch \
524 818c7501 2019-07-11 stsp | grep ^commit > $testroot/stdout)
525 818c7501 2019-07-11 stsp echo "commit $orig_commit1 (newbranch)" > $testroot/stdout.expected
526 818c7501 2019-07-11 stsp echo "commit $init_commit" >> $testroot/stdout.expected
527 818c7501 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
528 fc414659 2022-04-16 thomas ret=$?
529 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
530 818c7501 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
531 818c7501 2019-07-11 stsp fi
532 818c7501 2019-07-11 stsp test_done "$testroot" "$ret"
533 818c7501 2019-07-11 stsp }
534 818c7501 2019-07-11 stsp
535 f6cae3ed 2020-09-13 naddy test_rebase_no_op_change() {
536 ff0d2220 2019-07-11 stsp local testroot=`test_init rebase_no_op_change`
537 ff0d2220 2019-07-11 stsp local init_commit=`git_show_head $testroot/repo`
538 ff0d2220 2019-07-11 stsp
539 ff0d2220 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
540 ff0d2220 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
541 ff0d2220 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on newbranch"
542 ff0d2220 2019-07-11 stsp local orig_commit1=`git_show_head $testroot/repo`
543 a0ea4fc0 2020-02-28 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
544 ff0d2220 2019-07-11 stsp
545 ff0d2220 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
546 ff0d2220 2019-07-11 stsp echo "modified alpha on master" > $testroot/repo/alpha
547 ff0d2220 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on master"
548 ff0d2220 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
549 ff0d2220 2019-07-11 stsp
550 ff0d2220 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
551 fc414659 2022-04-16 thomas ret=$?
552 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
553 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
554 ff0d2220 2019-07-11 stsp return 1
555 ff0d2220 2019-07-11 stsp fi
556 ff0d2220 2019-07-11 stsp
557 ff0d2220 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
558 ff0d2220 2019-07-11 stsp 2> $testroot/stderr)
559 ff0d2220 2019-07-11 stsp
560 ff0d2220 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
561 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
562 a0ea4fc0 2020-02-28 stsp echo -n "$short_orig_commit1 -> merge conflict" \
563 a0ea4fc0 2020-02-28 stsp >> $testroot/stdout.expected
564 a0ea4fc0 2020-02-28 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
565 ff0d2220 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
566 fc414659 2022-04-16 thomas ret=$?
567 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
568 ff0d2220 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
569 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
570 ff0d2220 2019-07-11 stsp return 1
571 ff0d2220 2019-07-11 stsp fi
572 ff0d2220 2019-07-11 stsp
573 11495e04 2019-07-12 stsp echo "got: conflicts must be resolved before rebasing can continue" \
574 ff0d2220 2019-07-11 stsp > $testroot/stderr.expected
575 ff0d2220 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
576 fc414659 2022-04-16 thomas ret=$?
577 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
578 ff0d2220 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
579 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
580 ff0d2220 2019-07-11 stsp return 1
581 ff0d2220 2019-07-11 stsp fi
582 ff0d2220 2019-07-11 stsp
583 54d5be07 2021-06-03 stsp echo '<<<<<<<' > $testroot/content.expected
584 54d5be07 2021-06-03 stsp echo "modified alpha on master" >> $testroot/content.expected
585 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $init_commit" \
586 f69721c3 2019-10-21 stsp >> $testroot/content.expected
587 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
588 ff0d2220 2019-07-11 stsp echo "=======" >> $testroot/content.expected
589 54d5be07 2021-06-03 stsp echo "modified alpha on branch" >> $testroot/content.expected
590 54d5be07 2021-06-03 stsp echo ">>>>>>> merged change: commit $orig_commit1" \
591 54d5be07 2021-06-03 stsp >> $testroot/content.expected
592 ff0d2220 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
593 ff0d2220 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
594 fc414659 2022-04-16 thomas ret=$?
595 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
596 ff0d2220 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
597 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
598 ff0d2220 2019-07-11 stsp return 1
599 ff0d2220 2019-07-11 stsp fi
600 ff0d2220 2019-07-11 stsp
601 ff0d2220 2019-07-11 stsp (cd $testroot/wt && got status > $testroot/stdout)
602 ff0d2220 2019-07-11 stsp
603 ff0d2220 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
604 ff0d2220 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
605 fc414659 2022-04-16 thomas ret=$?
606 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
607 ff0d2220 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
608 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
609 ff0d2220 2019-07-11 stsp return 1
610 ff0d2220 2019-07-11 stsp fi
611 ff0d2220 2019-07-11 stsp
612 ff0d2220 2019-07-11 stsp # resolve the conflict
613 ff0d2220 2019-07-11 stsp echo "modified alpha on master" > $testroot/wt/alpha
614 ff0d2220 2019-07-11 stsp
615 ff0d2220 2019-07-11 stsp (cd $testroot/wt && got rebase -c > $testroot/stdout)
616 ff0d2220 2019-07-11 stsp
617 ff0d2220 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
618 ff0d2220 2019-07-11 stsp local new_commit1=`git_show_head $testroot/repo`
619 ff0d2220 2019-07-11 stsp
620 ff0d2220 2019-07-11 stsp echo -n "$short_orig_commit1 -> no-op change" \
621 ff0d2220 2019-07-11 stsp > $testroot/stdout.expected
622 ff0d2220 2019-07-11 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
623 ff0d2220 2019-07-11 stsp echo "Switching work tree to refs/heads/newbranch" \
624 ff0d2220 2019-07-11 stsp >> $testroot/stdout.expected
625 ff0d2220 2019-07-11 stsp
626 ff0d2220 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
627 fc414659 2022-04-16 thomas ret=$?
628 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
629 ff0d2220 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
630 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
631 ff0d2220 2019-07-11 stsp return 1
632 ff0d2220 2019-07-11 stsp fi
633 ff0d2220 2019-07-11 stsp
634 ff0d2220 2019-07-11 stsp
635 ff0d2220 2019-07-11 stsp (cd $testroot/wt && got log -l2 | grep ^commit > $testroot/stdout)
636 ff0d2220 2019-07-11 stsp echo "commit $master_commit (master, newbranch)" \
637 ff0d2220 2019-07-11 stsp > $testroot/stdout.expected
638 ff0d2220 2019-07-11 stsp echo "commit $init_commit" >> $testroot/stdout.expected
639 7d5807f4 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
640 fc414659 2022-04-16 thomas ret=$?
641 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
642 7d5807f4 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
643 7d5807f4 2019-07-11 stsp fi
644 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
645 7d5807f4 2019-07-11 stsp }
646 7d5807f4 2019-07-11 stsp
647 f6cae3ed 2020-09-13 naddy test_rebase_in_progress() {
648 4ba9c4f6 2019-07-11 stsp local testroot=`test_init rebase_in_progress`
649 7d5807f4 2019-07-11 stsp local init_commit=`git_show_head $testroot/repo`
650 7d5807f4 2019-07-11 stsp
651 7d5807f4 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
652 7d5807f4 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
653 7d5807f4 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on newbranch"
654 7d5807f4 2019-07-11 stsp local orig_commit1=`git_show_head $testroot/repo`
655 a0ea4fc0 2020-02-28 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
656 7d5807f4 2019-07-11 stsp
657 7d5807f4 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
658 7d5807f4 2019-07-11 stsp echo "modified alpha on master" > $testroot/repo/alpha
659 7d5807f4 2019-07-11 stsp git_commit $testroot/repo -m "committing to alpha on master"
660 7d5807f4 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
661 7d5807f4 2019-07-11 stsp
662 7d5807f4 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
663 fc414659 2022-04-16 thomas ret=$?
664 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
665 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
666 7d5807f4 2019-07-11 stsp return 1
667 7d5807f4 2019-07-11 stsp fi
668 7d5807f4 2019-07-11 stsp
669 7d5807f4 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
670 7d5807f4 2019-07-11 stsp 2> $testroot/stderr)
671 7d5807f4 2019-07-11 stsp
672 7d5807f4 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
673 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
674 a0ea4fc0 2020-02-28 stsp echo -n "$short_orig_commit1 -> merge conflict" \
675 a0ea4fc0 2020-02-28 stsp >> $testroot/stdout.expected
676 a0ea4fc0 2020-02-28 stsp echo ": committing to alpha on newbranch" >> $testroot/stdout.expected
677 7d5807f4 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
678 fc414659 2022-04-16 thomas ret=$?
679 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
680 7d5807f4 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
681 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
682 7d5807f4 2019-07-11 stsp return 1
683 7d5807f4 2019-07-11 stsp fi
684 7d5807f4 2019-07-11 stsp
685 11495e04 2019-07-12 stsp echo "got: conflicts must be resolved before rebasing can continue" \
686 7d5807f4 2019-07-11 stsp > $testroot/stderr.expected
687 7d5807f4 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
688 fc414659 2022-04-16 thomas ret=$?
689 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
690 7d5807f4 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
691 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
692 7d5807f4 2019-07-11 stsp return 1
693 7d5807f4 2019-07-11 stsp fi
694 7d5807f4 2019-07-11 stsp
695 54d5be07 2021-06-03 stsp echo '<<<<<<<' > $testroot/content.expected
696 54d5be07 2021-06-03 stsp echo "modified alpha on master" >> $testroot/content.expected
697 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $init_commit" \
698 f69721c3 2019-10-21 stsp >> $testroot/content.expected
699 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
700 7d5807f4 2019-07-11 stsp echo "=======" >> $testroot/content.expected
701 54d5be07 2021-06-03 stsp echo "modified alpha on branch" >> $testroot/content.expected
702 54d5be07 2021-06-03 stsp echo ">>>>>>> merged change: commit $orig_commit1" \
703 54d5be07 2021-06-03 stsp >> $testroot/content.expected
704 7d5807f4 2019-07-11 stsp cat $testroot/wt/alpha > $testroot/content
705 7d5807f4 2019-07-11 stsp cmp -s $testroot/content.expected $testroot/content
706 fc414659 2022-04-16 thomas ret=$?
707 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
708 7d5807f4 2019-07-11 stsp diff -u $testroot/content.expected $testroot/content
709 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
710 7d5807f4 2019-07-11 stsp return 1
711 7d5807f4 2019-07-11 stsp fi
712 7d5807f4 2019-07-11 stsp
713 7d5807f4 2019-07-11 stsp (cd $testroot/wt && got status > $testroot/stdout)
714 7d5807f4 2019-07-11 stsp
715 7d5807f4 2019-07-11 stsp echo "C alpha" > $testroot/stdout.expected
716 ff0d2220 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
717 fc414659 2022-04-16 thomas ret=$?
718 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
719 ff0d2220 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
720 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
721 7d5807f4 2019-07-11 stsp return 1
722 ff0d2220 2019-07-11 stsp fi
723 7d5807f4 2019-07-11 stsp
724 7d5807f4 2019-07-11 stsp for cmd in update commit; do
725 7d5807f4 2019-07-11 stsp (cd $testroot/wt && got $cmd > $testroot/stdout \
726 7d5807f4 2019-07-11 stsp 2> $testroot/stderr)
727 7d5807f4 2019-07-11 stsp
728 7d5807f4 2019-07-11 stsp echo -n > $testroot/stdout.expected
729 7d5807f4 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
730 fc414659 2022-04-16 thomas ret=$?
731 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
732 7d5807f4 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
733 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
734 7d5807f4 2019-07-11 stsp return 1
735 7d5807f4 2019-07-11 stsp fi
736 7d5807f4 2019-07-11 stsp
737 7d5807f4 2019-07-11 stsp echo -n "got: a rebase operation is in progress in this " \
738 7d5807f4 2019-07-11 stsp > $testroot/stderr.expected
739 7d5807f4 2019-07-11 stsp echo "work tree and must be continued or aborted first" \
740 7d5807f4 2019-07-11 stsp >> $testroot/stderr.expected
741 7d5807f4 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
742 fc414659 2022-04-16 thomas ret=$?
743 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
744 7d5807f4 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
745 7d5807f4 2019-07-11 stsp test_done "$testroot" "$ret"
746 7d5807f4 2019-07-11 stsp return 1
747 7d5807f4 2019-07-11 stsp fi
748 7d5807f4 2019-07-11 stsp done
749 64c6d990 2019-07-11 stsp
750 64c6d990 2019-07-11 stsp test_done "$testroot" "$ret"
751 64c6d990 2019-07-11 stsp }
752 64c6d990 2019-07-11 stsp
753 f6cae3ed 2020-09-13 naddy test_rebase_path_prefix() {
754 64c6d990 2019-07-11 stsp local testroot=`test_init rebase_path_prefix`
755 64c6d990 2019-07-11 stsp
756 64c6d990 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
757 64c6d990 2019-07-11 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
758 64c6d990 2019-07-11 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
759 64c6d990 2019-07-11 stsp
760 64c6d990 2019-07-11 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
761 64c6d990 2019-07-11 stsp local orig_commit2=`git_show_head $testroot/repo`
762 64c6d990 2019-07-11 stsp
763 64c6d990 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
764 64c6d990 2019-07-11 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
765 64c6d990 2019-07-11 stsp git_commit $testroot/repo -m "committing to zeta on master"
766 64c6d990 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
767 64c6d990 2019-07-11 stsp
768 64c6d990 2019-07-11 stsp got checkout -p epsilon $testroot/repo $testroot/wt > /dev/null
769 fc414659 2022-04-16 thomas ret=$?
770 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
771 64c6d990 2019-07-11 stsp test_done "$testroot" "$ret"
772 64c6d990 2019-07-11 stsp return 1
773 64c6d990 2019-07-11 stsp fi
774 7d5807f4 2019-07-11 stsp
775 64c6d990 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch \
776 64c6d990 2019-07-11 stsp > $testroot/stdout 2> $testroot/stderr)
777 64c6d990 2019-07-11 stsp
778 64c6d990 2019-07-11 stsp echo -n > $testroot/stdout.expected
779 64c6d990 2019-07-11 stsp cmp -s $testroot/stdout.expected $testroot/stdout
780 fc414659 2022-04-16 thomas ret=$?
781 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
782 64c6d990 2019-07-11 stsp diff -u $testroot/stdout.expected $testroot/stdout
783 64c6d990 2019-07-11 stsp test_done "$testroot" "$ret"
784 64c6d990 2019-07-11 stsp return 1
785 64c6d990 2019-07-11 stsp fi
786 64c6d990 2019-07-11 stsp
787 64c6d990 2019-07-11 stsp echo -n "got: cannot rebase branch which contains changes outside " \
788 64c6d990 2019-07-11 stsp > $testroot/stderr.expected
789 64c6d990 2019-07-11 stsp echo "of this work tree's path prefix" >> $testroot/stderr.expected
790 787c8eb6 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
791 fc414659 2022-04-16 thomas ret=$?
792 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
793 787c8eb6 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
794 f4a34a66 2022-04-16 thomas test_done "$testroot" "$ret"
795 f4a34a66 2022-04-16 thomas return 1
796 f4a34a66 2022-04-16 thomas fi
797 f4a34a66 2022-04-16 thomas
798 f4a34a66 2022-04-16 thomas # rebase should succeed when using a complete work tree
799 f4a34a66 2022-04-16 thomas got checkout $testroot/repo $testroot/wt2 > /dev/null
800 f4a34a66 2022-04-16 thomas ret=$?
801 f4a34a66 2022-04-16 thomas if [ $ret -ne 0 ]; then
802 f4a34a66 2022-04-16 thomas test_done "$testroot" "$ret"
803 f4a34a66 2022-04-16 thomas return 1
804 f4a34a66 2022-04-16 thomas fi
805 f4a34a66 2022-04-16 thomas
806 f4a34a66 2022-04-16 thomas (cd $testroot/wt2 && got rebase newbranch \
807 f4a34a66 2022-04-16 thomas > $testroot/stdout 2> $testroot/stderr)
808 f4a34a66 2022-04-16 thomas
809 f4a34a66 2022-04-16 thomas (cd $testroot/repo && git checkout -q newbranch)
810 f4a34a66 2022-04-16 thomas local new_commit1=`git_show_parent_commit $testroot/repo`
811 f4a34a66 2022-04-16 thomas local new_commit2=`git_show_head $testroot/repo`
812 f4a34a66 2022-04-16 thomas
813 f4a34a66 2022-04-16 thomas local short_orig_commit2=`trim_obj_id 28 $orig_commit2`
814 f4a34a66 2022-04-16 thomas local short_new_commit2=`trim_obj_id 28 $new_commit2`
815 f4a34a66 2022-04-16 thomas
816 f4a34a66 2022-04-16 thomas echo "G gamma/delta" > $testroot/stdout.expected
817 f4a34a66 2022-04-16 thomas echo -n "$short_orig_commit2 -> $short_new_commit2" \
818 f4a34a66 2022-04-16 thomas >> $testroot/stdout.expected
819 f4a34a66 2022-04-16 thomas echo ": committing to delta on newbranch" \
820 f4a34a66 2022-04-16 thomas >> $testroot/stdout.expected
821 f4a34a66 2022-04-16 thomas echo "Switching work tree to refs/heads/newbranch" \
822 f4a34a66 2022-04-16 thomas >> $testroot/stdout.expected
823 f4a34a66 2022-04-16 thomas
824 f4a34a66 2022-04-16 thomas cmp -s $testroot/stdout.expected $testroot/stdout
825 f4a34a66 2022-04-16 thomas ret=$?
826 f4a34a66 2022-04-16 thomas if [ $ret -ne 0 ]; then
827 f4a34a66 2022-04-16 thomas diff -u $testroot/stdout.expected $testroot/stdout
828 f4a34a66 2022-04-16 thomas test_done "$testroot" "$ret"
829 f4a34a66 2022-04-16 thomas return 1
830 787c8eb6 2019-07-11 stsp fi
831 f4a34a66 2022-04-16 thomas
832 f4a34a66 2022-04-16 thomas # the first work tree should remain usable
833 f4a34a66 2022-04-16 thomas (cd $testroot/wt && got update -b master \
834 f4a34a66 2022-04-16 thomas > $testroot/stdout 2> $testroot/stderr)
835 f4a34a66 2022-04-16 thomas ret=$?
836 f4a34a66 2022-04-16 thomas if [ $ret -ne 0 ]; then
837 f4a34a66 2022-04-16 thomas echo "update failed unexpectedly" >&2
838 f4a34a66 2022-04-16 thomas test_done "$testroot" "1"
839 f4a34a66 2022-04-16 thomas return 1
840 f4a34a66 2022-04-16 thomas fi
841 f4a34a66 2022-04-16 thomas
842 f4a34a66 2022-04-16 thomas echo 'Already up-to-date' > $testroot/stdout.expected
843 f4a34a66 2022-04-16 thomas cmp -s $testroot/stdout.expected $testroot/stdout
844 f4a34a66 2022-04-16 thomas ret=$?
845 f4a34a66 2022-04-16 thomas if [ $ret -ne 0 ]; then
846 f4a34a66 2022-04-16 thomas diff -u $testroot/stdout.expected $testroot/stdout
847 f4a34a66 2022-04-16 thomas fi
848 787c8eb6 2019-07-11 stsp test_done "$testroot" "$ret"
849 787c8eb6 2019-07-11 stsp }
850 787c8eb6 2019-07-11 stsp
851 f6cae3ed 2020-09-13 naddy test_rebase_preserves_logmsg() {
852 787c8eb6 2019-07-11 stsp local testroot=`test_init rebase_preserves_logmsg`
853 787c8eb6 2019-07-11 stsp
854 787c8eb6 2019-07-11 stsp (cd $testroot/repo && git checkout -q -b newbranch)
855 787c8eb6 2019-07-11 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
856 787c8eb6 2019-07-11 stsp git_commit $testroot/repo -m "modified delta on newbranch"
857 787c8eb6 2019-07-11 stsp
858 787c8eb6 2019-07-11 stsp echo "modified alpha on branch" > $testroot/repo/alpha
859 787c8eb6 2019-07-11 stsp git_commit $testroot/repo -m "modified alpha on newbranch"
860 787c8eb6 2019-07-11 stsp
861 787c8eb6 2019-07-11 stsp (cd $testroot/repo && got log -c newbranch -l2 | grep -v ^date: \
862 787c8eb6 2019-07-11 stsp > $testroot/log.expected)
863 787c8eb6 2019-07-11 stsp
864 787c8eb6 2019-07-11 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
865 787c8eb6 2019-07-11 stsp local orig_commit2=`git_show_head $testroot/repo`
866 787c8eb6 2019-07-11 stsp
867 787c8eb6 2019-07-11 stsp (cd $testroot/repo && git checkout -q master)
868 787c8eb6 2019-07-11 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
869 787c8eb6 2019-07-11 stsp git_commit $testroot/repo -m "committing to zeta on master"
870 787c8eb6 2019-07-11 stsp local master_commit=`git_show_head $testroot/repo`
871 787c8eb6 2019-07-11 stsp
872 787c8eb6 2019-07-11 stsp got checkout $testroot/repo $testroot/wt > /dev/null
873 fc414659 2022-04-16 thomas ret=$?
874 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
875 787c8eb6 2019-07-11 stsp test_done "$testroot" "$ret"
876 787c8eb6 2019-07-11 stsp return 1
877 787c8eb6 2019-07-11 stsp fi
878 787c8eb6 2019-07-11 stsp
879 787c8eb6 2019-07-11 stsp (cd $testroot/wt && got rebase newbranch > /dev/null \
880 787c8eb6 2019-07-11 stsp 2> $testroot/stderr)
881 787c8eb6 2019-07-11 stsp
882 787c8eb6 2019-07-11 stsp (cd $testroot/repo && git checkout -q newbranch)
883 787c8eb6 2019-07-11 stsp local new_commit1=`git_show_parent_commit $testroot/repo`
884 787c8eb6 2019-07-11 stsp local new_commit2=`git_show_head $testroot/repo`
885 787c8eb6 2019-07-11 stsp
886 787c8eb6 2019-07-11 stsp echo -n > $testroot/stderr.expected
887 64c6d990 2019-07-11 stsp cmp -s $testroot/stderr.expected $testroot/stderr
888 fc414659 2022-04-16 thomas ret=$?
889 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
890 64c6d990 2019-07-11 stsp diff -u $testroot/stderr.expected $testroot/stderr
891 787c8eb6 2019-07-11 stsp test_done "$testroot" "$ret"
892 787c8eb6 2019-07-11 stsp return 1
893 64c6d990 2019-07-11 stsp fi
894 787c8eb6 2019-07-11 stsp
895 787c8eb6 2019-07-11 stsp (cd $testroot/wt && got log -c newbranch -l2 | grep -v ^date: \
896 787c8eb6 2019-07-11 stsp > $testroot/log)
897 787c8eb6 2019-07-11 stsp sed -i -e "s/$orig_commit1/$new_commit1/" $testroot/log.expected
898 787c8eb6 2019-07-11 stsp sed -i -e "s/$orig_commit2/$new_commit2/" $testroot/log.expected
899 787c8eb6 2019-07-11 stsp cmp -s $testroot/log.expected $testroot/log
900 fc414659 2022-04-16 thomas ret=$?
901 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
902 787c8eb6 2019-07-11 stsp diff -u $testroot/log.expected $testroot/log
903 fc66b545 2019-08-12 stsp fi
904 fc66b545 2019-08-12 stsp
905 fc66b545 2019-08-12 stsp test_done "$testroot" "$ret"
906 fc66b545 2019-08-12 stsp }
907 fc66b545 2019-08-12 stsp
908 f6cae3ed 2020-09-13 naddy test_rebase_no_commits_to_rebase() {
909 fc66b545 2019-08-12 stsp local testroot=`test_init rebase_no_commits_to_rebase`
910 fc66b545 2019-08-12 stsp
911 fc66b545 2019-08-12 stsp got checkout $testroot/repo $testroot/wt > /dev/null
912 fc414659 2022-04-16 thomas ret=$?
913 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
914 fc66b545 2019-08-12 stsp test_done "$testroot" "$ret"
915 fc66b545 2019-08-12 stsp return 1
916 fc66b545 2019-08-12 stsp fi
917 fc66b545 2019-08-12 stsp
918 da76fce2 2020-02-24 stsp (cd $testroot/wt && got branch -n newbranch)
919 fc66b545 2019-08-12 stsp
920 fc66b545 2019-08-12 stsp echo "modified alpha on master" > $testroot/wt/alpha
921 fc66b545 2019-08-12 stsp (cd $testroot/wt && got commit -m 'test rebase_no_commits_to_rebase' \
922 fc66b545 2019-08-12 stsp > /dev/null)
923 fc66b545 2019-08-12 stsp (cd $testroot/wt && got update > /dev/null)
924 fc66b545 2019-08-12 stsp
925 fc66b545 2019-08-12 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
926 fc66b545 2019-08-12 stsp 2> $testroot/stderr)
927 fc66b545 2019-08-12 stsp
928 fc66b545 2019-08-12 stsp echo "got: no commits to rebase" > $testroot/stderr.expected
929 fc66b545 2019-08-12 stsp cmp -s $testroot/stderr.expected $testroot/stderr
930 fc414659 2022-04-16 thomas ret=$?
931 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
932 fc66b545 2019-08-12 stsp diff -u $testroot/stderr.expected $testroot/stderr
933 fc66b545 2019-08-12 stsp test_done "$testroot" "$ret"
934 fc66b545 2019-08-12 stsp return 1
935 787c8eb6 2019-07-11 stsp fi
936 787c8eb6 2019-07-11 stsp
937 f4a34a66 2022-04-16 thomas echo -n > $testroot/stdout.expected
938 fc66b545 2019-08-12 stsp cmp -s $testroot/stdout.expected $testroot/stdout
939 fc414659 2022-04-16 thomas ret=$?
940 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
941 fc66b545 2019-08-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
942 fc66b545 2019-08-12 stsp test_done "$testroot" "$ret"
943 fc66b545 2019-08-12 stsp return 1
944 fc66b545 2019-08-12 stsp fi
945 fc66b545 2019-08-12 stsp
946 fc66b545 2019-08-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
947 fc66b545 2019-08-12 stsp echo "Already up-to-date" > $testroot/stdout.expected
948 fc66b545 2019-08-12 stsp cmp -s $testroot/stdout.expected $testroot/stdout
949 fc414659 2022-04-16 thomas ret=$?
950 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
951 fc66b545 2019-08-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
952 fc66b545 2019-08-12 stsp fi
953 ff0d2220 2019-07-11 stsp test_done "$testroot" "$ret"
954 ff0d2220 2019-07-11 stsp }
955 38b0338b 2019-11-29 stsp
956 f6cae3ed 2020-09-13 naddy test_rebase_forward() {
957 38b0338b 2019-11-29 stsp local testroot=`test_init rebase_forward`
958 38b0338b 2019-11-29 stsp local commit0=`git_show_head $testroot/repo`
959 38b0338b 2019-11-29 stsp
960 38b0338b 2019-11-29 stsp got checkout $testroot/repo $testroot/wt > /dev/null
961 fc414659 2022-04-16 thomas ret=$?
962 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
963 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
964 38b0338b 2019-11-29 stsp return 1
965 38b0338b 2019-11-29 stsp fi
966 38b0338b 2019-11-29 stsp
967 38b0338b 2019-11-29 stsp echo "change alpha 1" > $testroot/wt/alpha
968 38b0338b 2019-11-29 stsp (cd $testroot/wt && got commit -m 'test rebase_forward' \
969 38b0338b 2019-11-29 stsp > /dev/null)
970 38b0338b 2019-11-29 stsp local commit1=`git_show_head $testroot/repo`
971 ff0d2220 2019-07-11 stsp
972 38b0338b 2019-11-29 stsp echo "change alpha 2" > $testroot/wt/alpha
973 38b0338b 2019-11-29 stsp (cd $testroot/wt && got commit -m 'test rebase_forward' \
974 38b0338b 2019-11-29 stsp > /dev/null)
975 38b0338b 2019-11-29 stsp local commit2=`git_show_head $testroot/repo`
976 38b0338b 2019-11-29 stsp
977 38b0338b 2019-11-29 stsp # Simulate a situation where fast-forward is required.
978 38b0338b 2019-11-29 stsp # We want to fast-forward master to origin/master:
979 38b0338b 2019-11-29 stsp # commit 3907e11dceaae2ca7f8db79c2af31794673945ad (origin/master)
980 38b0338b 2019-11-29 stsp # commit ffcffcd102cf1af6572fbdbb4cf07a0f1fd2d840 (master)
981 38b0338b 2019-11-29 stsp # commit 87a6a8a2263a15b61c016ff1720b24741d455eb5
982 993f033b 2021-07-16 stsp (cd $testroot/repo && got ref -d master >/dev/null)
983 e31abbf2 2020-03-22 stsp (cd $testroot/repo && got ref -c $commit1 refs/heads/master)
984 e31abbf2 2020-03-22 stsp (cd $testroot/repo && got ref -c $commit2 refs/remotes/origin/master)
985 38b0338b 2019-11-29 stsp
986 38b0338b 2019-11-29 stsp (cd $testroot/wt && got up -b origin/master > /dev/null)
987 38b0338b 2019-11-29 stsp
988 38b0338b 2019-11-29 stsp (cd $testroot/wt && got rebase master \
989 38b0338b 2019-11-29 stsp > $testroot/stdout 2> $testroot/stderr)
990 38b0338b 2019-11-29 stsp
991 38b0338b 2019-11-29 stsp echo "Forwarding refs/heads/master to commit $commit2" \
992 38b0338b 2019-11-29 stsp > $testroot/stdout.expected
993 38b0338b 2019-11-29 stsp echo "Switching work tree to refs/heads/master" \
994 38b0338b 2019-11-29 stsp >> $testroot/stdout.expected
995 38b0338b 2019-11-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
996 fc414659 2022-04-16 thomas ret=$?
997 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
998 38b0338b 2019-11-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
999 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
1000 38b0338b 2019-11-29 stsp return 1
1001 38b0338b 2019-11-29 stsp fi
1002 38b0338b 2019-11-29 stsp
1003 38b0338b 2019-11-29 stsp # Ensure that rebase operation was completed correctly
1004 38b0338b 2019-11-29 stsp (cd $testroot/wt && got rebase -a \
1005 38b0338b 2019-11-29 stsp > $testroot/stdout 2> $testroot/stderr)
1006 38b0338b 2019-11-29 stsp echo -n "" > $testroot/stdout.expected
1007 38b0338b 2019-11-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1008 fc414659 2022-04-16 thomas ret=$?
1009 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1010 38b0338b 2019-11-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
1011 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
1012 38b0338b 2019-11-29 stsp return 1
1013 38b0338b 2019-11-29 stsp fi
1014 38b0338b 2019-11-29 stsp echo "got: rebase operation not in progress" > $testroot/stderr.expected
1015 38b0338b 2019-11-29 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1016 fc414659 2022-04-16 thomas ret=$?
1017 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1018 38b0338b 2019-11-29 stsp diff -u $testroot/stderr.expected $testroot/stderr
1019 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
1020 38b0338b 2019-11-29 stsp return 1
1021 38b0338b 2019-11-29 stsp fi
1022 38b0338b 2019-11-29 stsp
1023 da76fce2 2020-02-24 stsp (cd $testroot/wt && got branch -n > $testroot/stdout)
1024 38b0338b 2019-11-29 stsp echo "master" > $testroot/stdout.expected
1025 38b0338b 2019-11-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1026 fc414659 2022-04-16 thomas ret=$?
1027 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1028 38b0338b 2019-11-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
1029 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
1030 38b0338b 2019-11-29 stsp return 1
1031 38b0338b 2019-11-29 stsp fi
1032 38b0338b 2019-11-29 stsp
1033 38b0338b 2019-11-29 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1034 38b0338b 2019-11-29 stsp echo "commit $commit2 (master, origin/master)" > $testroot/stdout.expected
1035 38b0338b 2019-11-29 stsp echo "commit $commit1" >> $testroot/stdout.expected
1036 38b0338b 2019-11-29 stsp echo "commit $commit0" >> $testroot/stdout.expected
1037 38b0338b 2019-11-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1038 fc414659 2022-04-16 thomas ret=$?
1039 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1040 38b0338b 2019-11-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
1041 e600f124 2021-03-21 stsp test_done "$testroot" "$ret"
1042 a9662115 2021-08-29 naddy return 1
1043 38b0338b 2019-11-29 stsp fi
1044 e600f124 2021-03-21 stsp
1045 e600f124 2021-03-21 stsp # Forward-only rebase operations should not be backed up
1046 e600f124 2021-03-21 stsp (cd $testroot/repo && got rebase -l > $testroot/stdout)
1047 e600f124 2021-03-21 stsp echo -n > $testroot/stdout.expected
1048 e600f124 2021-03-21 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1049 fc414659 2022-04-16 thomas ret=$?
1050 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1051 e600f124 2021-03-21 stsp diff -u $testroot/stdout.expected $testroot/stdout
1052 e600f124 2021-03-21 stsp fi
1053 38b0338b 2019-11-29 stsp test_done "$testroot" "$ret"
1054 38b0338b 2019-11-29 stsp }
1055 e51d7b55 2020-01-04 stsp
1056 f6cae3ed 2020-09-13 naddy test_rebase_out_of_date() {
1057 e51d7b55 2020-01-04 stsp local testroot=`test_init rebase_out_of_date`
1058 e51d7b55 2020-01-04 stsp local initial_commit=`git_show_head $testroot/repo`
1059 e51d7b55 2020-01-04 stsp
1060 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git checkout -q -b newbranch)
1061 e51d7b55 2020-01-04 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
1062 e51d7b55 2020-01-04 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
1063 38b0338b 2019-11-29 stsp
1064 e51d7b55 2020-01-04 stsp echo "modified alpha on branch" > $testroot/repo/alpha
1065 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git rm -q beta)
1066 e51d7b55 2020-01-04 stsp echo "new file on branch" > $testroot/repo/epsilon/new
1067 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git add epsilon/new)
1068 e51d7b55 2020-01-04 stsp git_commit $testroot/repo -m "committing more changes on newbranch"
1069 e51d7b55 2020-01-04 stsp
1070 e51d7b55 2020-01-04 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
1071 e51d7b55 2020-01-04 stsp local orig_commit2=`git_show_head $testroot/repo`
1072 e51d7b55 2020-01-04 stsp
1073 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git checkout -q master)
1074 e51d7b55 2020-01-04 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
1075 e51d7b55 2020-01-04 stsp git_commit $testroot/repo -m "committing to zeta on master"
1076 e51d7b55 2020-01-04 stsp local master_commit1=`git_show_head $testroot/repo`
1077 e51d7b55 2020-01-04 stsp
1078 e51d7b55 2020-01-04 stsp (cd $testroot/repo && git checkout -q master)
1079 e51d7b55 2020-01-04 stsp echo "modified beta on master" > $testroot/repo/beta
1080 e51d7b55 2020-01-04 stsp git_commit $testroot/repo -m "committing to beta on master"
1081 e51d7b55 2020-01-04 stsp local master_commit2=`git_show_head $testroot/repo`
1082 e51d7b55 2020-01-04 stsp
1083 e51d7b55 2020-01-04 stsp got checkout -c $master_commit1 $testroot/repo $testroot/wt \
1084 e51d7b55 2020-01-04 stsp > /dev/null
1085 fc414659 2022-04-16 thomas ret=$?
1086 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1087 e51d7b55 2020-01-04 stsp test_done "$testroot" "$ret"
1088 e51d7b55 2020-01-04 stsp return 1
1089 e51d7b55 2020-01-04 stsp fi
1090 e51d7b55 2020-01-04 stsp
1091 e51d7b55 2020-01-04 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
1092 e51d7b55 2020-01-04 stsp 2> $testroot/stderr)
1093 e51d7b55 2020-01-04 stsp
1094 e51d7b55 2020-01-04 stsp echo -n > $testroot/stdout.expected
1095 e51d7b55 2020-01-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1096 fc414659 2022-04-16 thomas ret=$?
1097 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1098 e51d7b55 2020-01-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
1099 e51d7b55 2020-01-04 stsp test_done "$testroot" "$ret"
1100 e51d7b55 2020-01-04 stsp return 1
1101 e51d7b55 2020-01-04 stsp fi
1102 e51d7b55 2020-01-04 stsp
1103 e51d7b55 2020-01-04 stsp echo -n "got: work tree must be updated before it can be " \
1104 e51d7b55 2020-01-04 stsp > $testroot/stderr.expected
1105 e51d7b55 2020-01-04 stsp echo "used to rebase a branch" >> $testroot/stderr.expected
1106 e51d7b55 2020-01-04 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1107 fc414659 2022-04-16 thomas ret=$?
1108 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1109 e51d7b55 2020-01-04 stsp diff -u $testroot/stderr.expected $testroot/stderr
1110 e51d7b55 2020-01-04 stsp test_done "$testroot" "$ret"
1111 e51d7b55 2020-01-04 stsp return 1
1112 e51d7b55 2020-01-04 stsp fi
1113 e51d7b55 2020-01-04 stsp
1114 e51d7b55 2020-01-04 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1115 e51d7b55 2020-01-04 stsp echo "commit $master_commit2 (master)" > $testroot/stdout.expected
1116 e51d7b55 2020-01-04 stsp echo "commit $master_commit1" >> $testroot/stdout.expected
1117 e51d7b55 2020-01-04 stsp echo "commit $initial_commit" >> $testroot/stdout.expected
1118 1ae0a341 2020-02-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1119 fc414659 2022-04-16 thomas ret=$?
1120 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1121 1ae0a341 2020-02-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1122 1ae0a341 2020-02-14 stsp fi
1123 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1124 1ae0a341 2020-02-14 stsp }
1125 1ae0a341 2020-02-14 stsp
1126 f6cae3ed 2020-09-13 naddy test_rebase_trims_empty_dir() {
1127 1ae0a341 2020-02-14 stsp local testroot=`test_init rebase_trims_empty_dir`
1128 1ae0a341 2020-02-14 stsp
1129 1ae0a341 2020-02-14 stsp (cd $testroot/repo && git checkout -q -b newbranch)
1130 1ae0a341 2020-02-14 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
1131 1ae0a341 2020-02-14 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
1132 1ae0a341 2020-02-14 stsp
1133 1ae0a341 2020-02-14 stsp (cd $testroot/repo && git rm -q epsilon/zeta)
1134 1ae0a341 2020-02-14 stsp git_commit $testroot/repo -m "removing zeta on newbranch"
1135 1ae0a341 2020-02-14 stsp
1136 1ae0a341 2020-02-14 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
1137 1ae0a341 2020-02-14 stsp local orig_commit2=`git_show_head $testroot/repo`
1138 1ae0a341 2020-02-14 stsp
1139 1ae0a341 2020-02-14 stsp (cd $testroot/repo && git checkout -q master)
1140 1ae0a341 2020-02-14 stsp echo "modified alpha on master" > $testroot/repo/alpha
1141 1ae0a341 2020-02-14 stsp git_commit $testroot/repo -m "committing to alpha on master"
1142 1ae0a341 2020-02-14 stsp local master_commit=`git_show_head $testroot/repo`
1143 1ae0a341 2020-02-14 stsp
1144 1ae0a341 2020-02-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1145 fc414659 2022-04-16 thomas ret=$?
1146 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1147 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1148 1ae0a341 2020-02-14 stsp return 1
1149 1ae0a341 2020-02-14 stsp fi
1150 1ae0a341 2020-02-14 stsp
1151 1ae0a341 2020-02-14 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout)
1152 1ae0a341 2020-02-14 stsp
1153 1ae0a341 2020-02-14 stsp (cd $testroot/repo && git checkout -q newbranch)
1154 1ae0a341 2020-02-14 stsp local new_commit1=`git_show_parent_commit $testroot/repo`
1155 1ae0a341 2020-02-14 stsp local new_commit2=`git_show_head $testroot/repo`
1156 1ae0a341 2020-02-14 stsp
1157 1ae0a341 2020-02-14 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
1158 1ae0a341 2020-02-14 stsp local short_orig_commit2=`trim_obj_id 28 $orig_commit2`
1159 1ae0a341 2020-02-14 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
1160 1ae0a341 2020-02-14 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
1161 1ae0a341 2020-02-14 stsp
1162 1ae0a341 2020-02-14 stsp echo "G gamma/delta" >> $testroot/stdout.expected
1163 1ae0a341 2020-02-14 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
1164 1ae0a341 2020-02-14 stsp >> $testroot/stdout.expected
1165 1ae0a341 2020-02-14 stsp echo ": committing to delta on newbranch" >> $testroot/stdout.expected
1166 1ae0a341 2020-02-14 stsp echo "D epsilon/zeta" >> $testroot/stdout.expected
1167 1ae0a341 2020-02-14 stsp echo -n "$short_orig_commit2 -> $short_new_commit2" \
1168 1ae0a341 2020-02-14 stsp >> $testroot/stdout.expected
1169 1ae0a341 2020-02-14 stsp echo ": removing zeta on newbranch" \
1170 1ae0a341 2020-02-14 stsp >> $testroot/stdout.expected
1171 1ae0a341 2020-02-14 stsp echo "Switching work tree to refs/heads/newbranch" \
1172 1ae0a341 2020-02-14 stsp >> $testroot/stdout.expected
1173 1ae0a341 2020-02-14 stsp
1174 e51d7b55 2020-01-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1175 fc414659 2022-04-16 thomas ret=$?
1176 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1177 e51d7b55 2020-01-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
1178 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1179 1ae0a341 2020-02-14 stsp return 1
1180 e51d7b55 2020-01-04 stsp fi
1181 1ae0a341 2020-02-14 stsp
1182 1ae0a341 2020-02-14 stsp echo "modified delta on branch" > $testroot/content.expected
1183 1ae0a341 2020-02-14 stsp cat $testroot/wt/gamma/delta > $testroot/content
1184 1ae0a341 2020-02-14 stsp cmp -s $testroot/content.expected $testroot/content
1185 fc414659 2022-04-16 thomas ret=$?
1186 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1187 1ae0a341 2020-02-14 stsp diff -u $testroot/content.expected $testroot/content
1188 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1189 1ae0a341 2020-02-14 stsp return 1
1190 1ae0a341 2020-02-14 stsp fi
1191 1ae0a341 2020-02-14 stsp
1192 1ae0a341 2020-02-14 stsp echo "modified alpha on master" > $testroot/content.expected
1193 1ae0a341 2020-02-14 stsp cat $testroot/wt/alpha > $testroot/content
1194 1ae0a341 2020-02-14 stsp cmp -s $testroot/content.expected $testroot/content
1195 fc414659 2022-04-16 thomas ret=$?
1196 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1197 1ae0a341 2020-02-14 stsp diff -u $testroot/content.expected $testroot/content
1198 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1199 1ae0a341 2020-02-14 stsp return 1
1200 1ae0a341 2020-02-14 stsp fi
1201 1ae0a341 2020-02-14 stsp
1202 1ae0a341 2020-02-14 stsp if [ -e $testroot/wt/epsilon ]; then
1203 1ae0a341 2020-02-14 stsp echo "parent of removed zeta still exists on disk" >&2
1204 1ae0a341 2020-02-14 stsp test_done "$testroot" "1"
1205 1ae0a341 2020-02-14 stsp return 1
1206 1ae0a341 2020-02-14 stsp fi
1207 1ae0a341 2020-02-14 stsp
1208 1ae0a341 2020-02-14 stsp (cd $testroot/wt && got status > $testroot/stdout)
1209 1ae0a341 2020-02-14 stsp
1210 1ae0a341 2020-02-14 stsp echo -n > $testroot/stdout.expected
1211 1ae0a341 2020-02-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1212 fc414659 2022-04-16 thomas ret=$?
1213 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1214 1ae0a341 2020-02-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1215 1ae0a341 2020-02-14 stsp test_done "$testroot" "$ret"
1216 1ae0a341 2020-02-14 stsp return 1
1217 1ae0a341 2020-02-14 stsp fi
1218 1ae0a341 2020-02-14 stsp
1219 1ae0a341 2020-02-14 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1220 1ae0a341 2020-02-14 stsp echo "commit $new_commit2 (newbranch)" > $testroot/stdout.expected
1221 1ae0a341 2020-02-14 stsp echo "commit $new_commit1" >> $testroot/stdout.expected
1222 1ae0a341 2020-02-14 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
1223 1ae0a341 2020-02-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1224 fc414659 2022-04-16 thomas ret=$?
1225 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1226 1ae0a341 2020-02-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1227 1ae0a341 2020-02-14 stsp fi
1228 e51d7b55 2020-01-04 stsp test_done "$testroot" "$ret"
1229 e51d7b55 2020-01-04 stsp }
1230 ca6da77d 2020-03-22 stsp
1231 f6cae3ed 2020-09-13 naddy test_rebase_delete_missing_file() {
1232 ca6da77d 2020-03-22 stsp local testroot=`test_init rebase_delete_missing_file`
1233 ca6da77d 2020-03-22 stsp
1234 ca6da77d 2020-03-22 stsp mkdir -p $testroot/repo/d/f/g
1235 ca6da77d 2020-03-22 stsp echo "new file" > $testroot/repo/d/f/g/new
1236 ca6da77d 2020-03-22 stsp (cd $testroot/repo && git add d/f/g/new)
1237 ca6da77d 2020-03-22 stsp git_commit $testroot/repo -m "adding a subdir"
1238 ca6da77d 2020-03-22 stsp local commit0=`git_show_head $testroot/repo`
1239 ca6da77d 2020-03-22 stsp
1240 a740a1b3 2020-03-22 stsp got br -r $testroot/repo -c master newbranch
1241 a740a1b3 2020-03-22 stsp
1242 a740a1b3 2020-03-22 stsp got checkout -b newbranch $testroot/repo $testroot/wt > /dev/null
1243 ca6da77d 2020-03-22 stsp
1244 a740a1b3 2020-03-22 stsp echo "modified delta on branch" > $testroot/wt/gamma/delta
1245 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got commit \
1246 a740a1b3 2020-03-22 stsp -m "committing to delta on newbranch" > /dev/null)
1247 ca6da77d 2020-03-22 stsp
1248 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got rm beta d/f/g/new > /dev/null)
1249 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got commit \
1250 a740a1b3 2020-03-22 stsp -m "removing beta and d/f/g/new on newbranch" > /dev/null)
1251 a740a1b3 2020-03-22 stsp
1252 a740a1b3 2020-03-22 stsp (cd $testroot/repo && git checkout -q newbranch)
1253 ca6da77d 2020-03-22 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
1254 ca6da77d 2020-03-22 stsp local orig_commit2=`git_show_head $testroot/repo`
1255 bb494413 2021-09-28 thomas
1256 bb494413 2021-09-28 thomas local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
1257 bb494413 2021-09-28 thomas local short_orig_commit2=`trim_obj_id 28 $orig_commit2`
1258 ca6da77d 2020-03-22 stsp
1259 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got update -b master > /dev/null)
1260 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got rm beta d/f/g/new > /dev/null)
1261 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got commit \
1262 a740a1b3 2020-03-22 stsp -m "removing beta and d/f/g/new on master" > /dev/null)
1263 a740a1b3 2020-03-22 stsp
1264 ca6da77d 2020-03-22 stsp (cd $testroot/repo && git checkout -q master)
1265 ca6da77d 2020-03-22 stsp local master_commit=`git_show_head $testroot/repo`
1266 ca6da77d 2020-03-22 stsp
1267 a740a1b3 2020-03-22 stsp (cd $testroot/wt && got update -b master > /dev/null)
1268 bb494413 2021-09-28 thomas (cd $testroot/wt && got rebase newbranch > $testroot/stdout \
1269 bb494413 2021-09-28 thomas 2> $testroot/stderr)
1270 fc414659 2022-04-16 thomas ret=$?
1271 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
1272 bb494413 2021-09-28 thomas echo "rebase succeeded unexpectedly" >&2
1273 bb494413 2021-09-28 thomas test_done "$testroot" "1"
1274 bb494413 2021-09-28 thomas return 1
1275 bb494413 2021-09-28 thomas fi
1276 ca6da77d 2020-03-22 stsp
1277 bb494413 2021-09-28 thomas local new_commit1=$(cd $testroot/wt && got info | \
1278 bb494413 2021-09-28 thomas grep '^work tree base commit: ' | cut -d: -f2 | tr -d ' ')
1279 ca6da77d 2020-03-22 stsp
1280 ca6da77d 2020-03-22 stsp local short_orig_commit2=`trim_obj_id 28 $orig_commit2`
1281 ca6da77d 2020-03-22 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
1282 ca6da77d 2020-03-22 stsp
1283 ca6da77d 2020-03-22 stsp echo "G gamma/delta" >> $testroot/stdout.expected
1284 ca6da77d 2020-03-22 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
1285 ca6da77d 2020-03-22 stsp >> $testroot/stdout.expected
1286 ca6da77d 2020-03-22 stsp echo ": committing to delta on newbranch" >> $testroot/stdout.expected
1287 ca6da77d 2020-03-22 stsp echo "! beta" >> $testroot/stdout.expected
1288 ca6da77d 2020-03-22 stsp echo "! d/f/g/new" >> $testroot/stdout.expected
1289 0ef68859 2021-09-28 thomas echo -n "Files which had incoming changes but could not be found " \
1290 0ef68859 2021-09-28 thomas >> $testroot/stdout.expected
1291 0ef68859 2021-09-28 thomas echo "in the work tree: 2" >> $testroot/stdout.expected
1292 bb494413 2021-09-28 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1293 fc414659 2022-04-16 thomas ret=$?
1294 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1295 bb494413 2021-09-28 thomas diff -u $testroot/stdout.expected $testroot/stdout
1296 bb494413 2021-09-28 thomas test_done "$testroot" "$ret"
1297 bb494413 2021-09-28 thomas return 1
1298 bb494413 2021-09-28 thomas fi
1299 bb494413 2021-09-28 thomas
1300 bb494413 2021-09-28 thomas echo -n "got: changes destined for some files were not yet merged " \
1301 bb494413 2021-09-28 thomas > $testroot/stderr.expected
1302 bb494413 2021-09-28 thomas echo -n "and should be merged manually if required before the " \
1303 bb494413 2021-09-28 thomas >> $testroot/stderr.expected
1304 bb494413 2021-09-28 thomas echo "rebase operation is continued" >> $testroot/stderr.expected
1305 bb494413 2021-09-28 thomas cmp -s $testroot/stderr.expected $testroot/stderr
1306 fc414659 2022-04-16 thomas ret=$?
1307 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1308 bb494413 2021-09-28 thomas diff -u $testroot/stderr.expected $testroot/stderr
1309 bb494413 2021-09-28 thomas test_done "$testroot" "$ret"
1310 bb494413 2021-09-28 thomas return 1
1311 bb494413 2021-09-28 thomas fi
1312 bb494413 2021-09-28 thomas
1313 bb494413 2021-09-28 thomas # ignore the missing changes and continue
1314 bb494413 2021-09-28 thomas (cd $testroot/wt && got rebase -c > $testroot/stdout)
1315 fc414659 2022-04-16 thomas ret=$?
1316 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1317 bb494413 2021-09-28 thomas echo "rebase failed unexpectedly" >&2
1318 bb494413 2021-09-28 thomas test_done "$testroot" "1"
1319 bb494413 2021-09-28 thomas return 1
1320 bb494413 2021-09-28 thomas fi
1321 ca6da77d 2020-03-22 stsp echo -n "$short_orig_commit2 -> no-op change" \
1322 bb494413 2021-09-28 thomas > $testroot/stdout.expected
1323 a740a1b3 2020-03-22 stsp echo ": removing beta and d/f/g/new on newbranch" \
1324 ca6da77d 2020-03-22 stsp >> $testroot/stdout.expected
1325 ca6da77d 2020-03-22 stsp echo "Switching work tree to refs/heads/newbranch" \
1326 ca6da77d 2020-03-22 stsp >> $testroot/stdout.expected
1327 ca6da77d 2020-03-22 stsp
1328 ca6da77d 2020-03-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1329 fc414659 2022-04-16 thomas ret=$?
1330 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1331 ca6da77d 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1332 ca6da77d 2020-03-22 stsp test_done "$testroot" "$ret"
1333 ca6da77d 2020-03-22 stsp return 1
1334 ca6da77d 2020-03-22 stsp fi
1335 ca6da77d 2020-03-22 stsp
1336 ca6da77d 2020-03-22 stsp echo "modified delta on branch" > $testroot/content.expected
1337 ca6da77d 2020-03-22 stsp cat $testroot/wt/gamma/delta > $testroot/content
1338 ca6da77d 2020-03-22 stsp cmp -s $testroot/content.expected $testroot/content
1339 fc414659 2022-04-16 thomas ret=$?
1340 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1341 ca6da77d 2020-03-22 stsp diff -u $testroot/content.expected $testroot/content
1342 ca6da77d 2020-03-22 stsp test_done "$testroot" "$ret"
1343 ca6da77d 2020-03-22 stsp return 1
1344 ca6da77d 2020-03-22 stsp fi
1345 ca6da77d 2020-03-22 stsp
1346 ca6da77d 2020-03-22 stsp if [ -e $testroot/wt/beta ]; then
1347 ca6da77d 2020-03-22 stsp echo "removed file beta still exists on disk" >&2
1348 ca6da77d 2020-03-22 stsp test_done "$testroot" "1"
1349 ca6da77d 2020-03-22 stsp return 1
1350 ca6da77d 2020-03-22 stsp fi
1351 ca6da77d 2020-03-22 stsp
1352 ca6da77d 2020-03-22 stsp (cd $testroot/wt && got status > $testroot/stdout)
1353 ca6da77d 2020-03-22 stsp
1354 ca6da77d 2020-03-22 stsp echo -n > $testroot/stdout.expected
1355 ca6da77d 2020-03-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1356 fc414659 2022-04-16 thomas ret=$?
1357 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1358 ca6da77d 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1359 ca6da77d 2020-03-22 stsp test_done "$testroot" "$ret"
1360 ca6da77d 2020-03-22 stsp return 1
1361 ca6da77d 2020-03-22 stsp fi
1362 ca6da77d 2020-03-22 stsp
1363 bb494413 2021-09-28 thomas (cd $testroot/repo && git checkout -q newbranch)
1364 bb494413 2021-09-28 thomas local new_commit1=`git_show_head $testroot/repo`
1365 bb494413 2021-09-28 thomas local short_new_commit1=`trim_obj_id 28 $new_commit1`
1366 bb494413 2021-09-28 thomas
1367 ca6da77d 2020-03-22 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1368 ca6da77d 2020-03-22 stsp echo "commit $new_commit1 (newbranch)" > $testroot/stdout.expected
1369 ca6da77d 2020-03-22 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
1370 ca6da77d 2020-03-22 stsp echo "commit $commit0" >> $testroot/stdout.expected
1371 70551d57 2020-04-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1372 fc414659 2022-04-16 thomas ret=$?
1373 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1374 70551d57 2020-04-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
1375 70551d57 2020-04-24 stsp fi
1376 70551d57 2020-04-24 stsp test_done "$testroot" "$ret"
1377 70551d57 2020-04-24 stsp }
1378 70551d57 2020-04-24 stsp
1379 f6cae3ed 2020-09-13 naddy test_rebase_rm_add_rm_file() {
1380 70551d57 2020-04-24 stsp local testroot=`test_init rebase_rm_add_rm_file`
1381 70551d57 2020-04-24 stsp
1382 70551d57 2020-04-24 stsp (cd $testroot/repo && git checkout -q -b newbranch)
1383 70551d57 2020-04-24 stsp (cd $testroot/repo && git rm -q beta)
1384 70551d57 2020-04-24 stsp git_commit $testroot/repo -m "removing beta from newbranch"
1385 70551d57 2020-04-24 stsp local orig_commit1=`git_show_head $testroot/repo`
1386 70551d57 2020-04-24 stsp
1387 70551d57 2020-04-24 stsp echo 'restored beta' > $testroot/repo/beta
1388 70551d57 2020-04-24 stsp (cd $testroot/repo && git add beta)
1389 70551d57 2020-04-24 stsp git_commit $testroot/repo -m "restoring beta on newbranch"
1390 70551d57 2020-04-24 stsp local orig_commit2=`git_show_head $testroot/repo`
1391 70551d57 2020-04-24 stsp
1392 70551d57 2020-04-24 stsp (cd $testroot/repo && git rm -q beta)
1393 70551d57 2020-04-24 stsp git_commit $testroot/repo -m "removing beta from newbranch again"
1394 70551d57 2020-04-24 stsp local orig_commit3=`git_show_head $testroot/repo`
1395 70551d57 2020-04-24 stsp
1396 70551d57 2020-04-24 stsp (cd $testroot/repo && git checkout -q master)
1397 70551d57 2020-04-24 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
1398 70551d57 2020-04-24 stsp git_commit $testroot/repo -m "committing to zeta on master"
1399 70551d57 2020-04-24 stsp local master_commit=`git_show_head $testroot/repo`
1400 70551d57 2020-04-24 stsp
1401 70551d57 2020-04-24 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1402 fc414659 2022-04-16 thomas ret=$?
1403 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1404 70551d57 2020-04-24 stsp test_done "$testroot" "$ret"
1405 70551d57 2020-04-24 stsp return 1
1406 70551d57 2020-04-24 stsp fi
1407 70551d57 2020-04-24 stsp
1408 70551d57 2020-04-24 stsp (cd $testroot/wt && got rebase newbranch > $testroot/stdout)
1409 70551d57 2020-04-24 stsp
1410 70551d57 2020-04-24 stsp # this would error out with 'got: file index is corrupt'
1411 70551d57 2020-04-24 stsp (cd $testroot/wt && got status > /dev/null)
1412 fc414659 2022-04-16 thomas ret=$?
1413 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1414 70551d57 2020-04-24 stsp echo "got status command failed unexpectedly" >&2
1415 70551d57 2020-04-24 stsp test_done "$testroot" "$ret"
1416 70551d57 2020-04-24 stsp return 1
1417 70551d57 2020-04-24 stsp fi
1418 70551d57 2020-04-24 stsp
1419 70551d57 2020-04-24 stsp (cd $testroot/repo && git checkout -q newbranch)
1420 70551d57 2020-04-24 stsp local new_commit3=`git_show_head $testroot/repo`
1421 70551d57 2020-04-24 stsp local new_commit2=`git_show_parent_commit $testroot/repo`
1422 70551d57 2020-04-24 stsp local new_commit1=`git_show_parent_commit $testroot/repo $new_commit2`
1423 70551d57 2020-04-24 stsp
1424 70551d57 2020-04-24 stsp (cd $testroot/repo && git checkout -q newbranch)
1425 70551d57 2020-04-24 stsp
1426 70551d57 2020-04-24 stsp local short_orig_commit1=`trim_obj_id 28 $orig_commit1`
1427 70551d57 2020-04-24 stsp local short_orig_commit2=`trim_obj_id 28 $orig_commit2`
1428 70551d57 2020-04-24 stsp local short_orig_commit3=`trim_obj_id 28 $orig_commit3`
1429 70551d57 2020-04-24 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
1430 70551d57 2020-04-24 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
1431 70551d57 2020-04-24 stsp local short_new_commit3=`trim_obj_id 28 $new_commit3`
1432 70551d57 2020-04-24 stsp
1433 70551d57 2020-04-24 stsp echo "D beta" > $testroot/stdout.expected
1434 70551d57 2020-04-24 stsp echo -n "$short_orig_commit1 -> $short_new_commit1" \
1435 70551d57 2020-04-24 stsp >> $testroot/stdout.expected
1436 70551d57 2020-04-24 stsp echo ": removing beta from newbranch" >> $testroot/stdout.expected
1437 70551d57 2020-04-24 stsp echo "A beta" >> $testroot/stdout.expected
1438 70551d57 2020-04-24 stsp echo -n "$short_orig_commit2 -> $short_new_commit2" \
1439 70551d57 2020-04-24 stsp >> $testroot/stdout.expected
1440 70551d57 2020-04-24 stsp echo ": restoring beta on newbranch" >> $testroot/stdout.expected
1441 70551d57 2020-04-24 stsp echo "D beta" >> $testroot/stdout.expected
1442 70551d57 2020-04-24 stsp echo -n "$short_orig_commit3 -> $short_new_commit3" \
1443 70551d57 2020-04-24 stsp >> $testroot/stdout.expected
1444 70551d57 2020-04-24 stsp echo ": removing beta from newbranch again" >> $testroot/stdout.expected
1445 70551d57 2020-04-24 stsp echo "Switching work tree to refs/heads/newbranch" \
1446 70551d57 2020-04-24 stsp >> $testroot/stdout.expected
1447 70551d57 2020-04-24 stsp
1448 ca6da77d 2020-03-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1449 fc414659 2022-04-16 thomas ret=$?
1450 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1451 ca6da77d 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1452 70551d57 2020-04-24 stsp test_done "$testroot" "$ret"
1453 70551d57 2020-04-24 stsp return 1
1454 ca6da77d 2020-03-22 stsp fi
1455 70551d57 2020-04-24 stsp
1456 70551d57 2020-04-24 stsp (cd $testroot/wt && got status > $testroot/stdout)
1457 fc414659 2022-04-16 thomas ret=$?
1458 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1459 70551d57 2020-04-24 stsp echo "got status command failed unexpectedly" >&2
1460 70551d57 2020-04-24 stsp test_done "$testroot" "$ret"
1461 70551d57 2020-04-24 stsp return 1
1462 70551d57 2020-04-24 stsp fi
1463 70551d57 2020-04-24 stsp
1464 70551d57 2020-04-24 stsp echo -n > $testroot/stdout.expected
1465 70551d57 2020-04-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1466 fc414659 2022-04-16 thomas ret=$?
1467 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1468 70551d57 2020-04-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
1469 70551d57 2020-04-24 stsp test_done "$testroot" "$ret"
1470 70551d57 2020-04-24 stsp return 1
1471 70551d57 2020-04-24 stsp fi
1472 70551d57 2020-04-24 stsp
1473 70551d57 2020-04-24 stsp (cd $testroot/wt && got log -l4 | grep ^commit > $testroot/stdout)
1474 70551d57 2020-04-24 stsp echo "commit $new_commit3 (newbranch)" > $testroot/stdout.expected
1475 70551d57 2020-04-24 stsp echo "commit $new_commit2" >> $testroot/stdout.expected
1476 70551d57 2020-04-24 stsp echo "commit $new_commit1" >> $testroot/stdout.expected
1477 70551d57 2020-04-24 stsp echo "commit $master_commit (master)" >> $testroot/stdout.expected
1478 70551d57 2020-04-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1479 fc414659 2022-04-16 thomas ret=$?
1480 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1481 70551d57 2020-04-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
1482 70551d57 2020-04-24 stsp fi
1483 ca6da77d 2020-03-22 stsp test_done "$testroot" "$ret"
1484 ca6da77d 2020-03-22 stsp }
1485 ca6da77d 2020-03-22 stsp
1486 7fb414ae 2020-08-08 stsp test_parseargs "$@"
1487 dcf44d04 2019-07-11 stsp run_test test_rebase_basic
1488 dcf44d04 2019-07-11 stsp run_test test_rebase_ancestry_check
1489 dcf44d04 2019-07-11 stsp run_test test_rebase_continue
1490 dcf44d04 2019-07-11 stsp run_test test_rebase_abort
1491 ff0d2220 2019-07-11 stsp run_test test_rebase_no_op_change
1492 7d5807f4 2019-07-11 stsp run_test test_rebase_in_progress
1493 64c6d990 2019-07-11 stsp run_test test_rebase_path_prefix
1494 787c8eb6 2019-07-11 stsp run_test test_rebase_preserves_logmsg
1495 fc66b545 2019-08-12 stsp run_test test_rebase_no_commits_to_rebase
1496 38b0338b 2019-11-29 stsp run_test test_rebase_forward
1497 e51d7b55 2020-01-04 stsp run_test test_rebase_out_of_date
1498 1ae0a341 2020-02-14 stsp run_test test_rebase_trims_empty_dir
1499 ca6da77d 2020-03-22 stsp run_test test_rebase_delete_missing_file
1500 70551d57 2020-04-24 stsp run_test test_rebase_rm_add_rm_file