Blame


1 10604dce 2021-09-24 thomas #!/bin/sh
2 10604dce 2021-09-24 thomas #
3 10604dce 2021-09-24 thomas # Copyright (c) 2021 Stefan Sperling <stsp@openbsd.org>
4 10604dce 2021-09-24 thomas #
5 10604dce 2021-09-24 thomas # Permission to use, copy, modify, and distribute this software for any
6 10604dce 2021-09-24 thomas # purpose with or without fee is hereby granted, provided that the above
7 10604dce 2021-09-24 thomas # copyright notice and this permission notice appear in all copies.
8 10604dce 2021-09-24 thomas #
9 10604dce 2021-09-24 thomas # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 10604dce 2021-09-24 thomas # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 10604dce 2021-09-24 thomas # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 10604dce 2021-09-24 thomas # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 10604dce 2021-09-24 thomas # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 10604dce 2021-09-24 thomas # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 10604dce 2021-09-24 thomas # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 10604dce 2021-09-24 thomas
17 10604dce 2021-09-24 thomas . ./common.sh
18 10604dce 2021-09-24 thomas
19 10604dce 2021-09-24 thomas test_merge_basic() {
20 10604dce 2021-09-24 thomas local testroot=`test_init merge_basic`
21 10604dce 2021-09-24 thomas local commit0=`git_show_head $testroot/repo`
22 10604dce 2021-09-24 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
23 10604dce 2021-09-24 thomas
24 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q -b newbranch)
25 10604dce 2021-09-24 thomas echo "modified delta on branch" > $testroot/repo/gamma/delta
26 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to delta on newbranch"
27 10604dce 2021-09-24 thomas local branch_commit0=`git_show_branch_head $testroot/repo newbranch`
28 10604dce 2021-09-24 thomas
29 10604dce 2021-09-24 thomas echo "modified alpha on branch" > $testroot/repo/alpha
30 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on newbranch"
31 10604dce 2021-09-24 thomas local branch_commit1=`git_show_branch_head $testroot/repo newbranch`
32 10604dce 2021-09-24 thomas (cd $testroot/repo && git rm -q beta)
33 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "removing beta on newbranch"
34 10604dce 2021-09-24 thomas local branch_commit2=`git_show_branch_head $testroot/repo newbranch`
35 10604dce 2021-09-24 thomas echo "new file on branch" > $testroot/repo/epsilon/new
36 10604dce 2021-09-24 thomas (cd $testroot/repo && git add epsilon/new)
37 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "adding new file on newbranch"
38 10604dce 2021-09-24 thomas local branch_commit3=`git_show_branch_head $testroot/repo newbranch`
39 10604dce 2021-09-24 thomas (cd $testroot/repo && ln -s alpha symlink && git add symlink)
40 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "adding symlink on newbranch"
41 10604dce 2021-09-24 thomas local branch_commit4=`git_show_branch_head $testroot/repo newbranch`
42 ace90326 2021-09-27 thomas (cd $testroot/repo && ln -sf .got/bar dotgotbar.link)
43 ace90326 2021-09-27 thomas (cd $testroot/repo && git add dotgotbar.link)
44 ace90326 2021-09-27 thomas git_commit $testroot/repo -m "adding a bad symlink on newbranch"
45 ace90326 2021-09-27 thomas local branch_commit5=`git_show_branch_head $testroot/repo newbranch`
46 10604dce 2021-09-24 thomas
47 10604dce 2021-09-24 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
48 fc414659 2022-04-16 thomas ret=$?
49 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
50 10604dce 2021-09-24 thomas echo "got checkout failed unexpectedly" >&2
51 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
52 10604dce 2021-09-24 thomas return 1
53 10604dce 2021-09-24 thomas fi
54 10604dce 2021-09-24 thomas
55 b6b86fd1 2022-08-30 thomas # need a divergant commit on the main branch for 'got merge'
56 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
57 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
58 fc414659 2022-04-16 thomas ret=$?
59 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
60 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
61 10604dce 2021-09-24 thomas test_done "$testroot" "1"
62 10604dce 2021-09-24 thomas return 1
63 10604dce 2021-09-24 thomas fi
64 10604dce 2021-09-24 thomas echo -n "got: cannot create a merge commit because " \
65 10604dce 2021-09-24 thomas > $testroot/stderr.expected
66 10604dce 2021-09-24 thomas echo -n "refs/heads/newbranch is based on refs/heads/master; " \
67 10604dce 2021-09-24 thomas >> $testroot/stderr.expected
68 10604dce 2021-09-24 thomas echo -n "refs/heads/newbranch can be integrated with " \
69 10604dce 2021-09-24 thomas >> $testroot/stderr.expected
70 10604dce 2021-09-24 thomas echo "'got integrate' instead" >> $testroot/stderr.expected
71 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
72 fc414659 2022-04-16 thomas ret=$?
73 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
74 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
75 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
76 10604dce 2021-09-24 thomas return 1
77 10604dce 2021-09-24 thomas fi
78 10604dce 2021-09-24 thomas
79 10604dce 2021-09-24 thomas # create the required dirvergant commit
80 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q master)
81 10604dce 2021-09-24 thomas echo "modified zeta on master" > $testroot/repo/epsilon/zeta
82 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to zeta on master"
83 10604dce 2021-09-24 thomas local master_commit=`git_show_head $testroot/repo`
84 10604dce 2021-09-24 thomas
85 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
86 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
87 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
88 fc414659 2022-04-16 thomas ret=$?
89 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
90 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
91 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
92 10604dce 2021-09-24 thomas return 1
93 10604dce 2021-09-24 thomas fi
94 10604dce 2021-09-24 thomas echo -n "got: work tree must be updated before it can be used " \
95 10604dce 2021-09-24 thomas > $testroot/stderr.expected
96 10604dce 2021-09-24 thomas echo "to merge a branch" >> $testroot/stderr.expected
97 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
98 fc414659 2022-04-16 thomas ret=$?
99 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
100 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
101 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
102 10604dce 2021-09-24 thomas return 1
103 10604dce 2021-09-24 thomas fi
104 10604dce 2021-09-24 thomas
105 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > /dev/null)
106 fc414659 2022-04-16 thomas ret=$?
107 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
108 10604dce 2021-09-24 thomas echo "got update failed unexpectedly" >&2
109 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
110 10604dce 2021-09-24 thomas return 1
111 10604dce 2021-09-24 thomas fi
112 10604dce 2021-09-24 thomas
113 b6b86fd1 2022-08-30 thomas # must not use a mixed-commit work tree with 'got merge'
114 10604dce 2021-09-24 thomas (cd $testroot/wt && got update -c $commit0 alpha > /dev/null)
115 fc414659 2022-04-16 thomas ret=$?
116 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
117 10604dce 2021-09-24 thomas echo "got update failed unexpectedly" >&2
118 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
119 10604dce 2021-09-24 thomas return 1
120 10604dce 2021-09-24 thomas fi
121 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
122 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
123 fc414659 2022-04-16 thomas ret=$?
124 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
125 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
126 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
127 10604dce 2021-09-24 thomas return 1
128 10604dce 2021-09-24 thomas fi
129 10604dce 2021-09-24 thomas echo -n "got: work tree contains files from multiple base commits; " \
130 10604dce 2021-09-24 thomas > $testroot/stderr.expected
131 10604dce 2021-09-24 thomas echo "the entire work tree must be updated first" \
132 10604dce 2021-09-24 thomas >> $testroot/stderr.expected
133 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
134 fc414659 2022-04-16 thomas ret=$?
135 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
136 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
137 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
138 10604dce 2021-09-24 thomas return 1
139 10604dce 2021-09-24 thomas fi
140 10604dce 2021-09-24 thomas
141 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > /dev/null)
142 fc414659 2022-04-16 thomas ret=$?
143 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
144 10604dce 2021-09-24 thomas echo "got update failed unexpectedly" >&2
145 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
146 10604dce 2021-09-24 thomas return 1
147 10604dce 2021-09-24 thomas fi
148 10604dce 2021-09-24 thomas
149 b6b86fd1 2022-08-30 thomas # must not have staged files with 'got merge'
150 10604dce 2021-09-24 thomas echo "modified file alpha" > $testroot/wt/alpha
151 10604dce 2021-09-24 thomas (cd $testroot/wt && got stage alpha > /dev/null)
152 fc414659 2022-04-16 thomas ret=$?
153 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
154 10604dce 2021-09-24 thomas echo "got stage failed unexpectedly" >&2
155 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
156 10604dce 2021-09-24 thomas return 1
157 10604dce 2021-09-24 thomas fi
158 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
159 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
160 fc414659 2022-04-16 thomas ret=$?
161 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
162 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
163 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
164 10604dce 2021-09-24 thomas return 1
165 10604dce 2021-09-24 thomas fi
166 10604dce 2021-09-24 thomas echo "got: alpha: file is staged" > $testroot/stderr.expected
167 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
168 fc414659 2022-04-16 thomas ret=$?
169 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
170 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
171 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
172 10604dce 2021-09-24 thomas return 1
173 10604dce 2021-09-24 thomas fi
174 10604dce 2021-09-24 thomas (cd $testroot/wt && got unstage alpha > /dev/null)
175 fc414659 2022-04-16 thomas ret=$?
176 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
177 10604dce 2021-09-24 thomas echo "got unstage failed unexpectedly" >&2
178 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
179 10604dce 2021-09-24 thomas return 1
180 10604dce 2021-09-24 thomas fi
181 10604dce 2021-09-24 thomas
182 b6b86fd1 2022-08-30 thomas # must not have local changes with 'got merge'
183 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
184 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
185 fc414659 2022-04-16 thomas ret=$?
186 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
187 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
188 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
189 10604dce 2021-09-24 thomas return 1
190 10604dce 2021-09-24 thomas fi
191 10604dce 2021-09-24 thomas echo -n "got: work tree contains local changes; " \
192 10604dce 2021-09-24 thomas > $testroot/stderr.expected
193 10604dce 2021-09-24 thomas echo "these changes must be committed or reverted first" \
194 10604dce 2021-09-24 thomas >> $testroot/stderr.expected
195 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
196 fc414659 2022-04-16 thomas ret=$?
197 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
198 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
199 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
200 10604dce 2021-09-24 thomas return 1
201 10604dce 2021-09-24 thomas fi
202 10604dce 2021-09-24 thomas
203 10604dce 2021-09-24 thomas (cd $testroot/wt && got revert alpha > /dev/null)
204 fc414659 2022-04-16 thomas ret=$?
205 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
206 10604dce 2021-09-24 thomas echo "got revert failed unexpectedly" >&2
207 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
208 10604dce 2021-09-24 thomas return 1
209 10604dce 2021-09-24 thomas fi
210 10604dce 2021-09-24 thomas
211 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch > $testroot/stdout)
212 fc414659 2022-04-16 thomas ret=$?
213 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
214 10604dce 2021-09-24 thomas echo "got merge failed unexpectedly" >&2
215 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
216 10604dce 2021-09-24 thomas return 1
217 10604dce 2021-09-24 thomas fi
218 10604dce 2021-09-24 thomas
219 10604dce 2021-09-24 thomas local merge_commit=`git_show_head $testroot/repo`
220 10604dce 2021-09-24 thomas
221 10604dce 2021-09-24 thomas echo "G alpha" >> $testroot/stdout.expected
222 10604dce 2021-09-24 thomas echo "D beta" >> $testroot/stdout.expected
223 ace90326 2021-09-27 thomas echo "A dotgotbar.link" >> $testroot/stdout.expected
224 10604dce 2021-09-24 thomas echo "A epsilon/new" >> $testroot/stdout.expected
225 10604dce 2021-09-24 thomas echo "G gamma/delta" >> $testroot/stdout.expected
226 10604dce 2021-09-24 thomas echo "A symlink" >> $testroot/stdout.expected
227 10604dce 2021-09-24 thomas echo -n "Merged refs/heads/newbranch into refs/heads/master: " \
228 10604dce 2021-09-24 thomas >> $testroot/stdout.expected
229 10604dce 2021-09-24 thomas echo $merge_commit >> $testroot/stdout.expected
230 10604dce 2021-09-24 thomas
231 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
232 fc414659 2022-04-16 thomas ret=$?
233 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
234 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
235 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
236 10604dce 2021-09-24 thomas return 1
237 10604dce 2021-09-24 thomas fi
238 10604dce 2021-09-24 thomas
239 10604dce 2021-09-24 thomas echo "modified delta on branch" > $testroot/content.expected
240 10604dce 2021-09-24 thomas cat $testroot/wt/gamma/delta > $testroot/content
241 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
242 fc414659 2022-04-16 thomas ret=$?
243 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
244 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
245 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
246 10604dce 2021-09-24 thomas return 1
247 10604dce 2021-09-24 thomas fi
248 10604dce 2021-09-24 thomas
249 10604dce 2021-09-24 thomas echo "modified alpha on branch" > $testroot/content.expected
250 10604dce 2021-09-24 thomas cat $testroot/wt/alpha > $testroot/content
251 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
252 fc414659 2022-04-16 thomas ret=$?
253 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
254 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
255 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
256 10604dce 2021-09-24 thomas return 1
257 10604dce 2021-09-24 thomas fi
258 10604dce 2021-09-24 thomas
259 10604dce 2021-09-24 thomas if [ -e $testroot/wt/beta ]; then
260 10604dce 2021-09-24 thomas echo "removed file beta still exists on disk" >&2
261 10604dce 2021-09-24 thomas test_done "$testroot" "1"
262 10604dce 2021-09-24 thomas return 1
263 10604dce 2021-09-24 thomas fi
264 10604dce 2021-09-24 thomas
265 10604dce 2021-09-24 thomas echo "new file on branch" > $testroot/content.expected
266 10604dce 2021-09-24 thomas cat $testroot/wt/epsilon/new > $testroot/content
267 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
268 fc414659 2022-04-16 thomas ret=$?
269 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
270 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
271 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
272 10604dce 2021-09-24 thomas return 1
273 10604dce 2021-09-24 thomas fi
274 10604dce 2021-09-24 thomas
275 ace90326 2021-09-27 thomas if [ ! -h $testroot/wt/dotgotbar.link ]; then
276 ace90326 2021-09-27 thomas echo "dotgotbar.link is not a symlink"
277 ace90326 2021-09-27 thomas test_done "$testroot" "1"
278 ace90326 2021-09-27 thomas return 1
279 ace90326 2021-09-27 thomas fi
280 ace90326 2021-09-27 thomas
281 10604dce 2021-09-24 thomas readlink $testroot/wt/symlink > $testroot/stdout
282 10604dce 2021-09-24 thomas echo "alpha" > $testroot/stdout.expected
283 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
284 fc414659 2022-04-16 thomas ret=$?
285 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
286 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
287 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
288 10604dce 2021-09-24 thomas return 1
289 10604dce 2021-09-24 thomas fi
290 10604dce 2021-09-24 thomas
291 10604dce 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
292 10604dce 2021-09-24 thomas
293 10604dce 2021-09-24 thomas echo -n > $testroot/stdout.expected
294 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
295 fc414659 2022-04-16 thomas ret=$?
296 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
297 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
298 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
299 10604dce 2021-09-24 thomas return 1
300 10604dce 2021-09-24 thomas fi
301 10604dce 2021-09-24 thomas
302 10604dce 2021-09-24 thomas (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
303 10604dce 2021-09-24 thomas echo "commit $merge_commit (master)" > $testroot/stdout.expected
304 10604dce 2021-09-24 thomas echo "commit $master_commit" >> $testroot/stdout.expected
305 10604dce 2021-09-24 thomas echo "commit $commit0" >> $testroot/stdout.expected
306 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
307 fc414659 2022-04-16 thomas ret=$?
308 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
309 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
310 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
311 10604dce 2021-09-24 thomas return 1
312 10604dce 2021-09-24 thomas fi
313 10604dce 2021-09-24 thomas
314 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > $testroot/stdout)
315 10604dce 2021-09-24 thomas
316 ace90326 2021-09-27 thomas echo 'U dotgotbar.link' > $testroot/stdout.expected
317 ace90326 2021-09-27 thomas echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
318 ace90326 2021-09-27 thomas git_show_head $testroot/repo >> $testroot/stdout.expected
319 ace90326 2021-09-27 thomas echo >> $testroot/stdout.expected
320 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
321 fc414659 2022-04-16 thomas ret=$?
322 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
323 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
324 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
325 10604dce 2021-09-24 thomas return 1
326 10604dce 2021-09-24 thomas fi
327 10604dce 2021-09-24 thomas
328 ace90326 2021-09-27 thomas # update has changed the bad symlink into a regular file
329 ace90326 2021-09-27 thomas if [ -h $testroot/wt/dotgotbar.link ]; then
330 ace90326 2021-09-27 thomas echo "dotgotbar.link is a symlink"
331 ace90326 2021-09-27 thomas test_done "$testroot" "1"
332 ace90326 2021-09-27 thomas return 1
333 ace90326 2021-09-27 thomas fi
334 ace90326 2021-09-27 thomas
335 10604dce 2021-09-24 thomas # We should have created a merge commit with two parents.
336 10604dce 2021-09-24 thomas (cd $testroot/wt && got log -l1 | grep ^parent > $testroot/stdout)
337 10604dce 2021-09-24 thomas echo "parent 1: $master_commit" > $testroot/stdout.expected
338 ace90326 2021-09-27 thomas echo "parent 2: $branch_commit5" >> $testroot/stdout.expected
339 ace90326 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
340 fc414659 2022-04-16 thomas ret=$?
341 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
342 ace90326 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
343 ace90326 2021-09-27 thomas test_done "$testroot" "$ret"
344 ace90326 2021-09-27 thomas return 1
345 ace90326 2021-09-27 thomas fi
346 ace90326 2021-09-27 thomas
347 ace90326 2021-09-27 thomas got tree -r $testroot/repo -c $merge_commit -R > $testroot/stdout
348 fc414659 2022-04-16 thomas ret=$?
349 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
350 ace90326 2021-09-27 thomas echo "got tree failed unexpectedly" >&2
351 ace90326 2021-09-27 thomas test_done "$testroot" "$ret"
352 ace90326 2021-09-27 thomas return 1
353 ace90326 2021-09-27 thomas fi
354 ace90326 2021-09-27 thomas
355 ace90326 2021-09-27 thomas # bad symlink dotgotbar.link appears as a symlink in the merge commit:
356 ace90326 2021-09-27 thomas cat > $testroot/stdout.expected <<EOF
357 ace90326 2021-09-27 thomas alpha
358 ace90326 2021-09-27 thomas dotgotbar.link@ -> .got/bar
359 ace90326 2021-09-27 thomas epsilon/
360 ace90326 2021-09-27 thomas epsilon/new
361 ace90326 2021-09-27 thomas epsilon/zeta
362 ace90326 2021-09-27 thomas gamma/
363 ace90326 2021-09-27 thomas gamma/delta
364 ace90326 2021-09-27 thomas symlink@ -> alpha
365 ace90326 2021-09-27 thomas EOF
366 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
367 fc414659 2022-04-16 thomas ret=$?
368 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
369 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
370 10604dce 2021-09-24 thomas fi
371 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
372 10604dce 2021-09-24 thomas }
373 10604dce 2021-09-24 thomas
374 10604dce 2021-09-24 thomas test_merge_continue() {
375 10604dce 2021-09-24 thomas local testroot=`test_init merge_continue`
376 10604dce 2021-09-24 thomas local commit0=`git_show_head $testroot/repo`
377 10604dce 2021-09-24 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
378 10604dce 2021-09-24 thomas
379 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q -b newbranch)
380 10604dce 2021-09-24 thomas echo "modified delta on branch" > $testroot/repo/gamma/delta
381 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to delta on newbranch"
382 10604dce 2021-09-24 thomas local branch_commit0=`git_show_branch_head $testroot/repo newbranch`
383 10604dce 2021-09-24 thomas
384 10604dce 2021-09-24 thomas echo "modified alpha on branch" > $testroot/repo/alpha
385 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on newbranch"
386 10604dce 2021-09-24 thomas local branch_commit1=`git_show_branch_head $testroot/repo newbranch`
387 10604dce 2021-09-24 thomas (cd $testroot/repo && git rm -q beta)
388 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "removing beta on newbranch"
389 10604dce 2021-09-24 thomas local branch_commit2=`git_show_branch_head $testroot/repo newbranch`
390 10604dce 2021-09-24 thomas echo "new file on branch" > $testroot/repo/epsilon/new
391 10604dce 2021-09-24 thomas (cd $testroot/repo && git add epsilon/new)
392 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "adding new file on newbranch"
393 10604dce 2021-09-24 thomas local branch_commit3=`git_show_branch_head $testroot/repo newbranch`
394 10604dce 2021-09-24 thomas
395 10604dce 2021-09-24 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
396 fc414659 2022-04-16 thomas ret=$?
397 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
398 10604dce 2021-09-24 thomas echo "got checkout failed unexpectedly" >&2
399 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
400 10604dce 2021-09-24 thomas return 1
401 10604dce 2021-09-24 thomas fi
402 10604dce 2021-09-24 thomas
403 10604dce 2021-09-24 thomas # create a conflicting commit
404 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q master)
405 10604dce 2021-09-24 thomas echo "modified alpha on master" > $testroot/repo/alpha
406 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on master"
407 10604dce 2021-09-24 thomas local master_commit=`git_show_head $testroot/repo`
408 10604dce 2021-09-24 thomas
409 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
410 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > /dev/null)
411 fc414659 2022-04-16 thomas ret=$?
412 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
413 10604dce 2021-09-24 thomas echo "got update failed unexpectedly" >&2
414 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
415 10604dce 2021-09-24 thomas return 1
416 10604dce 2021-09-24 thomas fi
417 10604dce 2021-09-24 thomas
418 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
419 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
420 fc414659 2022-04-16 thomas ret=$?
421 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
422 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
423 10604dce 2021-09-24 thomas test_done "$testroot" "1"
424 10604dce 2021-09-24 thomas return 1
425 10604dce 2021-09-24 thomas fi
426 10604dce 2021-09-24 thomas
427 10604dce 2021-09-24 thomas echo "C alpha" >> $testroot/stdout.expected
428 10604dce 2021-09-24 thomas echo "D beta" >> $testroot/stdout.expected
429 10604dce 2021-09-24 thomas echo "A epsilon/new" >> $testroot/stdout.expected
430 10604dce 2021-09-24 thomas echo "G gamma/delta" >> $testroot/stdout.expected
431 10604dce 2021-09-24 thomas echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
432 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
433 fc414659 2022-04-16 thomas ret=$?
434 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
435 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
436 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
437 10604dce 2021-09-24 thomas return 1
438 10604dce 2021-09-24 thomas fi
439 10604dce 2021-09-24 thomas
440 10604dce 2021-09-24 thomas echo "got: conflicts must be resolved before merging can continue" \
441 10604dce 2021-09-24 thomas > $testroot/stderr.expected
442 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
443 fc414659 2022-04-16 thomas ret=$?
444 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
445 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
446 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
447 10604dce 2021-09-24 thomas return 1
448 10604dce 2021-09-24 thomas fi
449 10604dce 2021-09-24 thomas
450 10604dce 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
451 10604dce 2021-09-24 thomas
452 10604dce 2021-09-24 thomas echo "C alpha" > $testroot/stdout.expected
453 10604dce 2021-09-24 thomas echo "D beta" >> $testroot/stdout.expected
454 10604dce 2021-09-24 thomas echo "A epsilon/new" >> $testroot/stdout.expected
455 10604dce 2021-09-24 thomas echo "M gamma/delta" >> $testroot/stdout.expected
456 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
457 fc414659 2022-04-16 thomas ret=$?
458 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
459 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
460 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
461 10604dce 2021-09-24 thomas return 1
462 10604dce 2021-09-24 thomas fi
463 10604dce 2021-09-24 thomas
464 10604dce 2021-09-24 thomas echo '<<<<<<<' > $testroot/content.expected
465 10604dce 2021-09-24 thomas echo "modified alpha on master" >> $testroot/content.expected
466 10604dce 2021-09-24 thomas echo "||||||| 3-way merge base: commit $commit0" \
467 10604dce 2021-09-24 thomas >> $testroot/content.expected
468 10604dce 2021-09-24 thomas echo "alpha" >> $testroot/content.expected
469 10604dce 2021-09-24 thomas echo "=======" >> $testroot/content.expected
470 10604dce 2021-09-24 thomas echo "modified alpha on branch" >> $testroot/content.expected
471 10604dce 2021-09-24 thomas echo ">>>>>>> merged change: commit $branch_commit3" \
472 10604dce 2021-09-24 thomas >> $testroot/content.expected
473 10604dce 2021-09-24 thomas cat $testroot/wt/alpha > $testroot/content
474 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
475 fc414659 2022-04-16 thomas ret=$?
476 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
477 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
478 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
479 10604dce 2021-09-24 thomas return 1
480 10604dce 2021-09-24 thomas fi
481 10604dce 2021-09-24 thomas
482 10604dce 2021-09-24 thomas # resolve the conflict
483 10604dce 2021-09-24 thomas echo "modified alpha by both branches" > $testroot/wt/alpha
484 10604dce 2021-09-24 thomas
485 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge -c > $testroot/stdout)
486 fc414659 2022-04-16 thomas ret=$?
487 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
488 10604dce 2021-09-24 thomas echo "got merge failed unexpectedly" >&2
489 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
490 10604dce 2021-09-24 thomas return 1
491 10604dce 2021-09-24 thomas fi
492 10604dce 2021-09-24 thomas
493 10604dce 2021-09-24 thomas local merge_commit=`git_show_head $testroot/repo`
494 10604dce 2021-09-24 thomas
495 ae1e948a 2021-09-28 thomas echo "M alpha" > $testroot/stdout.expected
496 ae1e948a 2021-09-28 thomas echo "D beta" >> $testroot/stdout.expected
497 ae1e948a 2021-09-28 thomas echo "A epsilon/new" >> $testroot/stdout.expected
498 ae1e948a 2021-09-28 thomas echo "M gamma/delta" >> $testroot/stdout.expected
499 10604dce 2021-09-24 thomas echo -n "Merged refs/heads/newbranch into refs/heads/master: " \
500 ae1e948a 2021-09-28 thomas >> $testroot/stdout.expected
501 10604dce 2021-09-24 thomas echo $merge_commit >> $testroot/stdout.expected
502 10604dce 2021-09-24 thomas
503 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
504 fc414659 2022-04-16 thomas ret=$?
505 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
506 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
507 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
508 10604dce 2021-09-24 thomas return 1
509 10604dce 2021-09-24 thomas fi
510 10604dce 2021-09-24 thomas
511 10604dce 2021-09-24 thomas echo "modified delta on branch" > $testroot/content.expected
512 10604dce 2021-09-24 thomas cat $testroot/wt/gamma/delta > $testroot/content
513 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
514 fc414659 2022-04-16 thomas ret=$?
515 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
516 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
517 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
518 10604dce 2021-09-24 thomas return 1
519 10604dce 2021-09-24 thomas fi
520 10604dce 2021-09-24 thomas
521 10604dce 2021-09-24 thomas echo "modified alpha by both branches" > $testroot/content.expected
522 10604dce 2021-09-24 thomas cat $testroot/wt/alpha > $testroot/content
523 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
524 fc414659 2022-04-16 thomas ret=$?
525 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
526 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
527 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
528 10604dce 2021-09-24 thomas return 1
529 10604dce 2021-09-24 thomas fi
530 10604dce 2021-09-24 thomas
531 10604dce 2021-09-24 thomas if [ -e $testroot/wt/beta ]; then
532 10604dce 2021-09-24 thomas echo "removed file beta still exists on disk" >&2
533 10604dce 2021-09-24 thomas test_done "$testroot" "1"
534 10604dce 2021-09-24 thomas return 1
535 10604dce 2021-09-24 thomas fi
536 10604dce 2021-09-24 thomas
537 10604dce 2021-09-24 thomas echo "new file on branch" > $testroot/content.expected
538 10604dce 2021-09-24 thomas cat $testroot/wt/epsilon/new > $testroot/content
539 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
540 fc414659 2022-04-16 thomas ret=$?
541 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
542 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
543 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
544 10604dce 2021-09-24 thomas return 1
545 10604dce 2021-09-24 thomas fi
546 10604dce 2021-09-24 thomas
547 10604dce 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
548 10604dce 2021-09-24 thomas
549 10604dce 2021-09-24 thomas echo -n > $testroot/stdout.expected
550 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
551 fc414659 2022-04-16 thomas ret=$?
552 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
553 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
554 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
555 10604dce 2021-09-24 thomas return 1
556 10604dce 2021-09-24 thomas fi
557 10604dce 2021-09-24 thomas
558 10604dce 2021-09-24 thomas (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
559 10604dce 2021-09-24 thomas echo "commit $merge_commit (master)" > $testroot/stdout.expected
560 10604dce 2021-09-24 thomas echo "commit $master_commit" >> $testroot/stdout.expected
561 10604dce 2021-09-24 thomas echo "commit $commit0" >> $testroot/stdout.expected
562 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
563 fc414659 2022-04-16 thomas ret=$?
564 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
565 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
566 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
567 10604dce 2021-09-24 thomas return 1
568 10604dce 2021-09-24 thomas fi
569 10604dce 2021-09-24 thomas
570 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > $testroot/stdout)
571 10604dce 2021-09-24 thomas
572 10604dce 2021-09-24 thomas echo 'Already up-to-date' > $testroot/stdout.expected
573 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
574 fc414659 2022-04-16 thomas ret=$?
575 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
576 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
577 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
578 10604dce 2021-09-24 thomas return 1
579 10604dce 2021-09-24 thomas fi
580 10604dce 2021-09-24 thomas
581 10604dce 2021-09-24 thomas # We should have created a merge commit with two parents.
582 10604dce 2021-09-24 thomas (cd $testroot/wt && got log -l1 | grep ^parent > $testroot/stdout)
583 10604dce 2021-09-24 thomas echo "parent 1: $master_commit" > $testroot/stdout.expected
584 10604dce 2021-09-24 thomas echo "parent 2: $branch_commit3" >> $testroot/stdout.expected
585 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
586 fc414659 2022-04-16 thomas ret=$?
587 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
588 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
589 10604dce 2021-09-24 thomas fi
590 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
591 10604dce 2021-09-24 thomas }
592 10604dce 2021-09-24 thomas
593 10604dce 2021-09-24 thomas test_merge_abort() {
594 10604dce 2021-09-24 thomas local testroot=`test_init merge_abort`
595 10604dce 2021-09-24 thomas local commit0=`git_show_head $testroot/repo`
596 10604dce 2021-09-24 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
597 10604dce 2021-09-24 thomas
598 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q -b newbranch)
599 10604dce 2021-09-24 thomas echo "modified delta on branch" > $testroot/repo/gamma/delta
600 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to delta on newbranch"
601 10604dce 2021-09-24 thomas local branch_commit0=`git_show_branch_head $testroot/repo newbranch`
602 10604dce 2021-09-24 thomas
603 10604dce 2021-09-24 thomas echo "modified alpha on branch" > $testroot/repo/alpha
604 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on newbranch"
605 10604dce 2021-09-24 thomas local branch_commit1=`git_show_branch_head $testroot/repo newbranch`
606 10604dce 2021-09-24 thomas (cd $testroot/repo && git rm -q beta)
607 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "removing beta on newbranch"
608 10604dce 2021-09-24 thomas local branch_commit2=`git_show_branch_head $testroot/repo newbranch`
609 10604dce 2021-09-24 thomas echo "new file on branch" > $testroot/repo/epsilon/new
610 10604dce 2021-09-24 thomas (cd $testroot/repo && git add epsilon/new)
611 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "adding new file on newbranch"
612 10604dce 2021-09-24 thomas local branch_commit3=`git_show_branch_head $testroot/repo newbranch`
613 10604dce 2021-09-24 thomas (cd $testroot/repo && ln -s alpha symlink && git add symlink)
614 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "adding symlink on newbranch"
615 10604dce 2021-09-24 thomas local branch_commit4=`git_show_branch_head $testroot/repo newbranch`
616 10604dce 2021-09-24 thomas
617 10604dce 2021-09-24 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
618 fc414659 2022-04-16 thomas ret=$?
619 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
620 10604dce 2021-09-24 thomas echo "got checkout failed unexpectedly" >&2
621 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
622 10604dce 2021-09-24 thomas return 1
623 10604dce 2021-09-24 thomas fi
624 d52bac28 2021-10-08 thomas
625 d52bac28 2021-10-08 thomas # unrelated unversioned file in work tree
626 d52bac28 2021-10-08 thomas touch $testroot/wt/unversioned-file
627 10604dce 2021-09-24 thomas
628 10604dce 2021-09-24 thomas # create a conflicting commit
629 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q master)
630 10604dce 2021-09-24 thomas echo "modified alpha on master" > $testroot/repo/alpha
631 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on master"
632 10604dce 2021-09-24 thomas local master_commit=`git_show_head $testroot/repo`
633 10604dce 2021-09-24 thomas
634 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
635 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > /dev/null)
636 fc414659 2022-04-16 thomas ret=$?
637 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
638 10604dce 2021-09-24 thomas echo "got update failed unexpectedly" >&2
639 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
640 10604dce 2021-09-24 thomas return 1
641 10604dce 2021-09-24 thomas fi
642 10604dce 2021-09-24 thomas
643 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
644 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
645 fc414659 2022-04-16 thomas ret=$?
646 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
647 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
648 10604dce 2021-09-24 thomas test_done "$testroot" "1"
649 10604dce 2021-09-24 thomas return 1
650 10604dce 2021-09-24 thomas fi
651 10604dce 2021-09-24 thomas
652 10604dce 2021-09-24 thomas echo "C alpha" >> $testroot/stdout.expected
653 10604dce 2021-09-24 thomas echo "D beta" >> $testroot/stdout.expected
654 10604dce 2021-09-24 thomas echo "A epsilon/new" >> $testroot/stdout.expected
655 10604dce 2021-09-24 thomas echo "G gamma/delta" >> $testroot/stdout.expected
656 10604dce 2021-09-24 thomas echo "A symlink" >> $testroot/stdout.expected
657 10604dce 2021-09-24 thomas echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
658 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
659 fc414659 2022-04-16 thomas ret=$?
660 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
661 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
662 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
663 10604dce 2021-09-24 thomas return 1
664 10604dce 2021-09-24 thomas fi
665 10604dce 2021-09-24 thomas
666 10604dce 2021-09-24 thomas echo "got: conflicts must be resolved before merging can continue" \
667 10604dce 2021-09-24 thomas > $testroot/stderr.expected
668 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
669 fc414659 2022-04-16 thomas ret=$?
670 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
671 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
672 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
673 10604dce 2021-09-24 thomas return 1
674 10604dce 2021-09-24 thomas fi
675 10604dce 2021-09-24 thomas
676 10604dce 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
677 10604dce 2021-09-24 thomas
678 10604dce 2021-09-24 thomas echo "C alpha" > $testroot/stdout.expected
679 10604dce 2021-09-24 thomas echo "D beta" >> $testroot/stdout.expected
680 10604dce 2021-09-24 thomas echo "A epsilon/new" >> $testroot/stdout.expected
681 10604dce 2021-09-24 thomas echo "M gamma/delta" >> $testroot/stdout.expected
682 10604dce 2021-09-24 thomas echo "A symlink" >> $testroot/stdout.expected
683 d52bac28 2021-10-08 thomas echo "? unversioned-file" >> $testroot/stdout.expected
684 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
685 fc414659 2022-04-16 thomas ret=$?
686 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
687 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
688 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
689 10604dce 2021-09-24 thomas return 1
690 10604dce 2021-09-24 thomas fi
691 10604dce 2021-09-24 thomas
692 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge -a > $testroot/stdout)
693 fc414659 2022-04-16 thomas ret=$?
694 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
695 10604dce 2021-09-24 thomas echo "got merge failed unexpectedly" >&2
696 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
697 10604dce 2021-09-24 thomas return 1
698 10604dce 2021-09-24 thomas fi
699 10604dce 2021-09-24 thomas
700 10604dce 2021-09-24 thomas echo "R alpha" > $testroot/stdout.expected
701 10604dce 2021-09-24 thomas echo "R beta" >> $testroot/stdout.expected
702 10604dce 2021-09-24 thomas echo "R epsilon/new" >> $testroot/stdout.expected
703 10604dce 2021-09-24 thomas echo "R gamma/delta" >> $testroot/stdout.expected
704 10604dce 2021-09-24 thomas echo "R symlink" >> $testroot/stdout.expected
705 10604dce 2021-09-24 thomas echo "Merge of refs/heads/newbranch aborted" \
706 10604dce 2021-09-24 thomas >> $testroot/stdout.expected
707 10604dce 2021-09-24 thomas
708 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
709 fc414659 2022-04-16 thomas ret=$?
710 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
711 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
712 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
713 10604dce 2021-09-24 thomas return 1
714 10604dce 2021-09-24 thomas fi
715 10604dce 2021-09-24 thomas
716 10604dce 2021-09-24 thomas echo "delta" > $testroot/content.expected
717 10604dce 2021-09-24 thomas cat $testroot/wt/gamma/delta > $testroot/content
718 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
719 fc414659 2022-04-16 thomas ret=$?
720 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
721 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
722 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
723 10604dce 2021-09-24 thomas return 1
724 10604dce 2021-09-24 thomas fi
725 10604dce 2021-09-24 thomas
726 10604dce 2021-09-24 thomas echo "modified alpha on master" > $testroot/content.expected
727 10604dce 2021-09-24 thomas cat $testroot/wt/alpha > $testroot/content
728 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
729 fc414659 2022-04-16 thomas ret=$?
730 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
731 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
732 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
733 10604dce 2021-09-24 thomas return 1
734 10604dce 2021-09-24 thomas fi
735 10604dce 2021-09-24 thomas
736 10604dce 2021-09-24 thomas echo "beta" > $testroot/content.expected
737 10604dce 2021-09-24 thomas cat $testroot/wt/beta > $testroot/content
738 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
739 fc414659 2022-04-16 thomas ret=$?
740 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
741 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
742 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
743 10604dce 2021-09-24 thomas return 1
744 10604dce 2021-09-24 thomas fi
745 10604dce 2021-09-24 thomas
746 10604dce 2021-09-24 thomas if [ -e $testroot/wt/epsilon/new ]; then
747 10604dce 2021-09-24 thomas echo "reverted file epsilon/new still exists on disk" >&2
748 10604dce 2021-09-24 thomas test_done "$testroot" "1"
749 10604dce 2021-09-24 thomas return 1
750 10604dce 2021-09-24 thomas fi
751 10604dce 2021-09-24 thomas
752 10604dce 2021-09-24 thomas if [ -e $testroot/wt/symlink ]; then
753 10604dce 2021-09-24 thomas echo "reverted symlink still exists on disk" >&2
754 10604dce 2021-09-24 thomas test_done "$testroot" "1"
755 10604dce 2021-09-24 thomas return 1
756 10604dce 2021-09-24 thomas fi
757 10604dce 2021-09-24 thomas
758 10604dce 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
759 10604dce 2021-09-24 thomas
760 d52bac28 2021-10-08 thomas echo "? unversioned-file" > $testroot/stdout.expected
761 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
762 fc414659 2022-04-16 thomas ret=$?
763 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
764 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
765 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
766 10604dce 2021-09-24 thomas return 1
767 10604dce 2021-09-24 thomas fi
768 10604dce 2021-09-24 thomas
769 10604dce 2021-09-24 thomas (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
770 10604dce 2021-09-24 thomas echo "commit $master_commit (master)" > $testroot/stdout.expected
771 10604dce 2021-09-24 thomas echo "commit $commit0" >> $testroot/stdout.expected
772 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
773 fc414659 2022-04-16 thomas ret=$?
774 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
775 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
776 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
777 10604dce 2021-09-24 thomas return 1
778 10604dce 2021-09-24 thomas fi
779 10604dce 2021-09-24 thomas
780 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > $testroot/stdout)
781 10604dce 2021-09-24 thomas
782 10604dce 2021-09-24 thomas echo 'Already up-to-date' > $testroot/stdout.expected
783 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
784 fc414659 2022-04-16 thomas ret=$?
785 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
786 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
787 10604dce 2021-09-24 thomas fi
788 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
789 10604dce 2021-09-24 thomas }
790 10604dce 2021-09-24 thomas
791 10604dce 2021-09-24 thomas test_merge_in_progress() {
792 10604dce 2021-09-24 thomas local testroot=`test_init merge_in_progress`
793 10604dce 2021-09-24 thomas local commit0=`git_show_head $testroot/repo`
794 10604dce 2021-09-24 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
795 10604dce 2021-09-24 thomas
796 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q -b newbranch)
797 10604dce 2021-09-24 thomas echo "modified alpha on branch" > $testroot/repo/alpha
798 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on newbranch"
799 10604dce 2021-09-24 thomas local branch_commit0=`git_show_branch_head $testroot/repo newbranch`
800 10604dce 2021-09-24 thomas
801 10604dce 2021-09-24 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
802 fc414659 2022-04-16 thomas ret=$?
803 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
804 10604dce 2021-09-24 thomas echo "got checkout failed unexpectedly" >&2
805 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
806 10604dce 2021-09-24 thomas return 1
807 10604dce 2021-09-24 thomas fi
808 10604dce 2021-09-24 thomas
809 10604dce 2021-09-24 thomas # create a conflicting commit
810 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q master)
811 10604dce 2021-09-24 thomas echo "modified alpha on master" > $testroot/repo/alpha
812 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on master"
813 10604dce 2021-09-24 thomas local master_commit=`git_show_head $testroot/repo`
814 10604dce 2021-09-24 thomas
815 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
816 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > /dev/null)
817 fc414659 2022-04-16 thomas ret=$?
818 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
819 10604dce 2021-09-24 thomas echo "got update failed unexpectedly" >&2
820 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
821 10604dce 2021-09-24 thomas return 1
822 10604dce 2021-09-24 thomas fi
823 10604dce 2021-09-24 thomas
824 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
825 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
826 fc414659 2022-04-16 thomas ret=$?
827 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
828 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
829 10604dce 2021-09-24 thomas test_done "$testroot" "1"
830 10604dce 2021-09-24 thomas return 1
831 10604dce 2021-09-24 thomas fi
832 10604dce 2021-09-24 thomas
833 10604dce 2021-09-24 thomas echo "C alpha" >> $testroot/stdout.expected
834 10604dce 2021-09-24 thomas echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
835 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
836 fc414659 2022-04-16 thomas ret=$?
837 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
838 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
839 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
840 10604dce 2021-09-24 thomas return 1
841 10604dce 2021-09-24 thomas fi
842 10604dce 2021-09-24 thomas
843 10604dce 2021-09-24 thomas echo "got: conflicts must be resolved before merging can continue" \
844 10604dce 2021-09-24 thomas > $testroot/stderr.expected
845 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
846 fc414659 2022-04-16 thomas ret=$?
847 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
848 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
849 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
850 10604dce 2021-09-24 thomas return 1
851 10604dce 2021-09-24 thomas fi
852 10604dce 2021-09-24 thomas
853 10604dce 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
854 10604dce 2021-09-24 thomas
855 10604dce 2021-09-24 thomas echo "C alpha" > $testroot/stdout.expected
856 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
857 fc414659 2022-04-16 thomas ret=$?
858 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
859 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
860 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
861 10604dce 2021-09-24 thomas return 1
862 10604dce 2021-09-24 thomas fi
863 10604dce 2021-09-24 thomas
864 10604dce 2021-09-24 thomas for cmd in update commit histedit "rebase newbranch" \
865 10604dce 2021-09-24 thomas "integrate newbranch" "stage alpha"; do
866 10604dce 2021-09-24 thomas (cd $testroot/wt && got $cmd > $testroot/stdout \
867 10604dce 2021-09-24 thomas 2> $testroot/stderr)
868 10604dce 2021-09-24 thomas
869 10604dce 2021-09-24 thomas echo -n > $testroot/stdout.expected
870 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
871 fc414659 2022-04-16 thomas ret=$?
872 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
873 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
874 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
875 10604dce 2021-09-24 thomas return 1
876 10604dce 2021-09-24 thomas fi
877 10604dce 2021-09-24 thomas
878 10604dce 2021-09-24 thomas echo -n "got: a merge operation is in progress in this " \
879 10604dce 2021-09-24 thomas > $testroot/stderr.expected
880 10604dce 2021-09-24 thomas echo "work tree and must be continued or aborted first" \
881 10604dce 2021-09-24 thomas >> $testroot/stderr.expected
882 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
883 fc414659 2022-04-16 thomas ret=$?
884 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
885 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
886 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
887 10604dce 2021-09-24 thomas return 1
888 10604dce 2021-09-24 thomas fi
889 10604dce 2021-09-24 thomas done
890 10604dce 2021-09-24 thomas
891 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
892 10604dce 2021-09-24 thomas }
893 10604dce 2021-09-24 thomas
894 10604dce 2021-09-24 thomas test_merge_path_prefix() {
895 10604dce 2021-09-24 thomas local testroot=`test_init merge_path_prefix`
896 10604dce 2021-09-24 thomas local commit0=`git_show_head $testroot/repo`
897 10604dce 2021-09-24 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
898 10604dce 2021-09-24 thomas
899 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q -b newbranch)
900 10604dce 2021-09-24 thomas echo "modified alpha on branch" > $testroot/repo/alpha
901 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on newbranch"
902 10604dce 2021-09-24 thomas local branch_commit0=`git_show_branch_head $testroot/repo newbranch`
903 10604dce 2021-09-24 thomas
904 10604dce 2021-09-24 thomas got checkout -p epsilon -b master $testroot/repo $testroot/wt \
905 10604dce 2021-09-24 thomas > /dev/null
906 fc414659 2022-04-16 thomas ret=$?
907 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
908 10604dce 2021-09-24 thomas echo "got checkout failed unexpectedly" >&2
909 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
910 10604dce 2021-09-24 thomas return 1
911 10604dce 2021-09-24 thomas fi
912 10604dce 2021-09-24 thomas
913 10604dce 2021-09-24 thomas # create a conflicting commit
914 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q master)
915 10604dce 2021-09-24 thomas echo "modified alpha on master" > $testroot/repo/alpha
916 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on master"
917 10604dce 2021-09-24 thomas local master_commit=`git_show_head $testroot/repo`
918 10604dce 2021-09-24 thomas
919 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
920 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > /dev/null)
921 fc414659 2022-04-16 thomas ret=$?
922 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
923 10604dce 2021-09-24 thomas echo "got update failed unexpectedly" >&2
924 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
925 10604dce 2021-09-24 thomas return 1
926 10604dce 2021-09-24 thomas fi
927 10604dce 2021-09-24 thomas
928 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
929 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
930 fc414659 2022-04-16 thomas ret=$?
931 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
932 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
933 10604dce 2021-09-24 thomas test_done "$testroot" "1"
934 10604dce 2021-09-24 thomas return 1
935 10604dce 2021-09-24 thomas fi
936 10604dce 2021-09-24 thomas
937 10604dce 2021-09-24 thomas echo -n "got: cannot merge branch which contains changes outside " \
938 10604dce 2021-09-24 thomas > $testroot/stderr.expected
939 10604dce 2021-09-24 thomas echo "of this work tree's path prefix" >> $testroot/stderr.expected
940 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
941 fc414659 2022-04-16 thomas ret=$?
942 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
943 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
944 10604dce 2021-09-24 thomas fi
945 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
946 10604dce 2021-09-24 thomas }
947 10604dce 2021-09-24 thomas
948 10604dce 2021-09-24 thomas test_merge_missing_file() {
949 10604dce 2021-09-24 thomas local testroot=`test_init merge_missing_file`
950 10604dce 2021-09-24 thomas local commit0=`git_show_head $testroot/repo`
951 10604dce 2021-09-24 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
952 10604dce 2021-09-24 thomas
953 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q -b newbranch)
954 10604dce 2021-09-24 thomas echo "modified alpha on branch" > $testroot/repo/alpha
955 10604dce 2021-09-24 thomas echo "modified delta on branch" > $testroot/repo/gamma/delta
956 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha and delta"
957 10604dce 2021-09-24 thomas local branch_commit0=`git_show_branch_head $testroot/repo newbranch`
958 10604dce 2021-09-24 thomas
959 10604dce 2021-09-24 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
960 fc414659 2022-04-16 thomas ret=$?
961 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
962 10604dce 2021-09-24 thomas echo "got checkout failed unexpectedly" >&2
963 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
964 10604dce 2021-09-24 thomas return 1
965 10604dce 2021-09-24 thomas fi
966 10604dce 2021-09-24 thomas
967 10604dce 2021-09-24 thomas # create a conflicting commit which renames alpha
968 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q master)
969 10604dce 2021-09-24 thomas (cd $testroot/repo && git mv alpha epsilon/alpha-moved)
970 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "moving alpha on master"
971 10604dce 2021-09-24 thomas local master_commit=`git_show_head $testroot/repo`
972 10604dce 2021-09-24 thomas
973 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
974 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > /dev/null)
975 fc414659 2022-04-16 thomas ret=$?
976 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
977 10604dce 2021-09-24 thomas echo "got update failed unexpectedly" >&2
978 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
979 10604dce 2021-09-24 thomas return 1
980 10604dce 2021-09-24 thomas fi
981 10604dce 2021-09-24 thomas
982 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
983 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
984 fc414659 2022-04-16 thomas ret=$?
985 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
986 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
987 10604dce 2021-09-24 thomas test_done "$testroot" "1"
988 10604dce 2021-09-24 thomas return 1
989 10604dce 2021-09-24 thomas fi
990 10604dce 2021-09-24 thomas
991 10604dce 2021-09-24 thomas echo "! alpha" > $testroot/stdout.expected
992 10604dce 2021-09-24 thomas echo "G gamma/delta" >> $testroot/stdout.expected
993 0ef68859 2021-09-28 thomas echo -n "Files which had incoming changes but could not be found " \
994 0ef68859 2021-09-28 thomas >> $testroot/stdout.expected
995 0ef68859 2021-09-28 thomas echo "in the work tree: 1" >> $testroot/stdout.expected
996 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
997 fc414659 2022-04-16 thomas ret=$?
998 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
999 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
1000 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
1001 10604dce 2021-09-24 thomas return 1
1002 10604dce 2021-09-24 thomas fi
1003 10604dce 2021-09-24 thomas
1004 ba162991 2021-09-28 thomas echo -n "got: changes destined for some files " \
1005 10604dce 2021-09-24 thomas > $testroot/stderr.expected
1006 10604dce 2021-09-24 thomas echo -n "were not yet merged and should be merged manually if " \
1007 10604dce 2021-09-24 thomas >> $testroot/stderr.expected
1008 10604dce 2021-09-24 thomas echo "required before the merge operation is continued" \
1009 10604dce 2021-09-24 thomas >> $testroot/stderr.expected
1010 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
1011 fc414659 2022-04-16 thomas ret=$?
1012 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1013 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
1014 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
1015 10604dce 2021-09-24 thomas return 1
1016 10604dce 2021-09-24 thomas fi
1017 10604dce 2021-09-24 thomas
1018 10604dce 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
1019 10604dce 2021-09-24 thomas
1020 10604dce 2021-09-24 thomas echo "M gamma/delta" > $testroot/stdout.expected
1021 2d7ce510 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1022 fc414659 2022-04-16 thomas ret=$?
1023 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1024 2d7ce510 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
1025 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1026 2d7ce510 2021-09-24 thomas return 1
1027 2d7ce510 2021-09-24 thomas fi
1028 2d7ce510 2021-09-24 thomas
1029 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1030 2d7ce510 2021-09-24 thomas }
1031 2d7ce510 2021-09-24 thomas
1032 2d7ce510 2021-09-24 thomas test_merge_no_op() {
1033 2d7ce510 2021-09-24 thomas local testroot=`test_init merge_no_op`
1034 2d7ce510 2021-09-24 thomas local commit0=`git_show_head $testroot/repo`
1035 2d7ce510 2021-09-24 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
1036 2d7ce510 2021-09-24 thomas
1037 2d7ce510 2021-09-24 thomas (cd $testroot/repo && git checkout -q -b newbranch)
1038 2d7ce510 2021-09-24 thomas echo "modified alpha on branch" > $testroot/repo/alpha
1039 2d7ce510 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on newbranch"
1040 2d7ce510 2021-09-24 thomas local branch_commitk=`git_show_branch_head $testroot/repo newbranch`
1041 2d7ce510 2021-09-24 thomas
1042 2d7ce510 2021-09-24 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
1043 fc414659 2022-04-16 thomas ret=$?
1044 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1045 2d7ce510 2021-09-24 thomas echo "got checkout failed unexpectedly" >&2
1046 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1047 2d7ce510 2021-09-24 thomas return 1
1048 2d7ce510 2021-09-24 thomas fi
1049 2d7ce510 2021-09-24 thomas
1050 2d7ce510 2021-09-24 thomas # create a conflicting commit
1051 2d7ce510 2021-09-24 thomas (cd $testroot/repo && git checkout -q master)
1052 2d7ce510 2021-09-24 thomas echo "modified alpha on master" > $testroot/repo/alpha
1053 2d7ce510 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on master"
1054 2d7ce510 2021-09-24 thomas local master_commit=`git_show_head $testroot/repo`
1055 2d7ce510 2021-09-24 thomas
1056 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
1057 2d7ce510 2021-09-24 thomas (cd $testroot/wt && got update > /dev/null)
1058 fc414659 2022-04-16 thomas ret=$?
1059 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1060 2d7ce510 2021-09-24 thomas echo "got update failed unexpectedly" >&2
1061 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1062 2d7ce510 2021-09-24 thomas return 1
1063 2d7ce510 2021-09-24 thomas fi
1064 2d7ce510 2021-09-24 thomas
1065 2d7ce510 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
1066 2d7ce510 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
1067 fc414659 2022-04-16 thomas ret=$?
1068 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
1069 2d7ce510 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
1070 2d7ce510 2021-09-24 thomas test_done "$testroot" "1"
1071 2d7ce510 2021-09-24 thomas return 1
1072 2d7ce510 2021-09-24 thomas fi
1073 2d7ce510 2021-09-24 thomas
1074 2d7ce510 2021-09-24 thomas echo "C alpha" >> $testroot/stdout.expected
1075 2d7ce510 2021-09-24 thomas echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
1076 2d7ce510 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1077 fc414659 2022-04-16 thomas ret=$?
1078 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1079 2d7ce510 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
1080 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1081 2d7ce510 2021-09-24 thomas return 1
1082 2d7ce510 2021-09-24 thomas fi
1083 2d7ce510 2021-09-24 thomas
1084 2d7ce510 2021-09-24 thomas echo "got: conflicts must be resolved before merging can continue" \
1085 2d7ce510 2021-09-24 thomas > $testroot/stderr.expected
1086 2d7ce510 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
1087 fc414659 2022-04-16 thomas ret=$?
1088 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1089 2d7ce510 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
1090 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1091 2d7ce510 2021-09-24 thomas return 1
1092 2d7ce510 2021-09-24 thomas fi
1093 2d7ce510 2021-09-24 thomas
1094 2d7ce510 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
1095 2d7ce510 2021-09-24 thomas
1096 2d7ce510 2021-09-24 thomas echo "C alpha" > $testroot/stdout.expected
1097 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1098 fc414659 2022-04-16 thomas ret=$?
1099 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1100 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
1101 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
1102 10604dce 2021-09-24 thomas return 1
1103 10604dce 2021-09-24 thomas fi
1104 10604dce 2021-09-24 thomas
1105 2d7ce510 2021-09-24 thomas # resolve the conflict by reverting all changes; now it is no-op merge
1106 2d7ce510 2021-09-24 thomas (cd $testroot/wt && got revert alpha > /dev/null)
1107 fc414659 2022-04-16 thomas ret=$?
1108 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1109 2d7ce510 2021-09-24 thomas echo "got revert failed unexpectedly" >&2
1110 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1111 2d7ce510 2021-09-24 thomas return 1
1112 2d7ce510 2021-09-24 thomas fi
1113 2d7ce510 2021-09-24 thomas
1114 2d7ce510 2021-09-24 thomas (cd $testroot/wt && got merge -c > $testroot/stdout \
1115 2d7ce510 2021-09-24 thomas 2> $testroot/stderr)
1116 fc414659 2022-04-16 thomas ret=$?
1117 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
1118 2d7ce510 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
1119 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1120 2d7ce510 2021-09-24 thomas return 1
1121 2d7ce510 2021-09-24 thomas fi
1122 2d7ce510 2021-09-24 thomas
1123 2d7ce510 2021-09-24 thomas echo -n "got: merge of refs/heads/newbranch cannot proceed: " \
1124 2d7ce510 2021-09-24 thomas > $testroot/stderr.expected
1125 2d7ce510 2021-09-24 thomas echo "no changes to commit" >> $testroot/stderr.expected
1126 2d7ce510 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
1127 fc414659 2022-04-16 thomas ret=$?
1128 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1129 2d7ce510 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
1130 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1131 2d7ce510 2021-09-24 thomas return 1
1132 2d7ce510 2021-09-24 thomas fi
1133 2d7ce510 2021-09-24 thomas
1134 2d7ce510 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
1135 2d7ce510 2021-09-24 thomas
1136 2d7ce510 2021-09-24 thomas echo -n "" > $testroot/stdout.expected
1137 768705e3 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1138 fc414659 2022-04-16 thomas ret=$?
1139 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1140 768705e3 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1141 768705e3 2021-09-27 thomas fi
1142 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1143 768705e3 2021-09-27 thomas }
1144 768705e3 2021-09-27 thomas
1145 768705e3 2021-09-27 thomas test_merge_imported_branch() {
1146 768705e3 2021-09-27 thomas local testroot=`test_init merge_import`
1147 768705e3 2021-09-27 thomas local commit0=`git_show_head $testroot/repo`
1148 768705e3 2021-09-27 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
1149 768705e3 2021-09-27 thomas
1150 768705e3 2021-09-27 thomas # import a new sub-tree to the 'files' branch such that
1151 768705e3 2021-09-27 thomas # none of the files added here collide with existing ones
1152 768705e3 2021-09-27 thomas mkdir -p $testroot/tree/there
1153 768705e3 2021-09-27 thomas mkdir -p $testroot/tree/be/lots
1154 768705e3 2021-09-27 thomas mkdir -p $testroot/tree/files
1155 768705e3 2021-09-27 thomas echo "there should" > $testroot/tree/there/should
1156 768705e3 2021-09-27 thomas echo "be lots of" > $testroot/tree/be/lots/of
1157 768705e3 2021-09-27 thomas echo "files here" > $testroot/tree/files/here
1158 768705e3 2021-09-27 thomas got import -r $testroot/repo -b files -m 'import files' \
1159 768705e3 2021-09-27 thomas $testroot/tree > /dev/null
1160 768705e3 2021-09-27 thomas
1161 768705e3 2021-09-27 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
1162 fc414659 2022-04-16 thomas ret=$?
1163 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1164 768705e3 2021-09-27 thomas echo "got checkout failed unexpectedly" >&2
1165 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1166 768705e3 2021-09-27 thomas return 1
1167 768705e3 2021-09-27 thomas fi
1168 768705e3 2021-09-27 thomas
1169 768705e3 2021-09-27 thomas (cd $testroot/wt && got merge files > $testroot/stdout)
1170 fc414659 2022-04-16 thomas ret=$?
1171 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1172 768705e3 2021-09-27 thomas echo "got merge failed unexpectedly" >&2
1173 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1174 768705e3 2021-09-27 thomas return 1
1175 768705e3 2021-09-27 thomas fi
1176 768705e3 2021-09-27 thomas
1177 768705e3 2021-09-27 thomas local merge_commit0=`git_show_head $testroot/repo`
1178 768705e3 2021-09-27 thomas cat > $testroot/stdout.expected <<EOF
1179 768705e3 2021-09-27 thomas A be/lots/of
1180 768705e3 2021-09-27 thomas A files/here
1181 768705e3 2021-09-27 thomas A there/should
1182 768705e3 2021-09-27 thomas Merged refs/heads/files into refs/heads/master: $merge_commit0
1183 768705e3 2021-09-27 thomas EOF
1184 768705e3 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1185 fc414659 2022-04-16 thomas ret=$?
1186 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1187 768705e3 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1188 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1189 768705e3 2021-09-27 thomas return 1
1190 768705e3 2021-09-27 thomas fi
1191 768705e3 2021-09-27 thomas
1192 768705e3 2021-09-27 thomas # try to merge again while no new changes are available
1193 768705e3 2021-09-27 thomas (cd $testroot/wt && got merge files > $testroot/stdout)
1194 fc414659 2022-04-16 thomas ret=$?
1195 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1196 768705e3 2021-09-27 thomas echo "got merge failed unexpectedly" >&2
1197 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1198 768705e3 2021-09-27 thomas return 1
1199 768705e3 2021-09-27 thomas fi
1200 768705e3 2021-09-27 thomas echo "Already up-to-date" > $testroot/stdout.expected
1201 2d7ce510 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1202 fc414659 2022-04-16 thomas ret=$?
1203 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1204 2d7ce510 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
1205 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1206 768705e3 2021-09-27 thomas return 1
1207 2d7ce510 2021-09-24 thomas fi
1208 768705e3 2021-09-27 thomas
1209 768705e3 2021-09-27 thomas # update the 'files' branch
1210 768705e3 2021-09-27 thomas (cd $testroot/repo && git reset -q --hard master)
1211 768705e3 2021-09-27 thomas (cd $testroot/repo && git checkout -q files)
1212 768705e3 2021-09-27 thomas echo "indeed" > $testroot/repo/indeed
1213 768705e3 2021-09-27 thomas (cd $testroot/repo && git add indeed)
1214 768705e3 2021-09-27 thomas git_commit $testroot/repo -m "adding another file indeed"
1215 768705e3 2021-09-27 thomas echo "be lots and lots of" > $testroot/repo/be/lots/of
1216 768705e3 2021-09-27 thomas git_commit $testroot/repo -m "lots of changes"
1217 768705e3 2021-09-27 thomas
1218 768705e3 2021-09-27 thomas (cd $testroot/wt && got update > /dev/null)
1219 fc414659 2022-04-16 thomas ret=$?
1220 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1221 768705e3 2021-09-27 thomas echo "got update failed unexpectedly" >&2
1222 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1223 768705e3 2021-09-27 thomas return 1
1224 768705e3 2021-09-27 thomas fi
1225 768705e3 2021-09-27 thomas
1226 768705e3 2021-09-27 thomas # we should now be able to merge more changes from files branch
1227 768705e3 2021-09-27 thomas (cd $testroot/wt && got merge files > $testroot/stdout)
1228 fc414659 2022-04-16 thomas ret=$?
1229 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1230 768705e3 2021-09-27 thomas echo "got merge failed unexpectedly" >&2
1231 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1232 768705e3 2021-09-27 thomas return 1
1233 768705e3 2021-09-27 thomas fi
1234 768705e3 2021-09-27 thomas
1235 768705e3 2021-09-27 thomas local merge_commit1=`git_show_branch_head $testroot/repo master`
1236 768705e3 2021-09-27 thomas cat > $testroot/stdout.expected <<EOF
1237 768705e3 2021-09-27 thomas G be/lots/of
1238 768705e3 2021-09-27 thomas A indeed
1239 768705e3 2021-09-27 thomas Merged refs/heads/files into refs/heads/master: $merge_commit1
1240 768705e3 2021-09-27 thomas EOF
1241 768705e3 2021-09-27 thomas
1242 768705e3 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1243 fc414659 2022-04-16 thomas ret=$?
1244 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1245 768705e3 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1246 768705e3 2021-09-27 thomas fi
1247 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
1248 10604dce 2021-09-24 thomas }
1249 ba34626b 2021-09-27 thomas
1250 ba34626b 2021-09-27 thomas test_merge_interrupt() {
1251 ba34626b 2021-09-27 thomas local testroot=`test_init merge_interrupt`
1252 ba34626b 2021-09-27 thomas local commit0=`git_show_head $testroot/repo`
1253 ba34626b 2021-09-27 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
1254 ba34626b 2021-09-27 thomas
1255 ba34626b 2021-09-27 thomas (cd $testroot/repo && git checkout -q -b newbranch)
1256 ba34626b 2021-09-27 thomas echo "modified alpha on branch" > $testroot/repo/alpha
1257 ba34626b 2021-09-27 thomas git_commit $testroot/repo -m "committing to alpha on newbranch"
1258 ba34626b 2021-09-27 thomas local branch_commit0=`git_show_branch_head $testroot/repo newbranch`
1259 ba34626b 2021-09-27 thomas
1260 ba34626b 2021-09-27 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
1261 fc414659 2022-04-16 thomas ret=$?
1262 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1263 ba34626b 2021-09-27 thomas echo "got checkout failed unexpectedly" >&2
1264 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1265 ba34626b 2021-09-27 thomas return 1
1266 ba34626b 2021-09-27 thomas fi
1267 ba34626b 2021-09-27 thomas
1268 ba34626b 2021-09-27 thomas # create a non-conflicting commit
1269 ba34626b 2021-09-27 thomas (cd $testroot/repo && git checkout -q master)
1270 ba34626b 2021-09-27 thomas echo "modified beta on master" > $testroot/repo/beta
1271 ba34626b 2021-09-27 thomas git_commit $testroot/repo -m "committing to beta on master"
1272 ba34626b 2021-09-27 thomas local master_commit=`git_show_head $testroot/repo`
1273 10604dce 2021-09-24 thomas
1274 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
1275 ba34626b 2021-09-27 thomas (cd $testroot/wt && got update > /dev/null)
1276 fc414659 2022-04-16 thomas ret=$?
1277 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1278 ba34626b 2021-09-27 thomas echo "got update failed unexpectedly" >&2
1279 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1280 ba34626b 2021-09-27 thomas return 1
1281 ba34626b 2021-09-27 thomas fi
1282 ba34626b 2021-09-27 thomas
1283 ba34626b 2021-09-27 thomas (cd $testroot/wt && got merge -n newbranch \
1284 ba34626b 2021-09-27 thomas > $testroot/stdout 2> $testroot/stderr)
1285 fc414659 2022-04-16 thomas ret=$?
1286 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1287 ba34626b 2021-09-27 thomas echo "got merge failed unexpectedly" >&2
1288 ba34626b 2021-09-27 thomas test_done "$testroot" "1"
1289 ba34626b 2021-09-27 thomas return 1
1290 ba34626b 2021-09-27 thomas fi
1291 ba34626b 2021-09-27 thomas
1292 ba34626b 2021-09-27 thomas echo "G alpha" > $testroot/stdout.expected
1293 ba34626b 2021-09-27 thomas echo "Merge of refs/heads/newbranch interrupted on request" \
1294 ba34626b 2021-09-27 thomas >> $testroot/stdout.expected
1295 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1296 fc414659 2022-04-16 thomas ret=$?
1297 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1298 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1299 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1300 ba34626b 2021-09-27 thomas return 1
1301 ba34626b 2021-09-27 thomas fi
1302 ba34626b 2021-09-27 thomas
1303 ba34626b 2021-09-27 thomas (cd $testroot/wt && got status > $testroot/stdout)
1304 ba34626b 2021-09-27 thomas
1305 ba34626b 2021-09-27 thomas echo "M alpha" > $testroot/stdout.expected
1306 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1307 fc414659 2022-04-16 thomas ret=$?
1308 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1309 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1310 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1311 ba34626b 2021-09-27 thomas return 1
1312 ba34626b 2021-09-27 thomas fi
1313 ba34626b 2021-09-27 thomas
1314 ba34626b 2021-09-27 thomas echo "modified alpha on branch" > $testroot/content.expected
1315 ba34626b 2021-09-27 thomas cat $testroot/wt/alpha > $testroot/content
1316 ba34626b 2021-09-27 thomas cmp -s $testroot/content.expected $testroot/content
1317 fc414659 2022-04-16 thomas ret=$?
1318 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1319 ba34626b 2021-09-27 thomas diff -u $testroot/content.expected $testroot/content
1320 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1321 ba34626b 2021-09-27 thomas return 1
1322 ba34626b 2021-09-27 thomas fi
1323 ba34626b 2021-09-27 thomas
1324 ba34626b 2021-09-27 thomas # adjust merge result
1325 ba34626b 2021-09-27 thomas echo "adjusted merge result" > $testroot/wt/alpha
1326 ba34626b 2021-09-27 thomas
1327 ba34626b 2021-09-27 thomas # continue the merge
1328 ba34626b 2021-09-27 thomas (cd $testroot/wt && got merge -c > $testroot/stdout)
1329 fc414659 2022-04-16 thomas ret=$?
1330 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1331 ba34626b 2021-09-27 thomas echo "got merge failed unexpectedly" >&2
1332 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1333 ba34626b 2021-09-27 thomas return 1
1334 ba34626b 2021-09-27 thomas fi
1335 ba34626b 2021-09-27 thomas
1336 ba34626b 2021-09-27 thomas local merge_commit=`git_show_head $testroot/repo`
1337 ba34626b 2021-09-27 thomas
1338 ae1e948a 2021-09-28 thomas echo "M alpha" > $testroot/stdout.expected
1339 ba34626b 2021-09-27 thomas echo -n "Merged refs/heads/newbranch into refs/heads/master: " \
1340 ae1e948a 2021-09-28 thomas >> $testroot/stdout.expected
1341 ba34626b 2021-09-27 thomas echo $merge_commit >> $testroot/stdout.expected
1342 ba34626b 2021-09-27 thomas
1343 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1344 fc414659 2022-04-16 thomas ret=$?
1345 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1346 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1347 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1348 ba34626b 2021-09-27 thomas return 1
1349 ba34626b 2021-09-27 thomas fi
1350 ba34626b 2021-09-27 thomas
1351 ba34626b 2021-09-27 thomas (cd $testroot/wt && got status > $testroot/stdout)
1352 ba34626b 2021-09-27 thomas
1353 ba34626b 2021-09-27 thomas echo -n > $testroot/stdout.expected
1354 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1355 fc414659 2022-04-16 thomas ret=$?
1356 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1357 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1358 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1359 ba34626b 2021-09-27 thomas return 1
1360 ba34626b 2021-09-27 thomas fi
1361 ba34626b 2021-09-27 thomas
1362 ba34626b 2021-09-27 thomas (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1363 ba34626b 2021-09-27 thomas echo "commit $merge_commit (master)" > $testroot/stdout.expected
1364 ba34626b 2021-09-27 thomas echo "commit $master_commit" >> $testroot/stdout.expected
1365 ba34626b 2021-09-27 thomas echo "commit $commit0" >> $testroot/stdout.expected
1366 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1367 fc414659 2022-04-16 thomas ret=$?
1368 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1369 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1370 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1371 ba34626b 2021-09-27 thomas return 1
1372 ba34626b 2021-09-27 thomas fi
1373 ba34626b 2021-09-27 thomas
1374 ba34626b 2021-09-27 thomas (cd $testroot/wt && got update > $testroot/stdout)
1375 ba34626b 2021-09-27 thomas
1376 ba34626b 2021-09-27 thomas echo 'Already up-to-date' > $testroot/stdout.expected
1377 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1378 fc414659 2022-04-16 thomas ret=$?
1379 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1380 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1381 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1382 ba34626b 2021-09-27 thomas return 1
1383 ba34626b 2021-09-27 thomas fi
1384 ba34626b 2021-09-27 thomas
1385 ba34626b 2021-09-27 thomas # We should have created a merge commit with two parents.
1386 ba34626b 2021-09-27 thomas (cd $testroot/wt && got log -l1 | grep ^parent > $testroot/stdout)
1387 ba34626b 2021-09-27 thomas echo "parent 1: $master_commit" > $testroot/stdout.expected
1388 ba34626b 2021-09-27 thomas echo "parent 2: $branch_commit0" >> $testroot/stdout.expected
1389 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1390 fc414659 2022-04-16 thomas ret=$?
1391 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1392 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1393 ba34626b 2021-09-27 thomas fi
1394 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1395 a2c162eb 2022-10-30 thomas }
1396 a2c162eb 2022-10-30 thomas
1397 a2c162eb 2022-10-30 thomas test_merge_umask() {
1398 a2c162eb 2022-10-30 thomas local testroot=`test_init merge_umask`
1399 a2c162eb 2022-10-30 thomas
1400 a2c162eb 2022-10-30 thomas (cd $testroot/repo && git checkout -q -b newbranch)
1401 a2c162eb 2022-10-30 thomas echo "modified alpha on branch" >$testroot/repo/alpha
1402 a2c162eb 2022-10-30 thomas git_commit "$testroot/repo" -m "committing alpha on newbranch"
1403 a2c162eb 2022-10-30 thomas echo "modified delta on branch" >$testroot/repo/gamma/delta
1404 a2c162eb 2022-10-30 thomas git_commit "$testroot/repo" -m "committing delta on newbranch"
1405 a2c162eb 2022-10-30 thomas
1406 a2c162eb 2022-10-30 thomas # diverge from newbranch
1407 a2c162eb 2022-10-30 thomas (cd "$testroot/repo" && git checkout -q master)
1408 a2c162eb 2022-10-30 thomas echo "modified beta on master" >$testroot/repo/beta
1409 a2c162eb 2022-10-30 thomas git_commit "$testroot/repo" -m "committing zeto no master"
1410 a2c162eb 2022-10-30 thomas
1411 a2c162eb 2022-10-30 thomas got checkout "$testroot/repo" "$testroot/wt" >/dev/null
1412 a2c162eb 2022-10-30 thomas
1413 a2c162eb 2022-10-30 thomas # using a subshell to avoid clobbering global umask
1414 a2c162eb 2022-10-30 thomas (umask 077 && cd "$testroot/wt" && got merge newbranch) >/dev/null
1415 a2c162eb 2022-10-30 thomas
1416 a2c162eb 2022-10-30 thomas for f in alpha gamma/delta; do
1417 a2c162eb 2022-10-30 thomas ls -l "$testroot/wt/$f" | grep -q ^-rw-------
1418 a2c162eb 2022-10-30 thomas if [ $? -ne 0 ]; then
1419 a2c162eb 2022-10-30 thomas echo "$f is not 0600 after merge" >&2
1420 a2c162eb 2022-10-30 thomas ls -l "$testroot/wt/$f" >&2
1421 a2c162eb 2022-10-30 thomas test_done "$testroot" 1
1422 a2c162eb 2022-10-30 thomas fi
1423 a2c162eb 2022-10-30 thomas done
1424 a2c162eb 2022-10-30 thomas
1425 a2c162eb 2022-10-30 thomas test_done "$testroot" 0
1426 ba34626b 2021-09-27 thomas }
1427 ba34626b 2021-09-27 thomas
1428 10604dce 2021-09-24 thomas test_parseargs "$@"
1429 10604dce 2021-09-24 thomas run_test test_merge_basic
1430 10604dce 2021-09-24 thomas run_test test_merge_continue
1431 10604dce 2021-09-24 thomas run_test test_merge_abort
1432 10604dce 2021-09-24 thomas run_test test_merge_in_progress
1433 10604dce 2021-09-24 thomas run_test test_merge_path_prefix
1434 10604dce 2021-09-24 thomas run_test test_merge_missing_file
1435 2d7ce510 2021-09-24 thomas run_test test_merge_no_op
1436 768705e3 2021-09-27 thomas run_test test_merge_imported_branch
1437 ba34626b 2021-09-27 thomas run_test test_merge_interrupt
1438 a2c162eb 2022-10-30 thomas run_test test_merge_umask