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 8641a332 2023-04-14 thomas
676 8641a332 2023-04-14 thomas # unrelated added file added during conflict resolution
677 8641a332 2023-04-14 thomas touch $testroot/wt/added-file
678 8641a332 2023-04-14 thomas (cd $testroot/wt && got add added-file > /dev/null)
679 10604dce 2021-09-24 thomas
680 10604dce 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
681 10604dce 2021-09-24 thomas
682 8641a332 2023-04-14 thomas echo "A added-file" > $testroot/stdout.expected
683 8641a332 2023-04-14 thomas echo "C alpha" >> $testroot/stdout.expected
684 10604dce 2021-09-24 thomas echo "D beta" >> $testroot/stdout.expected
685 10604dce 2021-09-24 thomas echo "A epsilon/new" >> $testroot/stdout.expected
686 10604dce 2021-09-24 thomas echo "M gamma/delta" >> $testroot/stdout.expected
687 10604dce 2021-09-24 thomas echo "A symlink" >> $testroot/stdout.expected
688 d52bac28 2021-10-08 thomas echo "? unversioned-file" >> $testroot/stdout.expected
689 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
690 fc414659 2022-04-16 thomas ret=$?
691 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
692 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
693 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
694 10604dce 2021-09-24 thomas return 1
695 10604dce 2021-09-24 thomas fi
696 10604dce 2021-09-24 thomas
697 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge -a > $testroot/stdout)
698 fc414659 2022-04-16 thomas ret=$?
699 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
700 10604dce 2021-09-24 thomas echo "got merge failed unexpectedly" >&2
701 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
702 10604dce 2021-09-24 thomas return 1
703 10604dce 2021-09-24 thomas fi
704 10604dce 2021-09-24 thomas
705 8641a332 2023-04-14 thomas echo "R added-file" > $testroot/stdout.expected
706 8641a332 2023-04-14 thomas echo "R alpha" >> $testroot/stdout.expected
707 10604dce 2021-09-24 thomas echo "R beta" >> $testroot/stdout.expected
708 10604dce 2021-09-24 thomas echo "R epsilon/new" >> $testroot/stdout.expected
709 10604dce 2021-09-24 thomas echo "R gamma/delta" >> $testroot/stdout.expected
710 10604dce 2021-09-24 thomas echo "R symlink" >> $testroot/stdout.expected
711 8641a332 2023-04-14 thomas echo "G added-file" >> $testroot/stdout.expected
712 10604dce 2021-09-24 thomas echo "Merge of refs/heads/newbranch aborted" \
713 10604dce 2021-09-24 thomas >> $testroot/stdout.expected
714 10604dce 2021-09-24 thomas
715 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
716 fc414659 2022-04-16 thomas ret=$?
717 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
718 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
719 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
720 10604dce 2021-09-24 thomas return 1
721 10604dce 2021-09-24 thomas fi
722 10604dce 2021-09-24 thomas
723 10604dce 2021-09-24 thomas echo "delta" > $testroot/content.expected
724 10604dce 2021-09-24 thomas cat $testroot/wt/gamma/delta > $testroot/content
725 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
726 fc414659 2022-04-16 thomas ret=$?
727 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
728 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
729 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
730 10604dce 2021-09-24 thomas return 1
731 10604dce 2021-09-24 thomas fi
732 10604dce 2021-09-24 thomas
733 10604dce 2021-09-24 thomas echo "modified alpha on master" > $testroot/content.expected
734 10604dce 2021-09-24 thomas cat $testroot/wt/alpha > $testroot/content
735 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
736 fc414659 2022-04-16 thomas ret=$?
737 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
738 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
739 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
740 10604dce 2021-09-24 thomas return 1
741 10604dce 2021-09-24 thomas fi
742 10604dce 2021-09-24 thomas
743 10604dce 2021-09-24 thomas echo "beta" > $testroot/content.expected
744 10604dce 2021-09-24 thomas cat $testroot/wt/beta > $testroot/content
745 10604dce 2021-09-24 thomas cmp -s $testroot/content.expected $testroot/content
746 fc414659 2022-04-16 thomas ret=$?
747 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
748 10604dce 2021-09-24 thomas diff -u $testroot/content.expected $testroot/content
749 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
750 10604dce 2021-09-24 thomas return 1
751 10604dce 2021-09-24 thomas fi
752 10604dce 2021-09-24 thomas
753 10604dce 2021-09-24 thomas if [ -e $testroot/wt/epsilon/new ]; then
754 10604dce 2021-09-24 thomas echo "reverted file epsilon/new still exists on disk" >&2
755 10604dce 2021-09-24 thomas test_done "$testroot" "1"
756 10604dce 2021-09-24 thomas return 1
757 10604dce 2021-09-24 thomas fi
758 10604dce 2021-09-24 thomas
759 10604dce 2021-09-24 thomas if [ -e $testroot/wt/symlink ]; then
760 10604dce 2021-09-24 thomas echo "reverted symlink still exists on disk" >&2
761 10604dce 2021-09-24 thomas test_done "$testroot" "1"
762 10604dce 2021-09-24 thomas return 1
763 10604dce 2021-09-24 thomas fi
764 10604dce 2021-09-24 thomas
765 10604dce 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
766 10604dce 2021-09-24 thomas
767 8641a332 2023-04-14 thomas echo "? added-file" > $testroot/stdout.expected
768 8641a332 2023-04-14 thomas echo "? unversioned-file" >> $testroot/stdout.expected
769 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
770 fc414659 2022-04-16 thomas ret=$?
771 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
772 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
773 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
774 10604dce 2021-09-24 thomas return 1
775 10604dce 2021-09-24 thomas fi
776 10604dce 2021-09-24 thomas
777 10604dce 2021-09-24 thomas (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
778 10604dce 2021-09-24 thomas echo "commit $master_commit (master)" > $testroot/stdout.expected
779 10604dce 2021-09-24 thomas echo "commit $commit0" >> $testroot/stdout.expected
780 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
781 fc414659 2022-04-16 thomas ret=$?
782 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
783 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
784 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
785 10604dce 2021-09-24 thomas return 1
786 10604dce 2021-09-24 thomas fi
787 10604dce 2021-09-24 thomas
788 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > $testroot/stdout)
789 10604dce 2021-09-24 thomas
790 10604dce 2021-09-24 thomas echo 'Already up-to-date' > $testroot/stdout.expected
791 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
792 fc414659 2022-04-16 thomas ret=$?
793 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
794 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
795 10604dce 2021-09-24 thomas fi
796 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
797 10604dce 2021-09-24 thomas }
798 10604dce 2021-09-24 thomas
799 10604dce 2021-09-24 thomas test_merge_in_progress() {
800 10604dce 2021-09-24 thomas local testroot=`test_init merge_in_progress`
801 10604dce 2021-09-24 thomas local commit0=`git_show_head $testroot/repo`
802 10604dce 2021-09-24 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
803 10604dce 2021-09-24 thomas
804 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q -b newbranch)
805 10604dce 2021-09-24 thomas echo "modified alpha on branch" > $testroot/repo/alpha
806 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on newbranch"
807 10604dce 2021-09-24 thomas local branch_commit0=`git_show_branch_head $testroot/repo newbranch`
808 10604dce 2021-09-24 thomas
809 10604dce 2021-09-24 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
810 fc414659 2022-04-16 thomas ret=$?
811 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
812 10604dce 2021-09-24 thomas echo "got checkout failed unexpectedly" >&2
813 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
814 10604dce 2021-09-24 thomas return 1
815 10604dce 2021-09-24 thomas fi
816 10604dce 2021-09-24 thomas
817 10604dce 2021-09-24 thomas # create a conflicting commit
818 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q master)
819 10604dce 2021-09-24 thomas echo "modified alpha on master" > $testroot/repo/alpha
820 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on master"
821 10604dce 2021-09-24 thomas local master_commit=`git_show_head $testroot/repo`
822 10604dce 2021-09-24 thomas
823 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
824 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > /dev/null)
825 fc414659 2022-04-16 thomas ret=$?
826 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
827 10604dce 2021-09-24 thomas echo "got update failed unexpectedly" >&2
828 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
829 10604dce 2021-09-24 thomas return 1
830 10604dce 2021-09-24 thomas fi
831 10604dce 2021-09-24 thomas
832 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
833 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
834 fc414659 2022-04-16 thomas ret=$?
835 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
836 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
837 10604dce 2021-09-24 thomas test_done "$testroot" "1"
838 10604dce 2021-09-24 thomas return 1
839 10604dce 2021-09-24 thomas fi
840 10604dce 2021-09-24 thomas
841 10604dce 2021-09-24 thomas echo "C alpha" >> $testroot/stdout.expected
842 10604dce 2021-09-24 thomas echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
843 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
844 fc414659 2022-04-16 thomas ret=$?
845 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
846 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
847 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
848 10604dce 2021-09-24 thomas return 1
849 10604dce 2021-09-24 thomas fi
850 10604dce 2021-09-24 thomas
851 10604dce 2021-09-24 thomas echo "got: conflicts must be resolved before merging can continue" \
852 10604dce 2021-09-24 thomas > $testroot/stderr.expected
853 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
854 fc414659 2022-04-16 thomas ret=$?
855 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
856 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
857 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
858 10604dce 2021-09-24 thomas return 1
859 10604dce 2021-09-24 thomas fi
860 10604dce 2021-09-24 thomas
861 10604dce 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
862 10604dce 2021-09-24 thomas
863 10604dce 2021-09-24 thomas echo "C alpha" > $testroot/stdout.expected
864 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
865 fc414659 2022-04-16 thomas ret=$?
866 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
867 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
868 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
869 10604dce 2021-09-24 thomas return 1
870 10604dce 2021-09-24 thomas fi
871 10604dce 2021-09-24 thomas
872 10604dce 2021-09-24 thomas for cmd in update commit histedit "rebase newbranch" \
873 10604dce 2021-09-24 thomas "integrate newbranch" "stage alpha"; do
874 10604dce 2021-09-24 thomas (cd $testroot/wt && got $cmd > $testroot/stdout \
875 10604dce 2021-09-24 thomas 2> $testroot/stderr)
876 10604dce 2021-09-24 thomas
877 10604dce 2021-09-24 thomas echo -n > $testroot/stdout.expected
878 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
879 fc414659 2022-04-16 thomas ret=$?
880 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
881 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
882 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
883 10604dce 2021-09-24 thomas return 1
884 10604dce 2021-09-24 thomas fi
885 10604dce 2021-09-24 thomas
886 10604dce 2021-09-24 thomas echo -n "got: a merge operation is in progress in this " \
887 10604dce 2021-09-24 thomas > $testroot/stderr.expected
888 10604dce 2021-09-24 thomas echo "work tree and must be continued or aborted first" \
889 10604dce 2021-09-24 thomas >> $testroot/stderr.expected
890 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
891 fc414659 2022-04-16 thomas ret=$?
892 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
893 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
894 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
895 10604dce 2021-09-24 thomas return 1
896 10604dce 2021-09-24 thomas fi
897 10604dce 2021-09-24 thomas done
898 10604dce 2021-09-24 thomas
899 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
900 10604dce 2021-09-24 thomas }
901 10604dce 2021-09-24 thomas
902 10604dce 2021-09-24 thomas test_merge_path_prefix() {
903 10604dce 2021-09-24 thomas local testroot=`test_init merge_path_prefix`
904 10604dce 2021-09-24 thomas local commit0=`git_show_head $testroot/repo`
905 10604dce 2021-09-24 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
906 10604dce 2021-09-24 thomas
907 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q -b newbranch)
908 10604dce 2021-09-24 thomas echo "modified alpha on branch" > $testroot/repo/alpha
909 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on newbranch"
910 10604dce 2021-09-24 thomas local branch_commit0=`git_show_branch_head $testroot/repo newbranch`
911 10604dce 2021-09-24 thomas
912 10604dce 2021-09-24 thomas got checkout -p epsilon -b master $testroot/repo $testroot/wt \
913 10604dce 2021-09-24 thomas > /dev/null
914 fc414659 2022-04-16 thomas ret=$?
915 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
916 10604dce 2021-09-24 thomas echo "got checkout failed unexpectedly" >&2
917 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
918 10604dce 2021-09-24 thomas return 1
919 10604dce 2021-09-24 thomas fi
920 10604dce 2021-09-24 thomas
921 10604dce 2021-09-24 thomas # create a conflicting commit
922 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q master)
923 10604dce 2021-09-24 thomas echo "modified alpha on master" > $testroot/repo/alpha
924 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on master"
925 10604dce 2021-09-24 thomas local master_commit=`git_show_head $testroot/repo`
926 10604dce 2021-09-24 thomas
927 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
928 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > /dev/null)
929 fc414659 2022-04-16 thomas ret=$?
930 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
931 10604dce 2021-09-24 thomas echo "got update failed unexpectedly" >&2
932 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
933 10604dce 2021-09-24 thomas return 1
934 10604dce 2021-09-24 thomas fi
935 10604dce 2021-09-24 thomas
936 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
937 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
938 fc414659 2022-04-16 thomas ret=$?
939 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
940 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
941 10604dce 2021-09-24 thomas test_done "$testroot" "1"
942 10604dce 2021-09-24 thomas return 1
943 10604dce 2021-09-24 thomas fi
944 10604dce 2021-09-24 thomas
945 10604dce 2021-09-24 thomas echo -n "got: cannot merge branch which contains changes outside " \
946 10604dce 2021-09-24 thomas > $testroot/stderr.expected
947 10604dce 2021-09-24 thomas echo "of this work tree's path prefix" >> $testroot/stderr.expected
948 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
949 fc414659 2022-04-16 thomas ret=$?
950 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
951 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
952 10604dce 2021-09-24 thomas fi
953 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
954 10604dce 2021-09-24 thomas }
955 10604dce 2021-09-24 thomas
956 10604dce 2021-09-24 thomas test_merge_missing_file() {
957 10604dce 2021-09-24 thomas local testroot=`test_init merge_missing_file`
958 10604dce 2021-09-24 thomas local commit0=`git_show_head $testroot/repo`
959 10604dce 2021-09-24 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
960 10604dce 2021-09-24 thomas
961 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q -b newbranch)
962 10604dce 2021-09-24 thomas echo "modified alpha on branch" > $testroot/repo/alpha
963 10604dce 2021-09-24 thomas echo "modified delta on branch" > $testroot/repo/gamma/delta
964 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha and delta"
965 10604dce 2021-09-24 thomas local branch_commit0=`git_show_branch_head $testroot/repo newbranch`
966 10604dce 2021-09-24 thomas
967 10604dce 2021-09-24 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
968 fc414659 2022-04-16 thomas ret=$?
969 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
970 10604dce 2021-09-24 thomas echo "got checkout failed unexpectedly" >&2
971 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
972 10604dce 2021-09-24 thomas return 1
973 10604dce 2021-09-24 thomas fi
974 10604dce 2021-09-24 thomas
975 10604dce 2021-09-24 thomas # create a conflicting commit which renames alpha
976 10604dce 2021-09-24 thomas (cd $testroot/repo && git checkout -q master)
977 10604dce 2021-09-24 thomas (cd $testroot/repo && git mv alpha epsilon/alpha-moved)
978 10604dce 2021-09-24 thomas git_commit $testroot/repo -m "moving alpha on master"
979 10604dce 2021-09-24 thomas local master_commit=`git_show_head $testroot/repo`
980 10604dce 2021-09-24 thomas
981 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
982 10604dce 2021-09-24 thomas (cd $testroot/wt && got update > /dev/null)
983 fc414659 2022-04-16 thomas ret=$?
984 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
985 10604dce 2021-09-24 thomas echo "got update failed unexpectedly" >&2
986 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
987 10604dce 2021-09-24 thomas return 1
988 10604dce 2021-09-24 thomas fi
989 10604dce 2021-09-24 thomas
990 10604dce 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
991 10604dce 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
992 fc414659 2022-04-16 thomas ret=$?
993 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
994 10604dce 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
995 10604dce 2021-09-24 thomas test_done "$testroot" "1"
996 10604dce 2021-09-24 thomas return 1
997 10604dce 2021-09-24 thomas fi
998 10604dce 2021-09-24 thomas
999 10604dce 2021-09-24 thomas echo "! alpha" > $testroot/stdout.expected
1000 10604dce 2021-09-24 thomas echo "G gamma/delta" >> $testroot/stdout.expected
1001 0ef68859 2021-09-28 thomas echo -n "Files which had incoming changes but could not be found " \
1002 0ef68859 2021-09-28 thomas >> $testroot/stdout.expected
1003 0ef68859 2021-09-28 thomas echo "in the work tree: 1" >> $testroot/stdout.expected
1004 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1005 fc414659 2022-04-16 thomas ret=$?
1006 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1007 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
1008 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
1009 10604dce 2021-09-24 thomas return 1
1010 10604dce 2021-09-24 thomas fi
1011 10604dce 2021-09-24 thomas
1012 ba162991 2021-09-28 thomas echo -n "got: changes destined for some files " \
1013 10604dce 2021-09-24 thomas > $testroot/stderr.expected
1014 10604dce 2021-09-24 thomas echo -n "were not yet merged and should be merged manually if " \
1015 10604dce 2021-09-24 thomas >> $testroot/stderr.expected
1016 10604dce 2021-09-24 thomas echo "required before the merge operation is continued" \
1017 10604dce 2021-09-24 thomas >> $testroot/stderr.expected
1018 10604dce 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
1019 fc414659 2022-04-16 thomas ret=$?
1020 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1021 10604dce 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
1022 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
1023 10604dce 2021-09-24 thomas return 1
1024 10604dce 2021-09-24 thomas fi
1025 10604dce 2021-09-24 thomas
1026 10604dce 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
1027 10604dce 2021-09-24 thomas
1028 10604dce 2021-09-24 thomas echo "M gamma/delta" > $testroot/stdout.expected
1029 2d7ce510 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1030 fc414659 2022-04-16 thomas ret=$?
1031 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1032 2d7ce510 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
1033 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1034 2d7ce510 2021-09-24 thomas return 1
1035 2d7ce510 2021-09-24 thomas fi
1036 2d7ce510 2021-09-24 thomas
1037 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1038 2d7ce510 2021-09-24 thomas }
1039 2d7ce510 2021-09-24 thomas
1040 2d7ce510 2021-09-24 thomas test_merge_no_op() {
1041 2d7ce510 2021-09-24 thomas local testroot=`test_init merge_no_op`
1042 2d7ce510 2021-09-24 thomas local commit0=`git_show_head $testroot/repo`
1043 2d7ce510 2021-09-24 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
1044 2d7ce510 2021-09-24 thomas
1045 2d7ce510 2021-09-24 thomas (cd $testroot/repo && git checkout -q -b newbranch)
1046 2d7ce510 2021-09-24 thomas echo "modified alpha on branch" > $testroot/repo/alpha
1047 2d7ce510 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on newbranch"
1048 1678610c 2023-04-22 thomas local branch_commit=`git_show_branch_head $testroot/repo newbranch`
1049 2d7ce510 2021-09-24 thomas
1050 2d7ce510 2021-09-24 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
1051 fc414659 2022-04-16 thomas ret=$?
1052 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1053 2d7ce510 2021-09-24 thomas echo "got checkout failed unexpectedly" >&2
1054 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1055 2d7ce510 2021-09-24 thomas return 1
1056 2d7ce510 2021-09-24 thomas fi
1057 2d7ce510 2021-09-24 thomas
1058 2d7ce510 2021-09-24 thomas # create a conflicting commit
1059 2d7ce510 2021-09-24 thomas (cd $testroot/repo && git checkout -q master)
1060 2d7ce510 2021-09-24 thomas echo "modified alpha on master" > $testroot/repo/alpha
1061 2d7ce510 2021-09-24 thomas git_commit $testroot/repo -m "committing to alpha on master"
1062 2d7ce510 2021-09-24 thomas local master_commit=`git_show_head $testroot/repo`
1063 2d7ce510 2021-09-24 thomas
1064 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
1065 2d7ce510 2021-09-24 thomas (cd $testroot/wt && got update > /dev/null)
1066 fc414659 2022-04-16 thomas ret=$?
1067 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1068 2d7ce510 2021-09-24 thomas echo "got update failed unexpectedly" >&2
1069 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1070 2d7ce510 2021-09-24 thomas return 1
1071 2d7ce510 2021-09-24 thomas fi
1072 2d7ce510 2021-09-24 thomas
1073 2d7ce510 2021-09-24 thomas (cd $testroot/wt && got merge newbranch \
1074 2d7ce510 2021-09-24 thomas > $testroot/stdout 2> $testroot/stderr)
1075 fc414659 2022-04-16 thomas ret=$?
1076 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
1077 2d7ce510 2021-09-24 thomas echo "got merge succeeded unexpectedly" >&2
1078 2d7ce510 2021-09-24 thomas test_done "$testroot" "1"
1079 2d7ce510 2021-09-24 thomas return 1
1080 2d7ce510 2021-09-24 thomas fi
1081 2d7ce510 2021-09-24 thomas
1082 2d7ce510 2021-09-24 thomas echo "C alpha" >> $testroot/stdout.expected
1083 2d7ce510 2021-09-24 thomas echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
1084 2d7ce510 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1085 fc414659 2022-04-16 thomas ret=$?
1086 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1087 2d7ce510 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
1088 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1089 2d7ce510 2021-09-24 thomas return 1
1090 2d7ce510 2021-09-24 thomas fi
1091 2d7ce510 2021-09-24 thomas
1092 2d7ce510 2021-09-24 thomas echo "got: conflicts must be resolved before merging can continue" \
1093 2d7ce510 2021-09-24 thomas > $testroot/stderr.expected
1094 2d7ce510 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
1095 fc414659 2022-04-16 thomas ret=$?
1096 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1097 2d7ce510 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
1098 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1099 2d7ce510 2021-09-24 thomas return 1
1100 2d7ce510 2021-09-24 thomas fi
1101 2d7ce510 2021-09-24 thomas
1102 2d7ce510 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
1103 2d7ce510 2021-09-24 thomas
1104 2d7ce510 2021-09-24 thomas echo "C alpha" > $testroot/stdout.expected
1105 10604dce 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1106 fc414659 2022-04-16 thomas ret=$?
1107 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1108 10604dce 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
1109 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
1110 10604dce 2021-09-24 thomas return 1
1111 10604dce 2021-09-24 thomas fi
1112 10604dce 2021-09-24 thomas
1113 2d7ce510 2021-09-24 thomas # resolve the conflict by reverting all changes; now it is no-op merge
1114 2d7ce510 2021-09-24 thomas (cd $testroot/wt && got revert alpha > /dev/null)
1115 fc414659 2022-04-16 thomas ret=$?
1116 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1117 2d7ce510 2021-09-24 thomas echo "got revert failed unexpectedly" >&2
1118 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1119 2d7ce510 2021-09-24 thomas return 1
1120 2d7ce510 2021-09-24 thomas fi
1121 2d7ce510 2021-09-24 thomas
1122 2d7ce510 2021-09-24 thomas (cd $testroot/wt && got merge -c > $testroot/stdout \
1123 2d7ce510 2021-09-24 thomas 2> $testroot/stderr)
1124 fc414659 2022-04-16 thomas ret=$?
1125 1678610c 2023-04-22 thomas if [ $ret -ne 0 ]; then
1126 1678610c 2023-04-22 thomas echo "got merge failed unexpectedly" >&2
1127 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1128 2d7ce510 2021-09-24 thomas return 1
1129 2d7ce510 2021-09-24 thomas fi
1130 2d7ce510 2021-09-24 thomas
1131 1678610c 2023-04-22 thomas echo -n '' > $testroot/stderr.expected
1132 2d7ce510 2021-09-24 thomas cmp -s $testroot/stderr.expected $testroot/stderr
1133 fc414659 2022-04-16 thomas ret=$?
1134 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1135 2d7ce510 2021-09-24 thomas diff -u $testroot/stderr.expected $testroot/stderr
1136 1678610c 2023-04-22 thomas test_done "$testroot" "$ret"
1137 1678610c 2023-04-22 thomas return 1
1138 1678610c 2023-04-22 thomas fi
1139 1678610c 2023-04-22 thomas
1140 1678610c 2023-04-22 thomas local merge_commit=`git_show_head $testroot/repo`
1141 1678610c 2023-04-22 thomas echo -n "Merged refs/heads/newbranch into refs/heads/master: " \
1142 1678610c 2023-04-22 thomas > $testroot/stdout.expected
1143 1678610c 2023-04-22 thomas echo $merge_commit >> $testroot/stdout.expected
1144 1678610c 2023-04-22 thomas
1145 1678610c 2023-04-22 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1146 1678610c 2023-04-22 thomas ret=$?
1147 1678610c 2023-04-22 thomas if [ $ret -ne 0 ]; then
1148 1678610c 2023-04-22 thomas diff -u $testroot/stdout.expected $testroot/stdout
1149 2d7ce510 2021-09-24 thomas test_done "$testroot" "$ret"
1150 2d7ce510 2021-09-24 thomas return 1
1151 2d7ce510 2021-09-24 thomas fi
1152 2d7ce510 2021-09-24 thomas
1153 2d7ce510 2021-09-24 thomas (cd $testroot/wt && got status > $testroot/stdout)
1154 2d7ce510 2021-09-24 thomas
1155 2d7ce510 2021-09-24 thomas echo -n "" > $testroot/stdout.expected
1156 768705e3 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1157 fc414659 2022-04-16 thomas ret=$?
1158 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1159 768705e3 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1160 1678610c 2023-04-22 thomas test_done "$testroot" "$ret"
1161 1678610c 2023-04-22 thomas return 1
1162 768705e3 2021-09-27 thomas fi
1163 1678610c 2023-04-22 thomas
1164 1678610c 2023-04-22 thomas # We should have created a merge commit with two parents.
1165 1678610c 2023-04-22 thomas got log -r $testroot/repo -l1 -c $merge_commit | grep ^parent \
1166 1678610c 2023-04-22 thomas > $testroot/stdout
1167 1678610c 2023-04-22 thomas echo "parent 1: $master_commit" > $testroot/stdout.expected
1168 1678610c 2023-04-22 thomas echo "parent 2: $branch_commit" >> $testroot/stdout.expected
1169 1678610c 2023-04-22 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1170 1678610c 2023-04-22 thomas ret=$?
1171 1678610c 2023-04-22 thomas if [ $ret -ne 0 ]; then
1172 1678610c 2023-04-22 thomas diff -u $testroot/stdout.expected $testroot/stdout
1173 1678610c 2023-04-22 thomas fi
1174 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1175 768705e3 2021-09-27 thomas }
1176 768705e3 2021-09-27 thomas
1177 768705e3 2021-09-27 thomas test_merge_imported_branch() {
1178 768705e3 2021-09-27 thomas local testroot=`test_init merge_import`
1179 768705e3 2021-09-27 thomas local commit0=`git_show_head $testroot/repo`
1180 768705e3 2021-09-27 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
1181 768705e3 2021-09-27 thomas
1182 768705e3 2021-09-27 thomas # import a new sub-tree to the 'files' branch such that
1183 768705e3 2021-09-27 thomas # none of the files added here collide with existing ones
1184 768705e3 2021-09-27 thomas mkdir -p $testroot/tree/there
1185 768705e3 2021-09-27 thomas mkdir -p $testroot/tree/be/lots
1186 768705e3 2021-09-27 thomas mkdir -p $testroot/tree/files
1187 768705e3 2021-09-27 thomas echo "there should" > $testroot/tree/there/should
1188 768705e3 2021-09-27 thomas echo "be lots of" > $testroot/tree/be/lots/of
1189 768705e3 2021-09-27 thomas echo "files here" > $testroot/tree/files/here
1190 768705e3 2021-09-27 thomas got import -r $testroot/repo -b files -m 'import files' \
1191 768705e3 2021-09-27 thomas $testroot/tree > /dev/null
1192 768705e3 2021-09-27 thomas
1193 768705e3 2021-09-27 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
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 checkout 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
1201 768705e3 2021-09-27 thomas (cd $testroot/wt && got merge files > $testroot/stdout)
1202 fc414659 2022-04-16 thomas ret=$?
1203 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1204 768705e3 2021-09-27 thomas echo "got merge failed unexpectedly" >&2
1205 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1206 768705e3 2021-09-27 thomas return 1
1207 768705e3 2021-09-27 thomas fi
1208 768705e3 2021-09-27 thomas
1209 768705e3 2021-09-27 thomas local merge_commit0=`git_show_head $testroot/repo`
1210 768705e3 2021-09-27 thomas cat > $testroot/stdout.expected <<EOF
1211 768705e3 2021-09-27 thomas A be/lots/of
1212 768705e3 2021-09-27 thomas A files/here
1213 768705e3 2021-09-27 thomas A there/should
1214 768705e3 2021-09-27 thomas Merged refs/heads/files into refs/heads/master: $merge_commit0
1215 768705e3 2021-09-27 thomas EOF
1216 768705e3 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1217 fc414659 2022-04-16 thomas ret=$?
1218 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1219 768705e3 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1220 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1221 768705e3 2021-09-27 thomas return 1
1222 768705e3 2021-09-27 thomas fi
1223 768705e3 2021-09-27 thomas
1224 768705e3 2021-09-27 thomas # try to merge again while no new changes are available
1225 768705e3 2021-09-27 thomas (cd $testroot/wt && got merge files > $testroot/stdout)
1226 fc414659 2022-04-16 thomas ret=$?
1227 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1228 768705e3 2021-09-27 thomas echo "got merge failed unexpectedly" >&2
1229 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1230 768705e3 2021-09-27 thomas return 1
1231 768705e3 2021-09-27 thomas fi
1232 768705e3 2021-09-27 thomas echo "Already up-to-date" > $testroot/stdout.expected
1233 2d7ce510 2021-09-24 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1234 fc414659 2022-04-16 thomas ret=$?
1235 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1236 2d7ce510 2021-09-24 thomas diff -u $testroot/stdout.expected $testroot/stdout
1237 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1238 768705e3 2021-09-27 thomas return 1
1239 2d7ce510 2021-09-24 thomas fi
1240 768705e3 2021-09-27 thomas
1241 768705e3 2021-09-27 thomas # update the 'files' branch
1242 768705e3 2021-09-27 thomas (cd $testroot/repo && git reset -q --hard master)
1243 768705e3 2021-09-27 thomas (cd $testroot/repo && git checkout -q files)
1244 768705e3 2021-09-27 thomas echo "indeed" > $testroot/repo/indeed
1245 768705e3 2021-09-27 thomas (cd $testroot/repo && git add indeed)
1246 768705e3 2021-09-27 thomas git_commit $testroot/repo -m "adding another file indeed"
1247 768705e3 2021-09-27 thomas echo "be lots and lots of" > $testroot/repo/be/lots/of
1248 768705e3 2021-09-27 thomas git_commit $testroot/repo -m "lots of changes"
1249 768705e3 2021-09-27 thomas
1250 768705e3 2021-09-27 thomas (cd $testroot/wt && got update > /dev/null)
1251 fc414659 2022-04-16 thomas ret=$?
1252 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1253 768705e3 2021-09-27 thomas echo "got update failed unexpectedly" >&2
1254 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1255 768705e3 2021-09-27 thomas return 1
1256 768705e3 2021-09-27 thomas fi
1257 768705e3 2021-09-27 thomas
1258 768705e3 2021-09-27 thomas # we should now be able to merge more changes from files branch
1259 768705e3 2021-09-27 thomas (cd $testroot/wt && got merge files > $testroot/stdout)
1260 fc414659 2022-04-16 thomas ret=$?
1261 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1262 768705e3 2021-09-27 thomas echo "got merge failed unexpectedly" >&2
1263 768705e3 2021-09-27 thomas test_done "$testroot" "$ret"
1264 768705e3 2021-09-27 thomas return 1
1265 768705e3 2021-09-27 thomas fi
1266 768705e3 2021-09-27 thomas
1267 768705e3 2021-09-27 thomas local merge_commit1=`git_show_branch_head $testroot/repo master`
1268 768705e3 2021-09-27 thomas cat > $testroot/stdout.expected <<EOF
1269 768705e3 2021-09-27 thomas G be/lots/of
1270 768705e3 2021-09-27 thomas A indeed
1271 768705e3 2021-09-27 thomas Merged refs/heads/files into refs/heads/master: $merge_commit1
1272 768705e3 2021-09-27 thomas EOF
1273 768705e3 2021-09-27 thomas
1274 768705e3 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1275 fc414659 2022-04-16 thomas ret=$?
1276 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1277 768705e3 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1278 768705e3 2021-09-27 thomas fi
1279 10604dce 2021-09-24 thomas test_done "$testroot" "$ret"
1280 10604dce 2021-09-24 thomas }
1281 ba34626b 2021-09-27 thomas
1282 ba34626b 2021-09-27 thomas test_merge_interrupt() {
1283 ba34626b 2021-09-27 thomas local testroot=`test_init merge_interrupt`
1284 ba34626b 2021-09-27 thomas local commit0=`git_show_head $testroot/repo`
1285 ba34626b 2021-09-27 thomas local commit0_author_time=`git_show_author_time $testroot/repo`
1286 ba34626b 2021-09-27 thomas
1287 ba34626b 2021-09-27 thomas (cd $testroot/repo && git checkout -q -b newbranch)
1288 ba34626b 2021-09-27 thomas echo "modified alpha on branch" > $testroot/repo/alpha
1289 ba34626b 2021-09-27 thomas git_commit $testroot/repo -m "committing to alpha on newbranch"
1290 ba34626b 2021-09-27 thomas local branch_commit0=`git_show_branch_head $testroot/repo newbranch`
1291 ba34626b 2021-09-27 thomas
1292 ba34626b 2021-09-27 thomas got checkout -b master $testroot/repo $testroot/wt > /dev/null
1293 fc414659 2022-04-16 thomas ret=$?
1294 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1295 ba34626b 2021-09-27 thomas echo "got checkout failed unexpectedly" >&2
1296 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1297 ba34626b 2021-09-27 thomas return 1
1298 ba34626b 2021-09-27 thomas fi
1299 ba34626b 2021-09-27 thomas
1300 ba34626b 2021-09-27 thomas # create a non-conflicting commit
1301 ba34626b 2021-09-27 thomas (cd $testroot/repo && git checkout -q master)
1302 ba34626b 2021-09-27 thomas echo "modified beta on master" > $testroot/repo/beta
1303 ba34626b 2021-09-27 thomas git_commit $testroot/repo -m "committing to beta on master"
1304 ba34626b 2021-09-27 thomas local master_commit=`git_show_head $testroot/repo`
1305 10604dce 2021-09-24 thomas
1306 b6b86fd1 2022-08-30 thomas # need an up-to-date work tree for 'got merge'
1307 ba34626b 2021-09-27 thomas (cd $testroot/wt && got update > /dev/null)
1308 fc414659 2022-04-16 thomas ret=$?
1309 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1310 ba34626b 2021-09-27 thomas echo "got update failed unexpectedly" >&2
1311 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1312 ba34626b 2021-09-27 thomas return 1
1313 ba34626b 2021-09-27 thomas fi
1314 ba34626b 2021-09-27 thomas
1315 ba34626b 2021-09-27 thomas (cd $testroot/wt && got merge -n newbranch \
1316 ba34626b 2021-09-27 thomas > $testroot/stdout 2> $testroot/stderr)
1317 fc414659 2022-04-16 thomas ret=$?
1318 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1319 ba34626b 2021-09-27 thomas echo "got merge failed unexpectedly" >&2
1320 ba34626b 2021-09-27 thomas test_done "$testroot" "1"
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 echo "G alpha" > $testroot/stdout.expected
1325 ba34626b 2021-09-27 thomas echo "Merge of refs/heads/newbranch interrupted on request" \
1326 ba34626b 2021-09-27 thomas >> $testroot/stdout.expected
1327 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1328 fc414659 2022-04-16 thomas ret=$?
1329 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1330 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1331 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1332 ba34626b 2021-09-27 thomas return 1
1333 ba34626b 2021-09-27 thomas fi
1334 ba34626b 2021-09-27 thomas
1335 ba34626b 2021-09-27 thomas (cd $testroot/wt && got status > $testroot/stdout)
1336 ba34626b 2021-09-27 thomas
1337 ba34626b 2021-09-27 thomas echo "M alpha" > $testroot/stdout.expected
1338 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1339 fc414659 2022-04-16 thomas ret=$?
1340 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1341 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1342 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1343 ba34626b 2021-09-27 thomas return 1
1344 ba34626b 2021-09-27 thomas fi
1345 ba34626b 2021-09-27 thomas
1346 ba34626b 2021-09-27 thomas echo "modified alpha on branch" > $testroot/content.expected
1347 ba34626b 2021-09-27 thomas cat $testroot/wt/alpha > $testroot/content
1348 ba34626b 2021-09-27 thomas cmp -s $testroot/content.expected $testroot/content
1349 fc414659 2022-04-16 thomas ret=$?
1350 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1351 ba34626b 2021-09-27 thomas diff -u $testroot/content.expected $testroot/content
1352 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1353 ba34626b 2021-09-27 thomas return 1
1354 ba34626b 2021-09-27 thomas fi
1355 ba34626b 2021-09-27 thomas
1356 ba34626b 2021-09-27 thomas # adjust merge result
1357 ba34626b 2021-09-27 thomas echo "adjusted merge result" > $testroot/wt/alpha
1358 ba34626b 2021-09-27 thomas
1359 ba34626b 2021-09-27 thomas # continue the merge
1360 ba34626b 2021-09-27 thomas (cd $testroot/wt && got merge -c > $testroot/stdout)
1361 fc414659 2022-04-16 thomas ret=$?
1362 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1363 ba34626b 2021-09-27 thomas echo "got merge failed unexpectedly" >&2
1364 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1365 ba34626b 2021-09-27 thomas return 1
1366 ba34626b 2021-09-27 thomas fi
1367 ba34626b 2021-09-27 thomas
1368 ba34626b 2021-09-27 thomas local merge_commit=`git_show_head $testroot/repo`
1369 ba34626b 2021-09-27 thomas
1370 ae1e948a 2021-09-28 thomas echo "M alpha" > $testroot/stdout.expected
1371 ba34626b 2021-09-27 thomas echo -n "Merged refs/heads/newbranch into refs/heads/master: " \
1372 ae1e948a 2021-09-28 thomas >> $testroot/stdout.expected
1373 ba34626b 2021-09-27 thomas echo $merge_commit >> $testroot/stdout.expected
1374 ba34626b 2021-09-27 thomas
1375 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1376 fc414659 2022-04-16 thomas ret=$?
1377 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1378 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1379 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1380 ba34626b 2021-09-27 thomas return 1
1381 ba34626b 2021-09-27 thomas fi
1382 ba34626b 2021-09-27 thomas
1383 ba34626b 2021-09-27 thomas (cd $testroot/wt && got status > $testroot/stdout)
1384 ba34626b 2021-09-27 thomas
1385 ba34626b 2021-09-27 thomas echo -n > $testroot/stdout.expected
1386 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1387 fc414659 2022-04-16 thomas ret=$?
1388 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1389 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1390 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1391 ba34626b 2021-09-27 thomas return 1
1392 ba34626b 2021-09-27 thomas fi
1393 ba34626b 2021-09-27 thomas
1394 ba34626b 2021-09-27 thomas (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1395 ba34626b 2021-09-27 thomas echo "commit $merge_commit (master)" > $testroot/stdout.expected
1396 ba34626b 2021-09-27 thomas echo "commit $master_commit" >> $testroot/stdout.expected
1397 ba34626b 2021-09-27 thomas echo "commit $commit0" >> $testroot/stdout.expected
1398 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1399 fc414659 2022-04-16 thomas ret=$?
1400 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1401 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1402 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1403 ba34626b 2021-09-27 thomas return 1
1404 ba34626b 2021-09-27 thomas fi
1405 ba34626b 2021-09-27 thomas
1406 ba34626b 2021-09-27 thomas (cd $testroot/wt && got update > $testroot/stdout)
1407 ba34626b 2021-09-27 thomas
1408 ba34626b 2021-09-27 thomas echo 'Already up-to-date' > $testroot/stdout.expected
1409 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1410 fc414659 2022-04-16 thomas ret=$?
1411 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1412 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1413 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1414 ba34626b 2021-09-27 thomas return 1
1415 ba34626b 2021-09-27 thomas fi
1416 ba34626b 2021-09-27 thomas
1417 ba34626b 2021-09-27 thomas # We should have created a merge commit with two parents.
1418 ba34626b 2021-09-27 thomas (cd $testroot/wt && got log -l1 | grep ^parent > $testroot/stdout)
1419 ba34626b 2021-09-27 thomas echo "parent 1: $master_commit" > $testroot/stdout.expected
1420 ba34626b 2021-09-27 thomas echo "parent 2: $branch_commit0" >> $testroot/stdout.expected
1421 ba34626b 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1422 fc414659 2022-04-16 thomas ret=$?
1423 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1424 ba34626b 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
1425 ba34626b 2021-09-27 thomas fi
1426 ba34626b 2021-09-27 thomas test_done "$testroot" "$ret"
1427 a2c162eb 2022-10-30 thomas }
1428 a2c162eb 2022-10-30 thomas
1429 a2c162eb 2022-10-30 thomas test_merge_umask() {
1430 a2c162eb 2022-10-30 thomas local testroot=`test_init merge_umask`
1431 a2c162eb 2022-10-30 thomas
1432 a2c162eb 2022-10-30 thomas (cd $testroot/repo && git checkout -q -b newbranch)
1433 a2c162eb 2022-10-30 thomas echo "modified alpha on branch" >$testroot/repo/alpha
1434 a2c162eb 2022-10-30 thomas git_commit "$testroot/repo" -m "committing alpha on newbranch"
1435 a2c162eb 2022-10-30 thomas echo "modified delta on branch" >$testroot/repo/gamma/delta
1436 a2c162eb 2022-10-30 thomas git_commit "$testroot/repo" -m "committing delta on newbranch"
1437 a2c162eb 2022-10-30 thomas
1438 a2c162eb 2022-10-30 thomas # diverge from newbranch
1439 a2c162eb 2022-10-30 thomas (cd "$testroot/repo" && git checkout -q master)
1440 a2c162eb 2022-10-30 thomas echo "modified beta on master" >$testroot/repo/beta
1441 a2c162eb 2022-10-30 thomas git_commit "$testroot/repo" -m "committing zeto no master"
1442 a2c162eb 2022-10-30 thomas
1443 a2c162eb 2022-10-30 thomas got checkout "$testroot/repo" "$testroot/wt" >/dev/null
1444 a2c162eb 2022-10-30 thomas
1445 a2c162eb 2022-10-30 thomas # using a subshell to avoid clobbering global umask
1446 a2c162eb 2022-10-30 thomas (umask 077 && cd "$testroot/wt" && got merge newbranch) >/dev/null
1447 a2c162eb 2022-10-30 thomas
1448 a2c162eb 2022-10-30 thomas for f in alpha gamma/delta; do
1449 a2c162eb 2022-10-30 thomas ls -l "$testroot/wt/$f" | grep -q ^-rw-------
1450 a2c162eb 2022-10-30 thomas if [ $? -ne 0 ]; then
1451 a2c162eb 2022-10-30 thomas echo "$f is not 0600 after merge" >&2
1452 a2c162eb 2022-10-30 thomas ls -l "$testroot/wt/$f" >&2
1453 a2c162eb 2022-10-30 thomas test_done "$testroot" 1
1454 a2c162eb 2022-10-30 thomas fi
1455 a2c162eb 2022-10-30 thomas done
1456 a2c162eb 2022-10-30 thomas
1457 a2c162eb 2022-10-30 thomas test_done "$testroot" 0
1458 ba34626b 2021-09-27 thomas }
1459 b16f1832 2023-02-21 thomas
1460 b16f1832 2023-02-21 thomas test_merge_gitconfig_author() {
1461 b16f1832 2023-02-21 thomas local testroot=`test_init merge_gitconfig_author`
1462 b16f1832 2023-02-21 thomas
1463 b16f1832 2023-02-21 thomas (cd $testroot/repo && git config user.name 'Flan Luck')
1464 b16f1832 2023-02-21 thomas (cd $testroot/repo && git config user.email 'flan_luck@openbsd.org')
1465 b16f1832 2023-02-21 thomas
1466 b16f1832 2023-02-21 thomas (cd $testroot/repo && git checkout -q -b newbranch)
1467 b16f1832 2023-02-21 thomas echo "modified alpha on branch" >$testroot/repo/alpha
1468 b16f1832 2023-02-21 thomas git_commit "$testroot/repo" -m "committing alpha on newbranch"
1469 b16f1832 2023-02-21 thomas echo "modified delta on branch" >$testroot/repo/gamma/delta
1470 b16f1832 2023-02-21 thomas git_commit "$testroot/repo" -m "committing delta on newbranch"
1471 ba34626b 2021-09-27 thomas
1472 b16f1832 2023-02-21 thomas # diverge from newbranch
1473 b16f1832 2023-02-21 thomas (cd "$testroot/repo" && git checkout -q master)
1474 b16f1832 2023-02-21 thomas echo "modified beta on master" >$testroot/repo/beta
1475 b16f1832 2023-02-21 thomas git_commit "$testroot/repo" -m "committing zeto no master"
1476 b16f1832 2023-02-21 thomas
1477 b16f1832 2023-02-21 thomas got checkout "$testroot/repo" "$testroot/wt" >/dev/null
1478 b16f1832 2023-02-21 thomas
1479 b16f1832 2023-02-21 thomas # unset in a subshell to avoid affecting our environment
1480 b16f1832 2023-02-21 thomas (unset GOT_IGNORE_GITCONFIG && cd $testroot/wt && \
1481 b16f1832 2023-02-21 thomas got merge newbranch > /dev/null)
1482 b16f1832 2023-02-21 thomas
1483 b16f1832 2023-02-21 thomas (cd $testroot/repo && got log -l1 | grep ^from: > $testroot/stdout)
1484 b16f1832 2023-02-21 thomas ret=$?
1485 b16f1832 2023-02-21 thomas if [ $ret -ne 0 ]; then
1486 b16f1832 2023-02-21 thomas test_done "$testroot" "$ret"
1487 b16f1832 2023-02-21 thomas return 1
1488 b16f1832 2023-02-21 thomas fi
1489 b16f1832 2023-02-21 thomas
1490 b16f1832 2023-02-21 thomas echo "from: Flan Luck <flan_luck@openbsd.org>" \
1491 b16f1832 2023-02-21 thomas > $testroot/stdout.expected
1492 b16f1832 2023-02-21 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1493 b16f1832 2023-02-21 thomas ret=$?
1494 b16f1832 2023-02-21 thomas if [ $ret -ne 0 ]; then
1495 b16f1832 2023-02-21 thomas diff -u $testroot/stdout.expected $testroot/stdout
1496 b16f1832 2023-02-21 thomas fi
1497 b16f1832 2023-02-21 thomas test_done "$testroot" "$ret"
1498 b16f1832 2023-02-21 thomas }
1499 b16f1832 2023-02-21 thomas
1500 10604dce 2021-09-24 thomas test_parseargs "$@"
1501 10604dce 2021-09-24 thomas run_test test_merge_basic
1502 10604dce 2021-09-24 thomas run_test test_merge_continue
1503 10604dce 2021-09-24 thomas run_test test_merge_abort
1504 10604dce 2021-09-24 thomas run_test test_merge_in_progress
1505 10604dce 2021-09-24 thomas run_test test_merge_path_prefix
1506 10604dce 2021-09-24 thomas run_test test_merge_missing_file
1507 2d7ce510 2021-09-24 thomas run_test test_merge_no_op
1508 768705e3 2021-09-27 thomas run_test test_merge_imported_branch
1509 ba34626b 2021-09-27 thomas run_test test_merge_interrupt
1510 a2c162eb 2022-10-30 thomas run_test test_merge_umask
1511 b16f1832 2023-02-21 thomas run_test test_merge_gitconfig_author