Blame


1 234035bc 2019-06-01 stsp #!/bin/sh
2 234035bc 2019-06-01 stsp #
3 234035bc 2019-06-01 stsp # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 234035bc 2019-06-01 stsp #
5 234035bc 2019-06-01 stsp # Permission to use, copy, modify, and distribute this software for any
6 234035bc 2019-06-01 stsp # purpose with or without fee is hereby granted, provided that the above
7 234035bc 2019-06-01 stsp # copyright notice and this permission notice appear in all copies.
8 234035bc 2019-06-01 stsp #
9 234035bc 2019-06-01 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 234035bc 2019-06-01 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 234035bc 2019-06-01 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 234035bc 2019-06-01 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 234035bc 2019-06-01 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 234035bc 2019-06-01 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 234035bc 2019-06-01 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 234035bc 2019-06-01 stsp
17 234035bc 2019-06-01 stsp . ./common.sh
18 234035bc 2019-06-01 stsp
19 f6cae3ed 2020-09-13 naddy test_cherrypick_basic() {
20 234035bc 2019-06-01 stsp local testroot=`test_init cherrypick_basic`
21 234035bc 2019-06-01 stsp
22 234035bc 2019-06-01 stsp got checkout $testroot/repo $testroot/wt > /dev/null
23 49c543a6 2022-03-31 naddy ret=$?
24 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
25 234035bc 2019-06-01 stsp test_done "$testroot" "$ret"
26 234035bc 2019-06-01 stsp return 1
27 234035bc 2019-06-01 stsp fi
28 234035bc 2019-06-01 stsp
29 234035bc 2019-06-01 stsp (cd $testroot/repo && git checkout -q -b newbranch)
30 234035bc 2019-06-01 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
31 234035bc 2019-06-01 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
32 234035bc 2019-06-01 stsp
33 234035bc 2019-06-01 stsp echo "modified alpha on branch" > $testroot/repo/alpha
34 234035bc 2019-06-01 stsp (cd $testroot/repo && git rm -q beta)
35 234035bc 2019-06-01 stsp echo "new file on branch" > $testroot/repo/epsilon/new
36 234035bc 2019-06-01 stsp (cd $testroot/repo && git add epsilon/new)
37 234035bc 2019-06-01 stsp git_commit $testroot/repo -m "committing more changes on newbranch"
38 234035bc 2019-06-01 stsp
39 234035bc 2019-06-01 stsp local branch_rev=`git_show_head $testroot/repo`
40 234035bc 2019-06-01 stsp
41 243a13f5 2021-09-02 stsp echo "modified new file on branch" > $testroot/repo/epsilon/new
42 243a13f5 2021-09-02 stsp git_commit $testroot/repo -m "committing more changes on newbranch"
43 243a13f5 2021-09-02 stsp local branch_rev2=`git_show_head $testroot/repo`
44 243a13f5 2021-09-02 stsp
45 234035bc 2019-06-01 stsp (cd $testroot/wt && got cherrypick $branch_rev > $testroot/stdout)
46 234035bc 2019-06-01 stsp
47 234035bc 2019-06-01 stsp echo "G alpha" > $testroot/stdout.expected
48 234035bc 2019-06-01 stsp echo "D beta" >> $testroot/stdout.expected
49 234035bc 2019-06-01 stsp echo "A epsilon/new" >> $testroot/stdout.expected
50 a7648d7a 2019-06-02 stsp echo "Merged commit $branch_rev" >> $testroot/stdout.expected
51 234035bc 2019-06-01 stsp
52 234035bc 2019-06-01 stsp cmp -s $testroot/stdout.expected $testroot/stdout
53 49c543a6 2022-03-31 naddy ret=$?
54 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
55 234035bc 2019-06-01 stsp diff -u $testroot/stdout.expected $testroot/stdout
56 234035bc 2019-06-01 stsp test_done "$testroot" "$ret"
57 234035bc 2019-06-01 stsp return 1
58 234035bc 2019-06-01 stsp fi
59 234035bc 2019-06-01 stsp
60 234035bc 2019-06-01 stsp echo "modified alpha on branch" > $testroot/content.expected
61 234035bc 2019-06-01 stsp cat $testroot/wt/alpha > $testroot/content
62 234035bc 2019-06-01 stsp cmp -s $testroot/content.expected $testroot/content
63 49c543a6 2022-03-31 naddy ret=$?
64 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
65 234035bc 2019-06-01 stsp diff -u $testroot/content.expected $testroot/content
66 234035bc 2019-06-01 stsp test_done "$testroot" "$ret"
67 234035bc 2019-06-01 stsp return 1
68 234035bc 2019-06-01 stsp fi
69 234035bc 2019-06-01 stsp
70 234035bc 2019-06-01 stsp if [ -e $testroot/wt/beta ]; then
71 234035bc 2019-06-01 stsp echo "removed file beta still exists on disk" >&2
72 234035bc 2019-06-01 stsp test_done "$testroot" "1"
73 234035bc 2019-06-01 stsp return 1
74 234035bc 2019-06-01 stsp fi
75 234035bc 2019-06-01 stsp
76 234035bc 2019-06-01 stsp echo "new file on branch" > $testroot/content.expected
77 234035bc 2019-06-01 stsp cat $testroot/wt/epsilon/new > $testroot/content
78 234035bc 2019-06-01 stsp cmp -s $testroot/content.expected $testroot/content
79 49c543a6 2022-03-31 naddy ret=$?
80 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
81 234035bc 2019-06-01 stsp diff -u $testroot/content.expected $testroot/content
82 234035bc 2019-06-01 stsp test_done "$testroot" "$ret"
83 234035bc 2019-06-01 stsp return 1
84 234035bc 2019-06-01 stsp fi
85 234035bc 2019-06-01 stsp
86 2b92fad7 2019-06-02 stsp echo 'M alpha' > $testroot/stdout.expected
87 2b92fad7 2019-06-02 stsp echo 'D beta' >> $testroot/stdout.expected
88 2b92fad7 2019-06-02 stsp echo 'A epsilon/new' >> $testroot/stdout.expected
89 2b92fad7 2019-06-02 stsp
90 2b92fad7 2019-06-02 stsp (cd $testroot/wt && got status > $testroot/stdout)
91 2b92fad7 2019-06-02 stsp
92 2b92fad7 2019-06-02 stsp cmp -s $testroot/stdout.expected $testroot/stdout
93 49c543a6 2022-03-31 naddy ret=$?
94 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
95 2b92fad7 2019-06-02 stsp diff -u $testroot/stdout.expected $testroot/stdout
96 243a13f5 2021-09-02 stsp test_done "$testroot" "$ret"
97 243a13f5 2021-09-02 stsp return 1
98 2b92fad7 2019-06-02 stsp fi
99 243a13f5 2021-09-02 stsp
100 243a13f5 2021-09-02 stsp (cd $testroot/wt && got cherrypick $branch_rev2 > $testroot/stdout)
101 243a13f5 2021-09-02 stsp
102 243a13f5 2021-09-02 stsp echo "G epsilon/new" > $testroot/stdout.expected
103 243a13f5 2021-09-02 stsp echo "Merged commit $branch_rev2" >> $testroot/stdout.expected
104 243a13f5 2021-09-02 stsp
105 243a13f5 2021-09-02 stsp cmp -s $testroot/stdout.expected $testroot/stdout
106 49c543a6 2022-03-31 naddy ret=$?
107 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
108 243a13f5 2021-09-02 stsp diff -u $testroot/stdout.expected $testroot/stdout
109 243a13f5 2021-09-02 stsp test_done "$testroot" "$ret"
110 243a13f5 2021-09-02 stsp return 1
111 243a13f5 2021-09-02 stsp fi
112 243a13f5 2021-09-02 stsp
113 243a13f5 2021-09-02 stsp echo 'M alpha' > $testroot/stdout.expected
114 243a13f5 2021-09-02 stsp echo 'D beta' >> $testroot/stdout.expected
115 243a13f5 2021-09-02 stsp echo 'A epsilon/new' >> $testroot/stdout.expected
116 243a13f5 2021-09-02 stsp
117 243a13f5 2021-09-02 stsp (cd $testroot/wt && got status > $testroot/stdout)
118 243a13f5 2021-09-02 stsp
119 243a13f5 2021-09-02 stsp cmp -s $testroot/stdout.expected $testroot/stdout
120 49c543a6 2022-03-31 naddy ret=$?
121 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
122 243a13f5 2021-09-02 stsp diff -u $testroot/stdout.expected $testroot/stdout
123 243a13f5 2021-09-02 stsp fi
124 234035bc 2019-06-01 stsp test_done "$testroot" "$ret"
125 234035bc 2019-06-01 stsp }
126 234035bc 2019-06-01 stsp
127 f6cae3ed 2020-09-13 naddy test_cherrypick_root_commit() {
128 03415a1a 2019-06-02 stsp local testroot=`test_init cherrypick_root_commit`
129 03415a1a 2019-06-02 stsp
130 03415a1a 2019-06-02 stsp got checkout $testroot/repo $testroot/wt > /dev/null
131 49c543a6 2022-03-31 naddy ret=$?
132 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
133 03415a1a 2019-06-02 stsp test_done "$testroot" "$ret"
134 03415a1a 2019-06-02 stsp return 1
135 03415a1a 2019-06-02 stsp fi
136 03415a1a 2019-06-02 stsp
137 03415a1a 2019-06-02 stsp (cd $testroot/repo && git checkout -q -b newbranch)
138 03415a1a 2019-06-02 stsp (cd $testroot/repo && git rm -q alpha)
139 03415a1a 2019-06-02 stsp (cd $testroot/repo && git rm -q beta)
140 03415a1a 2019-06-02 stsp (cd $testroot/repo && git rm -q epsilon/zeta)
141 03415a1a 2019-06-02 stsp (cd $testroot/repo && git rm -q gamma/delta)
142 03415a1a 2019-06-02 stsp mkdir -p $testroot/repo/epsilon
143 03415a1a 2019-06-02 stsp echo "new file on branch" > $testroot/repo/epsilon/new
144 03415a1a 2019-06-02 stsp (cd $testroot/repo && git add epsilon/new)
145 03415a1a 2019-06-02 stsp git_commit $testroot/repo -m "committing on newbranch"
146 03415a1a 2019-06-02 stsp
147 03415a1a 2019-06-02 stsp echo "modified new file on branch" >> $testroot/repo/epsilon/new
148 03415a1a 2019-06-02 stsp git_commit $testroot/repo -m "committing on newbranch again"
149 03415a1a 2019-06-02 stsp
150 03415a1a 2019-06-02 stsp tree=`git_show_tree $testroot/repo`
151 03415a1a 2019-06-02 stsp root_commit=`git_commit_tree $testroot/repo "new root commit" $tree`
152 03415a1a 2019-06-02 stsp
153 03415a1a 2019-06-02 stsp (cd $testroot/wt && got cherrypick $root_commit > $testroot/stdout)
154 03415a1a 2019-06-02 stsp
155 03415a1a 2019-06-02 stsp echo "A epsilon/new" > $testroot/stdout.expected
156 a7648d7a 2019-06-02 stsp echo "Merged commit $root_commit" >> $testroot/stdout.expected
157 03415a1a 2019-06-02 stsp
158 03415a1a 2019-06-02 stsp cmp -s $testroot/stdout.expected $testroot/stdout
159 49c543a6 2022-03-31 naddy ret=$?
160 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
161 03415a1a 2019-06-02 stsp diff -u $testroot/stdout.expected $testroot/stdout
162 03415a1a 2019-06-02 stsp test_done "$testroot" "$ret"
163 03415a1a 2019-06-02 stsp return 1
164 03415a1a 2019-06-02 stsp fi
165 03415a1a 2019-06-02 stsp
166 03415a1a 2019-06-02 stsp echo "new file on branch" > $testroot/content.expected
167 03415a1a 2019-06-02 stsp echo "modified new file on branch" >> $testroot/content.expected
168 03415a1a 2019-06-02 stsp cat $testroot/wt/epsilon/new > $testroot/content
169 03415a1a 2019-06-02 stsp cmp -s $testroot/content.expected $testroot/content
170 49c543a6 2022-03-31 naddy ret=$?
171 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
172 03415a1a 2019-06-02 stsp diff -u $testroot/content.expected $testroot/content
173 03415a1a 2019-06-02 stsp test_done "$testroot" "$ret"
174 03415a1a 2019-06-02 stsp return 1
175 03415a1a 2019-06-02 stsp fi
176 03415a1a 2019-06-02 stsp
177 03415a1a 2019-06-02 stsp echo 'A epsilon/new' > $testroot/stdout.expected
178 03415a1a 2019-06-02 stsp
179 03415a1a 2019-06-02 stsp (cd $testroot/wt && got status > $testroot/stdout)
180 03415a1a 2019-06-02 stsp
181 03415a1a 2019-06-02 stsp cmp -s $testroot/stdout.expected $testroot/stdout
182 49c543a6 2022-03-31 naddy ret=$?
183 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
184 03415a1a 2019-06-02 stsp diff -u $testroot/stdout.expected $testroot/stdout
185 03415a1a 2019-06-02 stsp fi
186 03415a1a 2019-06-02 stsp test_done "$testroot" "$ret"
187 03415a1a 2019-06-02 stsp }
188 03415a1a 2019-06-02 stsp
189 f6cae3ed 2020-09-13 naddy test_cherrypick_into_work_tree_with_conflicts() {
190 ceb466a7 2020-04-18 stsp local testroot=`test_init cherrypick_into_work_tree_with_conflicts`
191 ceb466a7 2020-04-18 stsp
192 ceb466a7 2020-04-18 stsp got checkout $testroot/repo $testroot/wt > /dev/null
193 49c543a6 2022-03-31 naddy ret=$?
194 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
195 ceb466a7 2020-04-18 stsp test_done "$testroot" "$ret"
196 ceb466a7 2020-04-18 stsp return 1
197 ceb466a7 2020-04-18 stsp fi
198 ceb466a7 2020-04-18 stsp
199 ceb466a7 2020-04-18 stsp (cd $testroot/repo && git checkout -q -b newbranch)
200 ceb466a7 2020-04-18 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
201 ceb466a7 2020-04-18 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
202 ceb466a7 2020-04-18 stsp
203 ceb466a7 2020-04-18 stsp echo "modified alpha on branch" > $testroot/repo/alpha
204 ceb466a7 2020-04-18 stsp (cd $testroot/repo && git rm -q beta)
205 ceb466a7 2020-04-18 stsp echo "new file on branch" > $testroot/repo/epsilon/new
206 ceb466a7 2020-04-18 stsp (cd $testroot/repo && git add epsilon/new)
207 ceb466a7 2020-04-18 stsp git_commit $testroot/repo -m "committing more changes on newbranch"
208 ceb466a7 2020-04-18 stsp
209 ceb466a7 2020-04-18 stsp local branch_rev=`git_show_head $testroot/repo`
210 ceb466a7 2020-04-18 stsp
211 ceb466a7 2020-04-18 stsp # fake a merge conflict
212 ceb466a7 2020-04-18 stsp echo '<<<<<<<' > $testroot/wt/alpha
213 ceb466a7 2020-04-18 stsp echo 'alpha' >> $testroot/wt/alpha
214 ceb466a7 2020-04-18 stsp echo '=======' >> $testroot/wt/alpha
215 ceb466a7 2020-04-18 stsp echo 'alpha, too' >> $testroot/wt/alpha
216 ceb466a7 2020-04-18 stsp echo '>>>>>>>' >> $testroot/wt/alpha
217 ceb466a7 2020-04-18 stsp cp $testroot/wt/alpha $testroot/content.expected
218 ceb466a7 2020-04-18 stsp
219 ceb466a7 2020-04-18 stsp echo "C alpha" > $testroot/stdout.expected
220 ceb466a7 2020-04-18 stsp (cd $testroot/wt && got status > $testroot/stdout)
221 ceb466a7 2020-04-18 stsp cmp -s $testroot/stdout.expected $testroot/stdout
222 49c543a6 2022-03-31 naddy ret=$?
223 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
224 ceb466a7 2020-04-18 stsp diff -u $testroot/stdout.expected $testroot/stdout
225 ceb466a7 2020-04-18 stsp test_done "$testroot" "$ret"
226 ceb466a7 2020-04-18 stsp return 1
227 ceb466a7 2020-04-18 stsp fi
228 ceb466a7 2020-04-18 stsp
229 ceb466a7 2020-04-18 stsp (cd $testroot/wt && got cherrypick $branch_rev \
230 ceb466a7 2020-04-18 stsp > $testroot/stdout 2> $testroot/stderr)
231 49c543a6 2022-03-31 naddy ret=$?
232 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
233 ceb466a7 2020-04-18 stsp echo "cherrypick succeeded unexpectedly" >&2
234 ceb466a7 2020-04-18 stsp test_done "$testroot" "1"
235 ceb466a7 2020-04-18 stsp return 1
236 ceb466a7 2020-04-18 stsp fi
237 ceb466a7 2020-04-18 stsp
238 ceb466a7 2020-04-18 stsp echo -n > $testroot/stdout.expected
239 ceb466a7 2020-04-18 stsp echo -n "got: work tree contains conflicted files; " \
240 ceb466a7 2020-04-18 stsp > $testroot/stderr.expected
241 ceb466a7 2020-04-18 stsp echo "these conflicts must be resolved first" \
242 ceb466a7 2020-04-18 stsp >> $testroot/stderr.expected
243 ceb466a7 2020-04-18 stsp
244 ceb466a7 2020-04-18 stsp cmp -s $testroot/stdout.expected $testroot/stdout
245 49c543a6 2022-03-31 naddy ret=$?
246 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
247 ceb466a7 2020-04-18 stsp diff -u $testroot/stdout.expected $testroot/stdout
248 ceb466a7 2020-04-18 stsp test_done "$testroot" "$ret"
249 ceb466a7 2020-04-18 stsp return 1
250 ceb466a7 2020-04-18 stsp fi
251 ceb466a7 2020-04-18 stsp
252 ceb466a7 2020-04-18 stsp cmp -s $testroot/stderr.expected $testroot/stderr
253 49c543a6 2022-03-31 naddy ret=$?
254 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
255 ceb466a7 2020-04-18 stsp diff -u $testroot/stderr.expected $testroot/stderr
256 ceb466a7 2020-04-18 stsp test_done "$testroot" "$ret"
257 ceb466a7 2020-04-18 stsp return 1
258 ceb466a7 2020-04-18 stsp fi
259 ceb466a7 2020-04-18 stsp
260 ceb466a7 2020-04-18 stsp cmp -s $testroot/content.expected $testroot/wt/alpha
261 49c543a6 2022-03-31 naddy ret=$?
262 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
263 ceb466a7 2020-04-18 stsp diff -u $testroot/content.expected $testroot/wt/alpha
264 e7303626 2020-05-14 stsp fi
265 e7303626 2020-05-14 stsp test_done "$testroot" "$ret"
266 e7303626 2020-05-14 stsp }
267 ed99f061 2021-09-03 stsp
268 ed99f061 2021-09-03 stsp test_cherrypick_into_work_tree_with_mixed_commits() {
269 ed99f061 2021-09-03 stsp local testroot=`test_init cherrypick_into_work_tree_with_mixed_commits`
270 ed99f061 2021-09-03 stsp local first_rev=`git_show_head $testroot/repo`
271 ed99f061 2021-09-03 stsp
272 ed99f061 2021-09-03 stsp echo "modified alpha" > $testroot/repo/alpha
273 5e91dae4 2022-08-30 stsp git_commit $testroot/repo -m "committing to alpha"
274 ed99f061 2021-09-03 stsp local second_rev=`git_show_head $testroot/repo`
275 ed99f061 2021-09-03 stsp
276 ed99f061 2021-09-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
277 49c543a6 2022-03-31 naddy ret=$?
278 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
279 ed99f061 2021-09-03 stsp test_done "$testroot" "$ret"
280 ed99f061 2021-09-03 stsp return 1
281 ed99f061 2021-09-03 stsp fi
282 ed99f061 2021-09-03 stsp
283 ed99f061 2021-09-03 stsp (cd $testroot/repo && git checkout -q -b newbranch)
284 ed99f061 2021-09-03 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
285 ed99f061 2021-09-03 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
286 e7303626 2020-05-14 stsp
287 ed99f061 2021-09-03 stsp (cd $testroot/repo && git rm -q beta)
288 ed99f061 2021-09-03 stsp echo "new file on branch" > $testroot/repo/epsilon/new
289 ed99f061 2021-09-03 stsp (cd $testroot/repo && git add epsilon/new)
290 ed99f061 2021-09-03 stsp git_commit $testroot/repo -m "committing more changes on newbranch"
291 ed99f061 2021-09-03 stsp
292 ed99f061 2021-09-03 stsp local branch_rev=`git_show_head $testroot/repo`
293 ed99f061 2021-09-03 stsp
294 ed99f061 2021-09-03 stsp (cd $testroot/wt && got update -c $first_rev alpha >/dev/null)
295 ed99f061 2021-09-03 stsp
296 ed99f061 2021-09-03 stsp (cd $testroot/wt && got cherrypick $branch_rev \
297 ed99f061 2021-09-03 stsp > $testroot/stdout 2> $testroot/stderr)
298 49c543a6 2022-03-31 naddy ret=$?
299 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
300 ed99f061 2021-09-03 stsp echo "cherrypick succeeded unexpectedly" >&2
301 ed99f061 2021-09-03 stsp test_done "$testroot" "1"
302 ed99f061 2021-09-03 stsp return 1
303 ed99f061 2021-09-03 stsp fi
304 ed99f061 2021-09-03 stsp
305 ed99f061 2021-09-03 stsp echo -n > $testroot/stdout.expected
306 ed99f061 2021-09-03 stsp echo -n "got: work tree contains files from multiple base commits; " \
307 ed99f061 2021-09-03 stsp > $testroot/stderr.expected
308 ed99f061 2021-09-03 stsp echo "the entire work tree must be updated first" \
309 ed99f061 2021-09-03 stsp >> $testroot/stderr.expected
310 ed99f061 2021-09-03 stsp
311 ed99f061 2021-09-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
312 49c543a6 2022-03-31 naddy ret=$?
313 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
314 ed99f061 2021-09-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
315 ed99f061 2021-09-03 stsp test_done "$testroot" "$ret"
316 ed99f061 2021-09-03 stsp return 1
317 ed99f061 2021-09-03 stsp fi
318 ed99f061 2021-09-03 stsp
319 ed99f061 2021-09-03 stsp cmp -s $testroot/stderr.expected $testroot/stderr
320 49c543a6 2022-03-31 naddy ret=$?
321 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
322 ed99f061 2021-09-03 stsp diff -u $testroot/stderr.expected $testroot/stderr
323 ed99f061 2021-09-03 stsp fi
324 ed99f061 2021-09-03 stsp test_done "$testroot" "$ret"
325 ed99f061 2021-09-03 stsp
326 ed99f061 2021-09-03 stsp }
327 ed99f061 2021-09-03 stsp
328 f6cae3ed 2020-09-13 naddy test_cherrypick_modified_submodule() {
329 e7303626 2020-05-14 stsp local testroot=`test_init cherrypick_modified_submodules`
330 e7303626 2020-05-14 stsp
331 e7303626 2020-05-14 stsp make_single_file_repo $testroot/repo2 foo
332 e7303626 2020-05-14 stsp
333 f1aec6ed 2022-10-24 stsp (cd $testroot/repo && git -c protocol.file.allow=always \
334 f1aec6ed 2022-10-24 stsp submodule -q add ../repo2)
335 e7303626 2020-05-14 stsp (cd $testroot/repo && git commit -q -m 'adding submodule')
336 e7303626 2020-05-14 stsp
337 e7303626 2020-05-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
338 e7303626 2020-05-14 stsp
339 e7303626 2020-05-14 stsp echo "modified foo" > $testroot/repo2/foo
340 e7303626 2020-05-14 stsp (cd $testroot/repo2 && git commit -q -a -m 'modified a submodule')
341 e7303626 2020-05-14 stsp
342 e7303626 2020-05-14 stsp (cd $testroot/repo && git checkout -q -b newbranch)
343 e7303626 2020-05-14 stsp # Update the repo/repo2 submodule link on newbranch
344 e7303626 2020-05-14 stsp (cd $testroot/repo && git -C repo2 pull -q)
345 e7303626 2020-05-14 stsp (cd $testroot/repo && git add repo2)
346 e7303626 2020-05-14 stsp git_commit $testroot/repo -m "modified submodule link"
347 e7303626 2020-05-14 stsp local commit_id=`git_show_head $testroot/repo`
348 e7303626 2020-05-14 stsp
349 e7303626 2020-05-14 stsp # This cherrypick is a no-op because Got's file index
350 e7303626 2020-05-14 stsp # does not track submodules.
351 e7303626 2020-05-14 stsp (cd $testroot/wt && got cherrypick $commit_id > $testroot/stdout)
352 e7303626 2020-05-14 stsp
353 e7303626 2020-05-14 stsp echo -n > $testroot/stdout.expected
354 e7303626 2020-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
355 49c543a6 2022-03-31 naddy ret=$?
356 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
357 e7303626 2020-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
358 e7303626 2020-05-14 stsp fi
359 e7303626 2020-05-14 stsp test_done "$testroot" "$ret"
360 e7303626 2020-05-14 stsp }
361 e7303626 2020-05-14 stsp
362 f6cae3ed 2020-09-13 naddy test_cherrypick_added_submodule() {
363 e7303626 2020-05-14 stsp local testroot=`test_init cherrypick_added_submodules`
364 e7303626 2020-05-14 stsp
365 e7303626 2020-05-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
366 e7303626 2020-05-14 stsp
367 e7303626 2020-05-14 stsp make_single_file_repo $testroot/repo2 foo
368 e7303626 2020-05-14 stsp
369 e7303626 2020-05-14 stsp # Add the repo/repo2 submodule on newbranch
370 e7303626 2020-05-14 stsp (cd $testroot/repo && git checkout -q -b newbranch)
371 f1aec6ed 2022-10-24 stsp (cd $testroot/repo && git -c protocol.file.allow=always \
372 f1aec6ed 2022-10-24 stsp submodule -q add ../repo2)
373 e7303626 2020-05-14 stsp (cd $testroot/repo && git commit -q -m 'adding submodule')
374 e7303626 2020-05-14 stsp local commit_id=`git_show_head $testroot/repo`
375 e7303626 2020-05-14 stsp
376 e7303626 2020-05-14 stsp (cd $testroot/wt && got cherrypick $commit_id > $testroot/stdout)
377 e7303626 2020-05-14 stsp
378 e7303626 2020-05-14 stsp echo "A .gitmodules" > $testroot/stdout.expected
379 e7303626 2020-05-14 stsp echo "Merged commit $commit_id" >> $testroot/stdout.expected
380 e7303626 2020-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
381 49c543a6 2022-03-31 naddy ret=$?
382 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
383 e7303626 2020-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
384 ceb466a7 2020-04-18 stsp fi
385 ceb466a7 2020-04-18 stsp test_done "$testroot" "$ret"
386 ceb466a7 2020-04-18 stsp }
387 ceb466a7 2020-04-18 stsp
388 f6cae3ed 2020-09-13 naddy test_cherrypick_conflict_wt_file_vs_repo_submodule() {
389 e7303626 2020-05-14 stsp local testroot=`test_init cherrypick_conflict_wt_file_vs_repo_submodule`
390 e7303626 2020-05-14 stsp
391 e7303626 2020-05-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
392 e7303626 2020-05-14 stsp
393 e7303626 2020-05-14 stsp # Add a file which will clash with the submodule
394 e7303626 2020-05-14 stsp echo "This is a file called repo2" > $testroot/wt/repo2
395 e7303626 2020-05-14 stsp (cd $testroot/wt && got add repo2 > /dev/null)
396 e7303626 2020-05-14 stsp (cd $testroot/wt && got commit -m 'add file repo2' > /dev/null)
397 49c543a6 2022-03-31 naddy ret=$?
398 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
399 e7303626 2020-05-14 stsp echo "commit failed unexpectedly" >&2
400 e7303626 2020-05-14 stsp test_done "$testroot" "1"
401 e7303626 2020-05-14 stsp return 1
402 e7303626 2020-05-14 stsp fi
403 e7303626 2020-05-14 stsp
404 e7303626 2020-05-14 stsp make_single_file_repo $testroot/repo2 foo
405 e7303626 2020-05-14 stsp
406 e7303626 2020-05-14 stsp # Add the repo/repo2 submodule on newbranch
407 e7303626 2020-05-14 stsp (cd $testroot/repo && git checkout -q -b newbranch)
408 f1aec6ed 2022-10-24 stsp (cd $testroot/repo && git -c protocol.file.allow=always \
409 f1aec6ed 2022-10-24 stsp submodule -q add ../repo2)
410 e7303626 2020-05-14 stsp (cd $testroot/repo && git commit -q -m 'adding submodule')
411 e7303626 2020-05-14 stsp local commit_id=`git_show_head $testroot/repo`
412 e7303626 2020-05-14 stsp
413 e7303626 2020-05-14 stsp # Modify the clashing file such that any modifications brought
414 e7303626 2020-05-14 stsp # in by 'got cherrypick' would require a merge.
415 e7303626 2020-05-14 stsp echo "This file was changed" > $testroot/wt/repo2
416 e7303626 2020-05-14 stsp
417 e7303626 2020-05-14 stsp (cd $testroot/wt && got update >/dev/null)
418 e7303626 2020-05-14 stsp (cd $testroot/wt && got cherrypick $commit_id > $testroot/stdout)
419 e7303626 2020-05-14 stsp
420 e7303626 2020-05-14 stsp echo "A .gitmodules" > $testroot/stdout.expected
421 e7303626 2020-05-14 stsp echo "Merged commit $commit_id" >> $testroot/stdout.expected
422 e7303626 2020-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
423 49c543a6 2022-03-31 naddy ret=$?
424 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
425 e7303626 2020-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
426 e7303626 2020-05-14 stsp test_done "$testroot" "$ret"
427 e7303626 2020-05-14 stsp return 1
428 e7303626 2020-05-14 stsp fi
429 e7303626 2020-05-14 stsp
430 e7303626 2020-05-14 stsp (cd $testroot/wt && got status > $testroot/stdout)
431 e7303626 2020-05-14 stsp
432 e7303626 2020-05-14 stsp echo "A .gitmodules" > $testroot/stdout.expected
433 e7303626 2020-05-14 stsp echo "M repo2" >> $testroot/stdout.expected
434 e7303626 2020-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
435 49c543a6 2022-03-31 naddy ret=$?
436 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
437 e7303626 2020-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
438 e7303626 2020-05-14 stsp fi
439 e7303626 2020-05-14 stsp test_done "$testroot" "$ret"
440 af57b12a 2020-07-23 stsp }
441 af57b12a 2020-07-23 stsp
442 f6cae3ed 2020-09-13 naddy test_cherrypick_modified_symlinks() {
443 af57b12a 2020-07-23 stsp local testroot=`test_init cherrypick_modified_symlinks`
444 af57b12a 2020-07-23 stsp
445 af57b12a 2020-07-23 stsp (cd $testroot/repo && ln -s alpha alpha.link)
446 af57b12a 2020-07-23 stsp (cd $testroot/repo && ln -s epsilon epsilon.link)
447 af57b12a 2020-07-23 stsp (cd $testroot/repo && ln -s /etc/passwd passwd.link)
448 af57b12a 2020-07-23 stsp (cd $testroot/repo && ln -s ../beta epsilon/beta.link)
449 af57b12a 2020-07-23 stsp (cd $testroot/repo && ln -s nonexistent nonexistent.link)
450 af57b12a 2020-07-23 stsp (cd $testroot/repo && git add .)
451 af57b12a 2020-07-23 stsp git_commit $testroot/repo -m "add symlinks"
452 af57b12a 2020-07-23 stsp local commit_id1=`git_show_head $testroot/repo`
453 af57b12a 2020-07-23 stsp
454 5267b9e4 2021-09-26 stsp got tree -r $testroot/repo -R -c $commit_id1 \
455 5267b9e4 2021-09-26 stsp > $testroot/stdout
456 5267b9e4 2021-09-26 stsp cat > $testroot/stdout.expected <<EOF
457 5267b9e4 2021-09-26 stsp alpha
458 5267b9e4 2021-09-26 stsp alpha.link@ -> alpha
459 5267b9e4 2021-09-26 stsp beta
460 5267b9e4 2021-09-26 stsp epsilon/
461 5267b9e4 2021-09-26 stsp epsilon/beta.link@ -> ../beta
462 5267b9e4 2021-09-26 stsp epsilon/zeta
463 5267b9e4 2021-09-26 stsp epsilon.link@ -> epsilon
464 5267b9e4 2021-09-26 stsp gamma/
465 5267b9e4 2021-09-26 stsp gamma/delta
466 5267b9e4 2021-09-26 stsp nonexistent.link@ -> nonexistent
467 5267b9e4 2021-09-26 stsp passwd.link@ -> /etc/passwd
468 5267b9e4 2021-09-26 stsp EOF
469 5267b9e4 2021-09-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
470 49c543a6 2022-03-31 naddy ret=$?
471 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
472 5267b9e4 2021-09-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
473 5267b9e4 2021-09-26 stsp test_done "$testroot" "$ret"
474 5267b9e4 2021-09-26 stsp return 1
475 5267b9e4 2021-09-26 stsp fi
476 5267b9e4 2021-09-26 stsp
477 af57b12a 2020-07-23 stsp got branch -r $testroot/repo foo
478 af57b12a 2020-07-23 stsp
479 af57b12a 2020-07-23 stsp got checkout -b foo $testroot/repo $testroot/wt > /dev/null
480 af57b12a 2020-07-23 stsp
481 af57b12a 2020-07-23 stsp (cd $testroot/repo && ln -sf beta alpha.link)
482 af57b12a 2020-07-23 stsp (cd $testroot/repo && ln -sfh gamma epsilon.link)
483 af57b12a 2020-07-23 stsp (cd $testroot/repo && ln -sf ../gamma/delta epsilon/beta.link)
484 5267b9e4 2021-09-26 stsp (cd $testroot/repo && ln -sf .got/foo $testroot/repo/dotgotfoo.link)
485 af57b12a 2020-07-23 stsp (cd $testroot/repo && git rm -q nonexistent.link)
486 af57b12a 2020-07-23 stsp (cd $testroot/repo && ln -sf epsilon/zeta zeta.link)
487 af57b12a 2020-07-23 stsp (cd $testroot/repo && git add .)
488 af57b12a 2020-07-23 stsp git_commit $testroot/repo -m "change symlinks"
489 af57b12a 2020-07-23 stsp local commit_id2=`git_show_head $testroot/repo`
490 af57b12a 2020-07-23 stsp
491 af57b12a 2020-07-23 stsp (cd $testroot/wt && got cherrypick $commit_id2 > $testroot/stdout)
492 af57b12a 2020-07-23 stsp
493 af57b12a 2020-07-23 stsp echo "G alpha.link" > $testroot/stdout.expected
494 af57b12a 2020-07-23 stsp echo "G epsilon/beta.link" >> $testroot/stdout.expected
495 af57b12a 2020-07-23 stsp echo "A dotgotfoo.link" >> $testroot/stdout.expected
496 af57b12a 2020-07-23 stsp echo "G epsilon.link" >> $testroot/stdout.expected
497 af57b12a 2020-07-23 stsp echo "D nonexistent.link" >> $testroot/stdout.expected
498 af57b12a 2020-07-23 stsp echo "A zeta.link" >> $testroot/stdout.expected
499 af57b12a 2020-07-23 stsp echo "Merged commit $commit_id2" >> $testroot/stdout.expected
500 af57b12a 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
501 49c543a6 2022-03-31 naddy ret=$?
502 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
503 af57b12a 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
504 af57b12a 2020-07-23 stsp test_done "$testroot" "$ret"
505 af57b12a 2020-07-23 stsp return 1
506 af57b12a 2020-07-23 stsp fi
507 af57b12a 2020-07-23 stsp
508 af57b12a 2020-07-23 stsp if ! [ -h $testroot/wt/alpha.link ]; then
509 af57b12a 2020-07-23 stsp echo "alpha.link is not a symlink"
510 af57b12a 2020-07-23 stsp test_done "$testroot" "1"
511 af57b12a 2020-07-23 stsp return 1
512 af57b12a 2020-07-23 stsp fi
513 af57b12a 2020-07-23 stsp
514 af57b12a 2020-07-23 stsp readlink $testroot/wt/alpha.link > $testroot/stdout
515 af57b12a 2020-07-23 stsp echo "beta" > $testroot/stdout.expected
516 af57b12a 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
517 49c543a6 2022-03-31 naddy ret=$?
518 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
519 af57b12a 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
520 af57b12a 2020-07-23 stsp test_done "$testroot" "$ret"
521 af57b12a 2020-07-23 stsp return 1
522 af57b12a 2020-07-23 stsp fi
523 af57b12a 2020-07-23 stsp
524 5267b9e4 2021-09-26 stsp if ! [ -h $testroot/wt/dotgotfoo.link ]; then
525 5267b9e4 2021-09-26 stsp echo "dotgotfoo.link is not a symlink"
526 5267b9e4 2021-09-26 stsp test_done "$testroot" "1"
527 5267b9e4 2021-09-26 stsp return 1
528 5267b9e4 2021-09-26 stsp fi
529 5267b9e4 2021-09-26 stsp
530 5267b9e4 2021-09-26 stsp readlink $testroot/wt/dotgotfoo.link > $testroot/stdout
531 5267b9e4 2021-09-26 stsp echo ".got/foo" > $testroot/stdout.expected
532 5267b9e4 2021-09-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
533 49c543a6 2022-03-31 naddy ret=$?
534 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
535 5267b9e4 2021-09-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
536 5267b9e4 2021-09-26 stsp test_done "$testroot" "$ret"
537 5267b9e4 2021-09-26 stsp return 1
538 5267b9e4 2021-09-26 stsp fi
539 5267b9e4 2021-09-26 stsp
540 af57b12a 2020-07-23 stsp if ! [ -h $testroot/wt/epsilon.link ]; then
541 af57b12a 2020-07-23 stsp echo "epsilon.link is not a symlink"
542 af57b12a 2020-07-23 stsp test_done "$testroot" "1"
543 af57b12a 2020-07-23 stsp return 1
544 af57b12a 2020-07-23 stsp fi
545 af57b12a 2020-07-23 stsp
546 af57b12a 2020-07-23 stsp readlink $testroot/wt/epsilon.link > $testroot/stdout
547 af57b12a 2020-07-23 stsp echo "gamma" > $testroot/stdout.expected
548 af57b12a 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
549 49c543a6 2022-03-31 naddy ret=$?
550 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
551 af57b12a 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
552 af57b12a 2020-07-23 stsp test_done "$testroot" "$ret"
553 af57b12a 2020-07-23 stsp return 1
554 af57b12a 2020-07-23 stsp fi
555 af57b12a 2020-07-23 stsp
556 af57b12a 2020-07-23 stsp if [ -h $testroot/wt/passwd.link ]; then
557 af57b12a 2020-07-23 stsp echo -n "passwd.link symlink points outside of work tree: " >&2
558 af57b12a 2020-07-23 stsp readlink $testroot/wt/passwd.link >&2
559 af57b12a 2020-07-23 stsp test_done "$testroot" "1"
560 af57b12a 2020-07-23 stsp return 1
561 af57b12a 2020-07-23 stsp fi
562 af57b12a 2020-07-23 stsp
563 af57b12a 2020-07-23 stsp echo -n "/etc/passwd" > $testroot/content.expected
564 af57b12a 2020-07-23 stsp cp $testroot/wt/passwd.link $testroot/content
565 af57b12a 2020-07-23 stsp
566 af57b12a 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
567 49c543a6 2022-03-31 naddy ret=$?
568 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
569 af57b12a 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
570 af57b12a 2020-07-23 stsp test_done "$testroot" "$ret"
571 af57b12a 2020-07-23 stsp return 1
572 af57b12a 2020-07-23 stsp fi
573 af57b12a 2020-07-23 stsp
574 af57b12a 2020-07-23 stsp readlink $testroot/wt/epsilon/beta.link > $testroot/stdout
575 af57b12a 2020-07-23 stsp echo "../gamma/delta" > $testroot/stdout.expected
576 e26bafba 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
577 49c543a6 2022-03-31 naddy ret=$?
578 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
579 e26bafba 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
580 e26bafba 2020-07-23 stsp test_done "$testroot" "$ret"
581 e26bafba 2020-07-23 stsp return 1
582 e26bafba 2020-07-23 stsp fi
583 e26bafba 2020-07-23 stsp
584 e26bafba 2020-07-23 stsp if [ -h $testroot/wt/nonexistent.link ]; then
585 e26bafba 2020-07-23 stsp echo -n "nonexistent.link still exists on disk: " >&2
586 e26bafba 2020-07-23 stsp readlink $testroot/wt/nonexistent.link >&2
587 e26bafba 2020-07-23 stsp test_done "$testroot" "1"
588 e26bafba 2020-07-23 stsp return 1
589 e26bafba 2020-07-23 stsp fi
590 e26bafba 2020-07-23 stsp
591 5267b9e4 2021-09-26 stsp (cd $testroot/wt && got commit -m 'commit cherrypick result' \
592 5267b9e4 2021-09-26 stsp > /dev/null 2>$testroot/stderr)
593 49c543a6 2022-03-31 naddy ret=$?
594 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
595 5267b9e4 2021-09-26 stsp echo "got commit succeeded unexpectedly" >&2
596 a19f439c 2022-06-03 op test_done "$testroot" "1"
597 5267b9e4 2021-09-26 stsp return 1
598 5267b9e4 2021-09-26 stsp fi
599 5267b9e4 2021-09-26 stsp echo -n "got: $testroot/wt/dotgotfoo.link: symbolic link points " \
600 5267b9e4 2021-09-26 stsp > $testroot/stderr.expected
601 5267b9e4 2021-09-26 stsp echo "outside of paths under version control" \
602 5267b9e4 2021-09-26 stsp >> $testroot/stderr.expected
603 5267b9e4 2021-09-26 stsp cmp -s $testroot/stderr.expected $testroot/stderr
604 49c543a6 2022-03-31 naddy ret=$?
605 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
606 5267b9e4 2021-09-26 stsp diff -u $testroot/stderr.expected $testroot/stderr
607 5267b9e4 2021-09-26 stsp test_done "$testroot" "$ret"
608 5267b9e4 2021-09-26 stsp return 1
609 5267b9e4 2021-09-26 stsp fi
610 5267b9e4 2021-09-26 stsp
611 5267b9e4 2021-09-26 stsp (cd $testroot/wt && got commit -S -m 'commit cherrypick result' \
612 5267b9e4 2021-09-26 stsp > /dev/null)
613 49c543a6 2022-03-31 naddy ret=$?
614 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
615 5267b9e4 2021-09-26 stsp echo "got commit failed unexpectedly" >&2
616 5267b9e4 2021-09-26 stsp test_done "$testroot" "$ret"
617 5267b9e4 2021-09-26 stsp return 1
618 5267b9e4 2021-09-26 stsp fi
619 5267b9e4 2021-09-26 stsp local commit_id2=`git_show_head $testroot/repo`
620 5267b9e4 2021-09-26 stsp
621 5267b9e4 2021-09-26 stsp got tree -r $testroot/repo -R -c $commit_id2 \
622 5267b9e4 2021-09-26 stsp > $testroot/stdout
623 5267b9e4 2021-09-26 stsp cat > $testroot/stdout.expected <<EOF
624 5267b9e4 2021-09-26 stsp alpha
625 5267b9e4 2021-09-26 stsp alpha.link@ -> beta
626 5267b9e4 2021-09-26 stsp beta
627 5267b9e4 2021-09-26 stsp dotgotfoo.link@ -> .got/foo
628 5267b9e4 2021-09-26 stsp epsilon/
629 5267b9e4 2021-09-26 stsp epsilon/beta.link@ -> ../gamma/delta
630 5267b9e4 2021-09-26 stsp epsilon/zeta
631 5267b9e4 2021-09-26 stsp epsilon.link@ -> gamma
632 5267b9e4 2021-09-26 stsp gamma/
633 5267b9e4 2021-09-26 stsp gamma/delta
634 5267b9e4 2021-09-26 stsp passwd.link@ -> /etc/passwd
635 5267b9e4 2021-09-26 stsp zeta.link@ -> epsilon/zeta
636 5267b9e4 2021-09-26 stsp EOF
637 5267b9e4 2021-09-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
638 49c543a6 2022-03-31 naddy ret=$?
639 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
640 5267b9e4 2021-09-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
641 5267b9e4 2021-09-26 stsp fi
642 5267b9e4 2021-09-26 stsp test_done "$testroot" "$ret"
643 e26bafba 2020-07-23 stsp }
644 e26bafba 2020-07-23 stsp
645 f6cae3ed 2020-09-13 naddy test_cherrypick_symlink_conflicts() {
646 e26bafba 2020-07-23 stsp local testroot=`test_init cherrypick_symlink_conflicts`
647 e26bafba 2020-07-23 stsp
648 e26bafba 2020-07-23 stsp (cd $testroot/repo && ln -s alpha alpha.link)
649 e26bafba 2020-07-23 stsp (cd $testroot/repo && ln -s epsilon epsilon.link)
650 e26bafba 2020-07-23 stsp (cd $testroot/repo && ln -s /etc/passwd passwd.link)
651 e26bafba 2020-07-23 stsp (cd $testroot/repo && ln -s ../beta epsilon/beta.link)
652 e26bafba 2020-07-23 stsp (cd $testroot/repo && ln -s nonexistent nonexistent.link)
653 e26bafba 2020-07-23 stsp (cd $testroot/repo && ln -sf epsilon/zeta zeta.link)
654 e26bafba 2020-07-23 stsp (cd $testroot/repo && git add .)
655 e26bafba 2020-07-23 stsp git_commit $testroot/repo -m "add symlinks"
656 e26bafba 2020-07-23 stsp local commit_id1=`git_show_head $testroot/repo`
657 e26bafba 2020-07-23 stsp
658 e26bafba 2020-07-23 stsp (cd $testroot/repo && ln -sf beta alpha.link)
659 fba9f79c 2020-07-23 stsp (cd $testroot/repo && ln -sf beta boo.link)
660 e26bafba 2020-07-23 stsp (cd $testroot/repo && ln -sfh gamma epsilon.link)
661 e26bafba 2020-07-23 stsp (cd $testroot/repo && ln -sf ../gamma/delta epsilon/beta.link)
662 e26bafba 2020-07-23 stsp echo 'this is regular file foo' > $testroot/repo/dotgotfoo.link
663 e26bafba 2020-07-23 stsp (cd $testroot/repo && ln -sf .got/bar dotgotbar.link)
664 e26bafba 2020-07-23 stsp (cd $testroot/repo && git rm -q nonexistent.link)
665 e26bafba 2020-07-23 stsp (cd $testroot/repo && ln -sf gamma/delta zeta.link)
666 e26bafba 2020-07-23 stsp (cd $testroot/repo && ln -sf alpha new.link)
667 e26bafba 2020-07-23 stsp (cd $testroot/repo && git add .)
668 e26bafba 2020-07-23 stsp git_commit $testroot/repo -m "change symlinks"
669 e26bafba 2020-07-23 stsp local commit_id2=`git_show_head $testroot/repo`
670 e26bafba 2020-07-23 stsp
671 e26bafba 2020-07-23 stsp got branch -r $testroot/repo -c $commit_id1 foo
672 e26bafba 2020-07-23 stsp got checkout -b foo $testroot/repo $testroot/wt > /dev/null
673 e26bafba 2020-07-23 stsp
674 e26bafba 2020-07-23 stsp # modified symlink to file A vs modified symlink to file B
675 e26bafba 2020-07-23 stsp (cd $testroot/wt && ln -sf gamma/delta alpha.link)
676 e26bafba 2020-07-23 stsp # modified symlink to dir A vs modified symlink to file B
677 e26bafba 2020-07-23 stsp (cd $testroot/wt && ln -sfh beta epsilon.link)
678 e26bafba 2020-07-23 stsp # modeified symlink to file A vs modified symlink to dir B
679 e26bafba 2020-07-23 stsp (cd $testroot/wt && ln -sfh ../gamma epsilon/beta.link)
680 e26bafba 2020-07-23 stsp # added regular file A vs added bad symlink to file A
681 5267b9e4 2021-09-26 stsp (cd $testroot/wt && ln -sf .got/foo dotgotfoo.link)
682 3b9f0f87 2020-07-23 stsp (cd $testroot/wt && got add dotgotfoo.link > /dev/null)
683 e26bafba 2020-07-23 stsp # added bad symlink to file A vs added regular file A
684 e26bafba 2020-07-23 stsp echo 'this is regular file bar' > $testroot/wt/dotgotbar.link
685 d219f183 2020-07-23 stsp (cd $testroot/wt && got add dotgotbar.link > /dev/null)
686 fba9f79c 2020-07-23 stsp # added symlink to file A vs unversioned file A
687 fba9f79c 2020-07-23 stsp echo 'this is unversioned file boo' > $testroot/wt/boo.link
688 e26bafba 2020-07-23 stsp # removed symlink to non-existent file A vs modified symlink
689 e26bafba 2020-07-23 stsp # to nonexistent file B
690 e26bafba 2020-07-23 stsp (cd $testroot/wt && ln -sf nonexistent2 nonexistent.link)
691 e26bafba 2020-07-23 stsp # modified symlink to file A vs removed symlink to file A
692 e26bafba 2020-07-23 stsp (cd $testroot/wt && got rm zeta.link > /dev/null)
693 e26bafba 2020-07-23 stsp # added symlink to file A vs added symlink to file B
694 e26bafba 2020-07-23 stsp (cd $testroot/wt && ln -sf beta new.link)
695 e26bafba 2020-07-23 stsp (cd $testroot/wt && got add new.link > /dev/null)
696 35213c7c 2020-07-23 stsp (cd $testroot/wt && got commit -S -m "change symlinks on foo" \
697 e26bafba 2020-07-23 stsp > /dev/null)
698 e26bafba 2020-07-23 stsp
699 e26bafba 2020-07-23 stsp (cd $testroot/wt && got update >/dev/null)
700 e26bafba 2020-07-23 stsp (cd $testroot/wt && got cherrypick $commit_id2 > $testroot/stdout)
701 e26bafba 2020-07-23 stsp
702 e26bafba 2020-07-23 stsp echo -n > $testroot/stdout.expected
703 11cc08c1 2020-07-23 stsp echo "C alpha.link" >> $testroot/stdout.expected
704 11cc08c1 2020-07-23 stsp echo "C epsilon/beta.link" >> $testroot/stdout.expected
705 c90c8ce3 2020-07-23 stsp echo "? boo.link" >> $testroot/stdout.expected
706 11cc08c1 2020-07-23 stsp echo "C epsilon.link" >> $testroot/stdout.expected
707 fba9f79c 2020-07-23 stsp echo "C dotgotbar.link" >> $testroot/stdout.expected
708 3b9f0f87 2020-07-23 stsp echo "C dotgotfoo.link" >> $testroot/stdout.expected
709 e26bafba 2020-07-23 stsp echo "D nonexistent.link" >> $testroot/stdout.expected
710 e26bafba 2020-07-23 stsp echo "! zeta.link" >> $testroot/stdout.expected
711 11cc08c1 2020-07-23 stsp echo "C new.link" >> $testroot/stdout.expected
712 e26bafba 2020-07-23 stsp echo "Merged commit $commit_id2" >> $testroot/stdout.expected
713 3b9f0f87 2020-07-23 stsp echo "Files with new merge conflicts: 6" >> $testroot/stdout.expected
714 35ca1db7 2021-09-28 stsp echo -n "Files which had incoming changes but could not be found " \
715 35ca1db7 2021-09-28 stsp >> $testroot/stdout.expected
716 35ca1db7 2021-09-28 stsp echo "in the work tree: 1" >> $testroot/stdout.expected
717 35ca1db7 2021-09-28 stsp echo -n "Files not merged because an unversioned file was found in " \
718 35ca1db7 2021-09-28 stsp >> $testroot/stdout.expected
719 35ca1db7 2021-09-28 stsp echo "the work tree: 1" >> $testroot/stdout.expected
720 e26bafba 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
721 49c543a6 2022-03-31 naddy ret=$?
722 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
723 e26bafba 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
724 e26bafba 2020-07-23 stsp test_done "$testroot" "$ret"
725 e26bafba 2020-07-23 stsp return 1
726 e26bafba 2020-07-23 stsp fi
727 e26bafba 2020-07-23 stsp
728 11cc08c1 2020-07-23 stsp if [ -h $testroot/wt/alpha.link ]; then
729 11cc08c1 2020-07-23 stsp echo "alpha.link is a symlink"
730 e26bafba 2020-07-23 stsp test_done "$testroot" "1"
731 e26bafba 2020-07-23 stsp return 1
732 e26bafba 2020-07-23 stsp fi
733 e26bafba 2020-07-23 stsp
734 11cc08c1 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
735 283102fc 2020-07-23 stsp > $testroot/content.expected
736 11cc08c1 2020-07-23 stsp echo "beta" >> $testroot/content.expected
737 11cc08c1 2020-07-23 stsp echo "3-way merge base: commit $commit_id1" \
738 11cc08c1 2020-07-23 stsp >> $testroot/content.expected
739 11cc08c1 2020-07-23 stsp echo "alpha" >> $testroot/content.expected
740 11cc08c1 2020-07-23 stsp echo "=======" >> $testroot/content.expected
741 11cc08c1 2020-07-23 stsp echo "gamma/delta" >> $testroot/content.expected
742 11cc08c1 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
743 11cc08c1 2020-07-23 stsp echo -n "" >> $testroot/content.expected
744 11cc08c1 2020-07-23 stsp
745 11cc08c1 2020-07-23 stsp cp $testroot/wt/alpha.link $testroot/content
746 fba9f79c 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
747 49c543a6 2022-03-31 naddy ret=$?
748 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
749 fba9f79c 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
750 fba9f79c 2020-07-23 stsp test_done "$testroot" "$ret"
751 fba9f79c 2020-07-23 stsp return 1
752 fba9f79c 2020-07-23 stsp fi
753 fba9f79c 2020-07-23 stsp
754 c90c8ce3 2020-07-23 stsp if [ -h $testroot/wt/boo.link ]; then
755 c90c8ce3 2020-07-23 stsp echo "boo.link is a symlink"
756 fba9f79c 2020-07-23 stsp test_done "$testroot" "1"
757 fba9f79c 2020-07-23 stsp return 1
758 fba9f79c 2020-07-23 stsp fi
759 fba9f79c 2020-07-23 stsp
760 c90c8ce3 2020-07-23 stsp echo "this is unversioned file boo" > $testroot/content.expected
761 fba9f79c 2020-07-23 stsp cp $testroot/wt/boo.link $testroot/content
762 11cc08c1 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
763 49c543a6 2022-03-31 naddy ret=$?
764 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
765 11cc08c1 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
766 e26bafba 2020-07-23 stsp test_done "$testroot" "$ret"
767 e26bafba 2020-07-23 stsp return 1
768 e26bafba 2020-07-23 stsp fi
769 e26bafba 2020-07-23 stsp
770 11cc08c1 2020-07-23 stsp if [ -h $testroot/wt/epsilon.link ]; then
771 11cc08c1 2020-07-23 stsp echo "epsilon.link is a symlink"
772 e26bafba 2020-07-23 stsp test_done "$testroot" "1"
773 e26bafba 2020-07-23 stsp return 1
774 e26bafba 2020-07-23 stsp fi
775 e26bafba 2020-07-23 stsp
776 11cc08c1 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
777 283102fc 2020-07-23 stsp > $testroot/content.expected
778 11cc08c1 2020-07-23 stsp echo "gamma" >> $testroot/content.expected
779 11cc08c1 2020-07-23 stsp echo "3-way merge base: commit $commit_id1" \
780 11cc08c1 2020-07-23 stsp >> $testroot/content.expected
781 11cc08c1 2020-07-23 stsp echo "epsilon" >> $testroot/content.expected
782 11cc08c1 2020-07-23 stsp echo "=======" >> $testroot/content.expected
783 11cc08c1 2020-07-23 stsp echo "beta" >> $testroot/content.expected
784 11cc08c1 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
785 11cc08c1 2020-07-23 stsp echo -n "" >> $testroot/content.expected
786 11cc08c1 2020-07-23 stsp
787 11cc08c1 2020-07-23 stsp cp $testroot/wt/epsilon.link $testroot/content
788 11cc08c1 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
789 49c543a6 2022-03-31 naddy ret=$?
790 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
791 11cc08c1 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
792 af57b12a 2020-07-23 stsp test_done "$testroot" "$ret"
793 af57b12a 2020-07-23 stsp return 1
794 af57b12a 2020-07-23 stsp fi
795 af57b12a 2020-07-23 stsp
796 e26bafba 2020-07-23 stsp if [ -h $testroot/wt/passwd.link ]; then
797 e26bafba 2020-07-23 stsp echo -n "passwd.link symlink points outside of work tree: " >&2
798 e26bafba 2020-07-23 stsp readlink $testroot/wt/passwd.link >&2
799 e26bafba 2020-07-23 stsp test_done "$testroot" "1"
800 e26bafba 2020-07-23 stsp return 1
801 e26bafba 2020-07-23 stsp fi
802 e26bafba 2020-07-23 stsp
803 e26bafba 2020-07-23 stsp echo -n "/etc/passwd" > $testroot/content.expected
804 e26bafba 2020-07-23 stsp cp $testroot/wt/passwd.link $testroot/content
805 e26bafba 2020-07-23 stsp
806 e26bafba 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
807 49c543a6 2022-03-31 naddy ret=$?
808 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
809 e26bafba 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
810 e26bafba 2020-07-23 stsp test_done "$testroot" "$ret"
811 e26bafba 2020-07-23 stsp return 1
812 e26bafba 2020-07-23 stsp fi
813 e26bafba 2020-07-23 stsp
814 11cc08c1 2020-07-23 stsp if [ -h $testroot/wt/epsilon/beta.link ]; then
815 11cc08c1 2020-07-23 stsp echo "epsilon/beta.link is a symlink"
816 11cc08c1 2020-07-23 stsp test_done "$testroot" "1"
817 11cc08c1 2020-07-23 stsp return 1
818 11cc08c1 2020-07-23 stsp fi
819 11cc08c1 2020-07-23 stsp
820 11cc08c1 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
821 283102fc 2020-07-23 stsp > $testroot/content.expected
822 11cc08c1 2020-07-23 stsp echo "../gamma/delta" >> $testroot/content.expected
823 11cc08c1 2020-07-23 stsp echo "3-way merge base: commit $commit_id1" \
824 11cc08c1 2020-07-23 stsp >> $testroot/content.expected
825 11cc08c1 2020-07-23 stsp echo "../beta" >> $testroot/content.expected
826 11cc08c1 2020-07-23 stsp echo "=======" >> $testroot/content.expected
827 11cc08c1 2020-07-23 stsp echo "../gamma" >> $testroot/content.expected
828 11cc08c1 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
829 11cc08c1 2020-07-23 stsp echo -n "" >> $testroot/content.expected
830 11cc08c1 2020-07-23 stsp
831 11cc08c1 2020-07-23 stsp cp $testroot/wt/epsilon/beta.link $testroot/content
832 11cc08c1 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
833 49c543a6 2022-03-31 naddy ret=$?
834 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
835 11cc08c1 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
836 e26bafba 2020-07-23 stsp test_done "$testroot" "$ret"
837 e26bafba 2020-07-23 stsp return 1
838 e26bafba 2020-07-23 stsp fi
839 e26bafba 2020-07-23 stsp
840 af57b12a 2020-07-23 stsp if [ -h $testroot/wt/nonexistent.link ]; then
841 af57b12a 2020-07-23 stsp echo -n "nonexistent.link still exists on disk: " >&2
842 af57b12a 2020-07-23 stsp readlink $testroot/wt/nonexistent.link >&2
843 af57b12a 2020-07-23 stsp test_done "$testroot" "1"
844 af57b12a 2020-07-23 stsp return 1
845 af57b12a 2020-07-23 stsp fi
846 af57b12a 2020-07-23 stsp
847 e26bafba 2020-07-23 stsp if [ -h $testroot/wt/dotgotfoo.link ]; then
848 e26bafba 2020-07-23 stsp echo "dotgotfoo.link is a symlink"
849 e26bafba 2020-07-23 stsp test_done "$testroot" "1"
850 e26bafba 2020-07-23 stsp return 1
851 e26bafba 2020-07-23 stsp fi
852 e26bafba 2020-07-23 stsp
853 3b9f0f87 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
854 3b9f0f87 2020-07-23 stsp > $testroot/content.expected
855 3b9f0f87 2020-07-23 stsp echo "this is regular file foo" >> $testroot/content.expected
856 3b9f0f87 2020-07-23 stsp echo "=======" >> $testroot/content.expected
857 5267b9e4 2021-09-26 stsp echo -n ".got/foo" >> $testroot/content.expected
858 3b9f0f87 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
859 e26bafba 2020-07-23 stsp cp $testroot/wt/dotgotfoo.link $testroot/content
860 e26bafba 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
861 49c543a6 2022-03-31 naddy ret=$?
862 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
863 e26bafba 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
864 e26bafba 2020-07-23 stsp test_done "$testroot" "$ret"
865 e26bafba 2020-07-23 stsp return 1
866 e26bafba 2020-07-23 stsp fi
867 e26bafba 2020-07-23 stsp
868 e26bafba 2020-07-23 stsp if [ -h $testroot/wt/dotgotbar.link ]; then
869 e26bafba 2020-07-23 stsp echo "dotgotbar.link is a symlink"
870 e26bafba 2020-07-23 stsp test_done "$testroot" "1"
871 e26bafba 2020-07-23 stsp return 1
872 e26bafba 2020-07-23 stsp fi
873 d219f183 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
874 d219f183 2020-07-23 stsp > $testroot/content.expected
875 d219f183 2020-07-23 stsp echo -n ".got/bar" >> $testroot/content.expected
876 d219f183 2020-07-23 stsp echo "=======" >> $testroot/content.expected
877 d219f183 2020-07-23 stsp echo "this is regular file bar" >> $testroot/content.expected
878 d219f183 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
879 d219f183 2020-07-23 stsp echo -n "" >> $testroot/content.expected
880 e26bafba 2020-07-23 stsp cp $testroot/wt/dotgotbar.link $testroot/content
881 e26bafba 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
882 49c543a6 2022-03-31 naddy ret=$?
883 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
884 e26bafba 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
885 e26bafba 2020-07-23 stsp test_done "$testroot" "$ret"
886 e26bafba 2020-07-23 stsp return 1
887 e26bafba 2020-07-23 stsp fi
888 e26bafba 2020-07-23 stsp
889 11cc08c1 2020-07-23 stsp if [ -h $testroot/wt/new.link ]; then
890 11cc08c1 2020-07-23 stsp echo "new.link is a symlink"
891 e26bafba 2020-07-23 stsp test_done "$testroot" "1"
892 e26bafba 2020-07-23 stsp return 1
893 e26bafba 2020-07-23 stsp fi
894 e26bafba 2020-07-23 stsp
895 11cc08c1 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
896 283102fc 2020-07-23 stsp > $testroot/content.expected
897 11cc08c1 2020-07-23 stsp echo "alpha" >> $testroot/content.expected
898 11cc08c1 2020-07-23 stsp echo "=======" >> $testroot/content.expected
899 11cc08c1 2020-07-23 stsp echo "beta" >> $testroot/content.expected
900 11cc08c1 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
901 11cc08c1 2020-07-23 stsp echo -n "" >> $testroot/content.expected
902 11cc08c1 2020-07-23 stsp
903 11cc08c1 2020-07-23 stsp cp $testroot/wt/new.link $testroot/content
904 11cc08c1 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
905 49c543a6 2022-03-31 naddy ret=$?
906 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
907 11cc08c1 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
908 e26bafba 2020-07-23 stsp test_done "$testroot" "$ret"
909 e26bafba 2020-07-23 stsp return 1
910 e26bafba 2020-07-23 stsp fi
911 e26bafba 2020-07-23 stsp
912 e26bafba 2020-07-23 stsp echo "A dotgotfoo.link" > $testroot/stdout.expected
913 e26bafba 2020-07-23 stsp echo "M new.link" >> $testroot/stdout.expected
914 e26bafba 2020-07-23 stsp echo "D nonexistent.link" >> $testroot/stdout.expected
915 e26bafba 2020-07-23 stsp (cd $testroot/wt && got status > $testroot/stdout)
916 84246752 2022-06-03 op ret=$?
917 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
918 e26bafba 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
919 e26bafba 2020-07-23 stsp test_done "$testroot" "$ret"
920 e26bafba 2020-07-23 stsp return 1
921 e26bafba 2020-07-23 stsp fi
922 e26bafba 2020-07-23 stsp
923 af57b12a 2020-07-23 stsp test_done "$testroot" "0"
924 69d57f3d 2020-07-31 stsp }
925 69d57f3d 2020-07-31 stsp
926 f6cae3ed 2020-09-13 naddy test_cherrypick_with_path_prefix_and_empty_tree() {
927 69d57f3d 2020-07-31 stsp local testroot=`test_init cherrypick_with_path_prefix_and_empty_tree 1`
928 69d57f3d 2020-07-31 stsp
929 69d57f3d 2020-07-31 stsp (cd $testroot/repo && git commit --allow-empty \
930 69d57f3d 2020-07-31 stsp -m "initial empty commit" >/dev/null)
931 69d57f3d 2020-07-31 stsp
932 69d57f3d 2020-07-31 stsp (cd $testroot/repo && got br bar >/dev/null)
933 69d57f3d 2020-07-31 stsp
934 69d57f3d 2020-07-31 stsp mkdir -p $testroot/repo/epsilon
935 69d57f3d 2020-07-31 stsp echo "file foo" > $testroot/repo/epsilon/foo
936 69d57f3d 2020-07-31 stsp (cd $testroot/repo && git add .)
937 69d57f3d 2020-07-31 stsp git_commit $testroot/repo -m "add file foo"
938 69d57f3d 2020-07-31 stsp local commit_id=`git_show_head $testroot/repo`
939 69d57f3d 2020-07-31 stsp
940 69d57f3d 2020-07-31 stsp got checkout -b bar $testroot/repo $testroot/wt > /dev/null
941 49c543a6 2022-03-31 naddy ret=$?
942 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
943 69d57f3d 2020-07-31 stsp echo "got checkout failed unexpectedly" >&2
944 69d57f3d 2020-07-31 stsp test_done "$testroot" "$ret"
945 69d57f3d 2020-07-31 stsp return 1
946 69d57f3d 2020-07-31 stsp fi
947 69d57f3d 2020-07-31 stsp
948 69d57f3d 2020-07-31 stsp mkdir -p $testroot/wt/epsilon
949 69d57f3d 2020-07-31 stsp echo "new file" > $testroot/wt/epsilon/new
950 69d57f3d 2020-07-31 stsp (cd $testroot/wt && got add epsilon/new >/dev/null)
951 69d57f3d 2020-07-31 stsp (cd $testroot/wt && got commit -m "add file on branch bar" > /dev/null)
952 69d57f3d 2020-07-31 stsp
953 69d57f3d 2020-07-31 stsp got checkout -b bar -p epsilon $testroot/repo $testroot/wt2 > /dev/null
954 49c543a6 2022-03-31 naddy ret=$?
955 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
956 69d57f3d 2020-07-31 stsp echo "got checkout failed unexpectedly" >&2
957 69d57f3d 2020-07-31 stsp test_done "$testroot" "$ret"
958 69d57f3d 2020-07-31 stsp return 1
959 69d57f3d 2020-07-31 stsp fi
960 69d57f3d 2020-07-31 stsp (cd $testroot/wt2 && got cherrypick $commit_id > $testroot/stdout)
961 69d57f3d 2020-07-31 stsp
962 69d57f3d 2020-07-31 stsp echo "A foo" > $testroot/stdout.expected
963 69d57f3d 2020-07-31 stsp echo "Merged commit $commit_id" >> $testroot/stdout.expected
964 cce854ad 2021-04-13 stsp
965 cce854ad 2021-04-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
966 49c543a6 2022-03-31 naddy ret=$?
967 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
968 cce854ad 2021-04-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
969 cce854ad 2021-04-13 stsp fi
970 cce854ad 2021-04-13 stsp test_done "$testroot" "$ret"
971 cce854ad 2021-04-13 stsp }
972 cce854ad 2021-04-13 stsp
973 cce854ad 2021-04-13 stsp test_cherrypick_conflict_no_eol() {
974 cce854ad 2021-04-13 stsp local testroot=`test_init cherrypick_conflict_no_eol 1`
975 cce854ad 2021-04-13 stsp local content_a="aaa\naaa\naaa\naaa\naaa\naaa\n"
976 cce854ad 2021-04-13 stsp local content_b="aaa\naaa\nbbb\naaa\naaa\naaa\naaa"
977 cce854ad 2021-04-13 stsp local content_c="aaa\naaa\nccc\naaa\naaa\naaa\naaa"
978 cce854ad 2021-04-13 stsp
979 cce854ad 2021-04-13 stsp printf "$content_a" > $testroot/repo/a
980 cce854ad 2021-04-13 stsp (cd $testroot/repo && git add a)
981 cce854ad 2021-04-13 stsp git_commit $testroot/repo -m "initial commit"
982 cce854ad 2021-04-13 stsp
983 cce854ad 2021-04-13 stsp (cd $testroot/repo && got branch newbranch)
984 cce854ad 2021-04-13 stsp
985 cce854ad 2021-04-13 stsp printf "$content_b" > $testroot/repo/a
986 cce854ad 2021-04-13 stsp git_commit $testroot/repo -m "change bbb"
987 69d57f3d 2020-07-31 stsp
988 cce854ad 2021-04-13 stsp printf "$content_c" > $testroot/repo/a
989 cce854ad 2021-04-13 stsp git_commit $testroot/repo -m "change ccc"
990 cce854ad 2021-04-13 stsp local ccc_commit=`git_show_head $testroot/repo`
991 cce854ad 2021-04-13 stsp
992 cce854ad 2021-04-13 stsp got checkout -b newbranch $testroot/repo $testroot/wt > /dev/null
993 49c543a6 2022-03-31 naddy ret=$?
994 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
995 cce854ad 2021-04-13 stsp test_done "$testroot" "$ret"
996 cce854ad 2021-04-13 stsp return 1
997 cce854ad 2021-04-13 stsp fi
998 cce854ad 2021-04-13 stsp
999 cce854ad 2021-04-13 stsp (cd $testroot/wt && got cherrypick $ccc_commit > $testroot/stdout)
1000 cce854ad 2021-04-13 stsp
1001 cce854ad 2021-04-13 stsp echo "C a" > $testroot/stdout.expected
1002 cce854ad 2021-04-13 stsp echo "Merged commit $ccc_commit" >> $testroot/stdout.expected
1003 cce854ad 2021-04-13 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
1004 cce854ad 2021-04-13 stsp
1005 69d57f3d 2020-07-31 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1006 49c543a6 2022-03-31 naddy ret=$?
1007 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1008 69d57f3d 2020-07-31 stsp diff -u $testroot/stdout.expected $testroot/stdout
1009 cce854ad 2021-04-13 stsp fi
1010 cce854ad 2021-04-13 stsp test_done "$testroot" "$ret"
1011 cce854ad 2021-04-13 stsp }
1012 cce854ad 2021-04-13 stsp
1013 cce854ad 2021-04-13 stsp test_cherrypick_conflict_no_eol2() {
1014 cce854ad 2021-04-13 stsp local testroot=`test_init cherrypick_conflict_no_eol2 1`
1015 cce854ad 2021-04-13 stsp local content_a="aaa\naaa\naaa\naaa\naaa\naaa"
1016 cce854ad 2021-04-13 stsp local content_b="aaa\naaa\nbbb\naaa\naaa\naaa"
1017 cce854ad 2021-04-13 stsp local content_c="aaa\naaa\nbbb\naaa\naaa\naaa\n"
1018 cce854ad 2021-04-13 stsp
1019 cce854ad 2021-04-13 stsp printf "$content_a" > $testroot/repo/a
1020 cce854ad 2021-04-13 stsp (cd $testroot/repo && git add a)
1021 cce854ad 2021-04-13 stsp git_commit $testroot/repo -m "initial commit"
1022 cce854ad 2021-04-13 stsp
1023 cce854ad 2021-04-13 stsp (cd $testroot/repo && got branch newbranch)
1024 cce854ad 2021-04-13 stsp
1025 cce854ad 2021-04-13 stsp printf "$content_b" > $testroot/repo/a
1026 cce854ad 2021-04-13 stsp git_commit $testroot/repo -m "change bbb"
1027 cce854ad 2021-04-13 stsp
1028 cce854ad 2021-04-13 stsp printf "$content_c" > $testroot/repo/a
1029 cce854ad 2021-04-13 stsp git_commit $testroot/repo -m "change ccc"
1030 cce854ad 2021-04-13 stsp local ccc_commit=`git_show_head $testroot/repo`
1031 cce854ad 2021-04-13 stsp
1032 cce854ad 2021-04-13 stsp got checkout -b newbranch $testroot/repo $testroot/wt > /dev/null
1033 49c543a6 2022-03-31 naddy ret=$?
1034 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1035 cce854ad 2021-04-13 stsp test_done "$testroot" "$ret"
1036 cce854ad 2021-04-13 stsp return 1
1037 69d57f3d 2020-07-31 stsp fi
1038 cce854ad 2021-04-13 stsp
1039 cce854ad 2021-04-13 stsp (cd $testroot/wt && got cherrypick $ccc_commit \
1040 cce854ad 2021-04-13 stsp > $testroot/stdout 2> $testroot/stderr)
1041 cce854ad 2021-04-13 stsp
1042 cce854ad 2021-04-13 stsp echo "C a" > $testroot/stdout.expected
1043 cce854ad 2021-04-13 stsp echo "Merged commit $ccc_commit" >> $testroot/stdout.expected
1044 cce854ad 2021-04-13 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
1045 cce854ad 2021-04-13 stsp
1046 cce854ad 2021-04-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1047 49c543a6 2022-03-31 naddy ret=$?
1048 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1049 54d5be07 2021-06-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
1050 3cd22b21 2021-05-31 stsp fi
1051 3cd22b21 2021-05-31 stsp test_done "$testroot" "$ret"
1052 3cd22b21 2021-05-31 stsp }
1053 3cd22b21 2021-05-31 stsp
1054 3cd22b21 2021-05-31 stsp test_cherrypick_unrelated_changes() {
1055 3cd22b21 2021-05-31 stsp local testroot=`test_init cherrypick_unrelated_changes`
1056 3cd22b21 2021-05-31 stsp
1057 3cd22b21 2021-05-31 stsp # Sorry about the large HERE document but I have not found
1058 3cd22b21 2021-05-31 stsp # a smaller reproduction recipe yet...
1059 3cd22b21 2021-05-31 stsp cat > $testroot/repo/reference.c <<EOF
1060 3cd22b21 2021-05-31 stsp const struct got_error *
1061 3cd22b21 2021-05-31 stsp got_ref_alloc(struct got_reference **ref, const char *name,
1062 3cd22b21 2021-05-31 stsp struct got_object_id *id)
1063 3cd22b21 2021-05-31 stsp {
1064 3cd22b21 2021-05-31 stsp if (!is_valid_ref_name(name))
1065 3cd22b21 2021-05-31 stsp return got_error_path(name, GOT_ERR_BAD_REF_NAME);
1066 3cd22b21 2021-05-31 stsp
1067 3cd22b21 2021-05-31 stsp return alloc_ref(ref, name, id, 0);
1068 3cd22b21 2021-05-31 stsp }
1069 3cd22b21 2021-05-31 stsp
1070 3cd22b21 2021-05-31 stsp static const struct got_error *
1071 3cd22b21 2021-05-31 stsp parse_packed_ref_line(struct got_reference **ref, const char *abs_refname,
1072 3cd22b21 2021-05-31 stsp const char *line)
1073 3cd22b21 2021-05-31 stsp {
1074 3cd22b21 2021-05-31 stsp struct got_object_id id;
1075 3cd22b21 2021-05-31 stsp const char *name;
1076 3cd22b21 2021-05-31 stsp
1077 3cd22b21 2021-05-31 stsp *ref = NULL;
1078 3cd22b21 2021-05-31 stsp
1079 3cd22b21 2021-05-31 stsp if (line[0] == '#' || line[0] == '^')
1080 3cd22b21 2021-05-31 stsp return NULL;
1081 3cd22b21 2021-05-31 stsp
1082 3cd22b21 2021-05-31 stsp if (!got_parse_sha1_digest(id.sha1, line))
1083 3cd22b21 2021-05-31 stsp return got_error(GOT_ERR_BAD_REF_DATA);
1084 3cd22b21 2021-05-31 stsp
1085 3cd22b21 2021-05-31 stsp if (abs_refname) {
1086 3cd22b21 2021-05-31 stsp if (strcmp(line + SHA1_DIGEST_STRING_LENGTH, abs_refname) != 0)
1087 3cd22b21 2021-05-31 stsp return NULL;
1088 3cd22b21 2021-05-31 stsp name = abs_refname;
1089 3cd22b21 2021-05-31 stsp } else
1090 3cd22b21 2021-05-31 stsp name = line + SHA1_DIGEST_STRING_LENGTH;
1091 3cd22b21 2021-05-31 stsp
1092 3cd22b21 2021-05-31 stsp return alloc_ref(ref, name, &id, GOT_REF_IS_PACKED);
1093 3cd22b21 2021-05-31 stsp }
1094 3cd22b21 2021-05-31 stsp
1095 3cd22b21 2021-05-31 stsp static const struct got_error *
1096 3cd22b21 2021-05-31 stsp open_packed_ref(struct got_reference **ref, FILE *f, const char **subdirs,
1097 3cd22b21 2021-05-31 stsp int nsubdirs, const char *refname)
1098 3cd22b21 2021-05-31 stsp {
1099 3cd22b21 2021-05-31 stsp const struct got_error *err = NULL;
1100 3cd22b21 2021-05-31 stsp char *abs_refname;
1101 3cd22b21 2021-05-31 stsp char *line = NULL;
1102 3cd22b21 2021-05-31 stsp size_t linesize = 0;
1103 3cd22b21 2021-05-31 stsp ssize_t linelen;
1104 3cd22b21 2021-05-31 stsp int i, ref_is_absolute = (strncmp(refname, "refs/", 5) == 0);
1105 3cd22b21 2021-05-31 stsp
1106 3cd22b21 2021-05-31 stsp *ref = NULL;
1107 3cd22b21 2021-05-31 stsp
1108 3cd22b21 2021-05-31 stsp if (ref_is_absolute)
1109 3cd22b21 2021-05-31 stsp abs_refname = (char *)refname;
1110 3cd22b21 2021-05-31 stsp do {
1111 3cd22b21 2021-05-31 stsp linelen = getline(&line, &linesize, f);
1112 3cd22b21 2021-05-31 stsp if (linelen == -1) {
1113 3cd22b21 2021-05-31 stsp if (feof(f))
1114 3cd22b21 2021-05-31 stsp break;
1115 3cd22b21 2021-05-31 stsp err = got_ferror(f, GOT_ERR_BAD_REF_DATA);
1116 3cd22b21 2021-05-31 stsp break;
1117 3cd22b21 2021-05-31 stsp }
1118 3cd22b21 2021-05-31 stsp if (linelen > 0 && line[linelen - 1] == '\n')
1119 3cd22b21 2021-05-31 stsp line[linelen - 1] = '\0';
1120 3cd22b21 2021-05-31 stsp for (i = 0; i < nsubdirs; i++) {
1121 3cd22b21 2021-05-31 stsp if (!ref_is_absolute &&
1122 3cd22b21 2021-05-31 stsp asprintf(&abs_refname, "refs/%s/%s", subdirs[i],
1123 3cd22b21 2021-05-31 stsp refname) == -1)
1124 3cd22b21 2021-05-31 stsp return got_error_from_errno("asprintf");
1125 3cd22b21 2021-05-31 stsp err = parse_packed_ref_line(ref, abs_refname, line);
1126 3cd22b21 2021-05-31 stsp if (!ref_is_absolute)
1127 3cd22b21 2021-05-31 stsp free(abs_refname);
1128 3cd22b21 2021-05-31 stsp if (err || *ref != NULL)
1129 3cd22b21 2021-05-31 stsp break;
1130 3cd22b21 2021-05-31 stsp }
1131 3cd22b21 2021-05-31 stsp if (err)
1132 3cd22b21 2021-05-31 stsp break;
1133 3cd22b21 2021-05-31 stsp } while (*ref == NULL);
1134 3cd22b21 2021-05-31 stsp free(line);
1135 3cd22b21 2021-05-31 stsp
1136 3cd22b21 2021-05-31 stsp return err;
1137 3cd22b21 2021-05-31 stsp }
1138 3cd22b21 2021-05-31 stsp
1139 3cd22b21 2021-05-31 stsp static const struct got_error *
1140 3cd22b21 2021-05-31 stsp open_ref(struct got_reference **ref, const char *path_refs, const char *subdir,
1141 3cd22b21 2021-05-31 stsp const char *name, int lock)
1142 3cd22b21 2021-05-31 stsp {
1143 3cd22b21 2021-05-31 stsp const struct got_error *err = NULL;
1144 3cd22b21 2021-05-31 stsp char *path = NULL;
1145 3cd22b21 2021-05-31 stsp char *absname = NULL;
1146 3cd22b21 2021-05-31 stsp int ref_is_absolute = (strncmp(name, "refs/", 5) == 0);
1147 3cd22b21 2021-05-31 stsp int ref_is_well_known = (subdir[0] == '\0' && is_well_known_ref(name));
1148 3cd22b21 2021-05-31 stsp
1149 3cd22b21 2021-05-31 stsp *ref = NULL;
1150 3cd22b21 2021-05-31 stsp
1151 3cd22b21 2021-05-31 stsp if (ref_is_absolute || ref_is_well_known) {
1152 3cd22b21 2021-05-31 stsp if (asprintf(&path, "%s/%s", path_refs, name) == -1)
1153 3cd22b21 2021-05-31 stsp return got_error_from_errno("asprintf");
1154 3cd22b21 2021-05-31 stsp absname = (char *)name;
1155 3cd22b21 2021-05-31 stsp } else {
1156 3cd22b21 2021-05-31 stsp if (asprintf(&path, "%s/%s%s%s", path_refs, subdir,
1157 3cd22b21 2021-05-31 stsp subdir[0] ? "/" : "", name) == -1)
1158 3cd22b21 2021-05-31 stsp return got_error_from_errno("asprintf");
1159 3cd22b21 2021-05-31 stsp
1160 3cd22b21 2021-05-31 stsp if (asprintf(&absname, "refs/%s%s%s",
1161 3cd22b21 2021-05-31 stsp subdir, subdir[0] ? "/" : "", name) == -1) {
1162 3cd22b21 2021-05-31 stsp err = got_error_from_errno("asprintf");
1163 3cd22b21 2021-05-31 stsp goto done;
1164 3cd22b21 2021-05-31 stsp }
1165 3cd22b21 2021-05-31 stsp }
1166 3cd22b21 2021-05-31 stsp
1167 3cd22b21 2021-05-31 stsp err = parse_ref_file(ref, name, absname, path, lock);
1168 3cd22b21 2021-05-31 stsp done:
1169 3cd22b21 2021-05-31 stsp if (!ref_is_absolute && !ref_is_well_known)
1170 3cd22b21 2021-05-31 stsp free(absname);
1171 3cd22b21 2021-05-31 stsp free(path);
1172 3cd22b21 2021-05-31 stsp return err;
1173 3cd22b21 2021-05-31 stsp }
1174 3cd22b21 2021-05-31 stsp
1175 3cd22b21 2021-05-31 stsp const struct got_error *
1176 3cd22b21 2021-05-31 stsp got_ref_open(struct got_reference **ref, struct got_repository *repo,
1177 3cd22b21 2021-05-31 stsp const char *refname, int lock)
1178 3cd22b21 2021-05-31 stsp {
1179 3cd22b21 2021-05-31 stsp const struct got_error *err = NULL;
1180 3cd22b21 2021-05-31 stsp char *path_refs = NULL;
1181 3cd22b21 2021-05-31 stsp const char *subdirs[] = {
1182 3cd22b21 2021-05-31 stsp GOT_REF_HEADS, GOT_REF_TAGS, GOT_REF_REMOTES
1183 3cd22b21 2021-05-31 stsp };
1184 3cd22b21 2021-05-31 stsp size_t i;
1185 3cd22b21 2021-05-31 stsp int well_known = is_well_known_ref(refname);
1186 3cd22b21 2021-05-31 stsp struct got_lockfile *lf = NULL;
1187 3cd22b21 2021-05-31 stsp
1188 3cd22b21 2021-05-31 stsp *ref = NULL;
1189 3cd22b21 2021-05-31 stsp
1190 3cd22b21 2021-05-31 stsp path_refs = get_refs_dir_path(repo, refname);
1191 3cd22b21 2021-05-31 stsp if (path_refs == NULL) {
1192 3cd22b21 2021-05-31 stsp err = got_error_from_errno2("get_refs_dir_path", refname);
1193 3cd22b21 2021-05-31 stsp goto done;
1194 3cd22b21 2021-05-31 stsp }
1195 3cd22b21 2021-05-31 stsp
1196 3cd22b21 2021-05-31 stsp if (well_known) {
1197 3cd22b21 2021-05-31 stsp err = open_ref(ref, path_refs, "", refname, lock);
1198 3cd22b21 2021-05-31 stsp } else {
1199 3cd22b21 2021-05-31 stsp char *packed_refs_path;
1200 3cd22b21 2021-05-31 stsp FILE *f;
1201 3cd22b21 2021-05-31 stsp
1202 3cd22b21 2021-05-31 stsp /* Search on-disk refs before packed refs! */
1203 3cd22b21 2021-05-31 stsp for (i = 0; i < nitems(subdirs); i++) {
1204 3cd22b21 2021-05-31 stsp err = open_ref(ref, path_refs, subdirs[i], refname,
1205 3cd22b21 2021-05-31 stsp lock);
1206 3cd22b21 2021-05-31 stsp if ((err && err->code != GOT_ERR_NOT_REF) || *ref)
1207 3cd22b21 2021-05-31 stsp goto done;
1208 3cd22b21 2021-05-31 stsp }
1209 3cd22b21 2021-05-31 stsp
1210 3cd22b21 2021-05-31 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
1211 3cd22b21 2021-05-31 stsp if (packed_refs_path == NULL) {
1212 3cd22b21 2021-05-31 stsp err = got_error_from_errno(
1213 3cd22b21 2021-05-31 stsp "got_repo_get_path_packed_refs");
1214 3cd22b21 2021-05-31 stsp goto done;
1215 3cd22b21 2021-05-31 stsp }
1216 3cd22b21 2021-05-31 stsp
1217 3cd22b21 2021-05-31 stsp if (lock) {
1218 3cd22b21 2021-05-31 stsp err = got_lockfile_lock(&lf, packed_refs_path);
1219 3cd22b21 2021-05-31 stsp if (err)
1220 3cd22b21 2021-05-31 stsp goto done;
1221 3cd22b21 2021-05-31 stsp }
1222 3cd22b21 2021-05-31 stsp f = fopen(packed_refs_path, "rb");
1223 3cd22b21 2021-05-31 stsp free(packed_refs_path);
1224 3cd22b21 2021-05-31 stsp if (f != NULL) {
1225 3cd22b21 2021-05-31 stsp err = open_packed_ref(ref, f, subdirs, nitems(subdirs),
1226 3cd22b21 2021-05-31 stsp refname);
1227 3cd22b21 2021-05-31 stsp if (!err) {
1228 3cd22b21 2021-05-31 stsp if (fclose(f) == EOF) {
1229 3cd22b21 2021-05-31 stsp err = got_error_from_errno("fclose");
1230 3cd22b21 2021-05-31 stsp got_ref_close(*ref);
1231 3cd22b21 2021-05-31 stsp *ref = NULL;
1232 3cd22b21 2021-05-31 stsp } else if (*ref)
1233 3cd22b21 2021-05-31 stsp (*ref)->lf = lf;
1234 3cd22b21 2021-05-31 stsp }
1235 3cd22b21 2021-05-31 stsp }
1236 3cd22b21 2021-05-31 stsp }
1237 3cd22b21 2021-05-31 stsp done:
1238 3cd22b21 2021-05-31 stsp if (!err && *ref == NULL)
1239 3cd22b21 2021-05-31 stsp err = got_error_not_ref(refname);
1240 3cd22b21 2021-05-31 stsp if (err && lf)
1241 3cd22b21 2021-05-31 stsp got_lockfile_unlock(lf);
1242 3cd22b21 2021-05-31 stsp free(path_refs);
1243 3cd22b21 2021-05-31 stsp return err;
1244 3cd22b21 2021-05-31 stsp }
1245 3cd22b21 2021-05-31 stsp
1246 3cd22b21 2021-05-31 stsp struct got_reference *
1247 3cd22b21 2021-05-31 stsp got_ref_dup(struct got_reference *ref)
1248 3cd22b21 2021-05-31 stsp {
1249 3cd22b21 2021-05-31 stsp struct got_reference *ret;
1250 3cd22b21 2021-05-31 stsp
1251 3cd22b21 2021-05-31 stsp ret = calloc(1, sizeof(*ret));
1252 3cd22b21 2021-05-31 stsp if (ret == NULL)
1253 3cd22b21 2021-05-31 stsp return NULL;
1254 3cd22b21 2021-05-31 stsp
1255 3cd22b21 2021-05-31 stsp ret->flags = ref->flags;
1256 3cd22b21 2021-05-31 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
1257 3cd22b21 2021-05-31 stsp ret->ref.symref.name = strdup(ref->ref.symref.name);
1258 3cd22b21 2021-05-31 stsp if (ret->ref.symref.name == NULL) {
1259 3cd22b21 2021-05-31 stsp free(ret);
1260 3cd22b21 2021-05-31 stsp return NULL;
1261 3cd22b21 2021-05-31 stsp }
1262 3cd22b21 2021-05-31 stsp ret->ref.symref.ref = strdup(ref->ref.symref.ref);
1263 3cd22b21 2021-05-31 stsp if (ret->ref.symref.ref == NULL) {
1264 3cd22b21 2021-05-31 stsp free(ret->ref.symref.name);
1265 3cd22b21 2021-05-31 stsp free(ret);
1266 3cd22b21 2021-05-31 stsp return NULL;
1267 3cd22b21 2021-05-31 stsp }
1268 3cd22b21 2021-05-31 stsp } else {
1269 3cd22b21 2021-05-31 stsp ret->ref.ref.name = strdup(ref->ref.ref.name);
1270 3cd22b21 2021-05-31 stsp if (ret->ref.ref.name == NULL) {
1271 3cd22b21 2021-05-31 stsp free(ret);
1272 3cd22b21 2021-05-31 stsp return NULL;
1273 3cd22b21 2021-05-31 stsp }
1274 3cd22b21 2021-05-31 stsp memcpy(ret->ref.ref.sha1, ref->ref.ref.sha1,
1275 3cd22b21 2021-05-31 stsp sizeof(ret->ref.ref.sha1));
1276 3cd22b21 2021-05-31 stsp }
1277 3cd22b21 2021-05-31 stsp
1278 3cd22b21 2021-05-31 stsp return ret;
1279 3cd22b21 2021-05-31 stsp }
1280 3cd22b21 2021-05-31 stsp
1281 3cd22b21 2021-05-31 stsp const struct got_error *
1282 3cd22b21 2021-05-31 stsp got_reflist_entry_dup(struct got_reflist_entry **newp,
1283 3cd22b21 2021-05-31 stsp struct got_reflist_entry *re)
1284 3cd22b21 2021-05-31 stsp {
1285 3cd22b21 2021-05-31 stsp const struct got_error *err = NULL;
1286 3cd22b21 2021-05-31 stsp struct got_reflist_entry *new;
1287 3cd22b21 2021-05-31 stsp
1288 3cd22b21 2021-05-31 stsp *newp = NULL;
1289 3cd22b21 2021-05-31 stsp
1290 3cd22b21 2021-05-31 stsp new = malloc(sizeof(*new));
1291 3cd22b21 2021-05-31 stsp if (new == NULL)
1292 3cd22b21 2021-05-31 stsp return got_error_from_errno("malloc");
1293 3cd22b21 2021-05-31 stsp
1294 3cd22b21 2021-05-31 stsp new->ref = got_ref_dup(re->ref);
1295 3cd22b21 2021-05-31 stsp if (new->ref == NULL) {
1296 3cd22b21 2021-05-31 stsp err = got_error_from_errno("got_ref_dup");
1297 3cd22b21 2021-05-31 stsp free(new);
1298 3cd22b21 2021-05-31 stsp return err;
1299 3cd22b21 2021-05-31 stsp }
1300 3cd22b21 2021-05-31 stsp
1301 3cd22b21 2021-05-31 stsp *newp = new;
1302 3cd22b21 2021-05-31 stsp return NULL;
1303 3cd22b21 2021-05-31 stsp }
1304 3cd22b21 2021-05-31 stsp
1305 3cd22b21 2021-05-31 stsp void
1306 3cd22b21 2021-05-31 stsp got_ref_list_free(struct got_reflist_head *refs)
1307 3cd22b21 2021-05-31 stsp {
1308 3cd22b21 2021-05-31 stsp struct got_reflist_entry *re;
1309 3cd22b21 2021-05-31 stsp
1310 3cd22b21 2021-05-31 stsp while ((re = TAILQ_FIRST(refs))) {
1311 3cd22b21 2021-05-31 stsp TAILQ_REMOVE(refs, re, entry);
1312 3cd22b21 2021-05-31 stsp free(re);
1313 3cd22b21 2021-05-31 stsp }
1314 3cd22b21 2021-05-31 stsp }
1315 3cd22b21 2021-05-31 stsp EOF
1316 3cd22b21 2021-05-31 stsp (cd $testroot/repo && git add reference.c)
1317 3cd22b21 2021-05-31 stsp git_commit $testroot/repo -m "added reference.c file"
1318 3cd22b21 2021-05-31 stsp local base_commit=`git_show_head $testroot/repo`
1319 3cd22b21 2021-05-31 stsp
1320 3cd22b21 2021-05-31 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1321 49c543a6 2022-03-31 naddy ret=$?
1322 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1323 3cd22b21 2021-05-31 stsp test_done "$testroot" "$ret"
1324 3cd22b21 2021-05-31 stsp return 1
1325 cce854ad 2021-04-13 stsp fi
1326 3cd22b21 2021-05-31 stsp
1327 3cd22b21 2021-05-31 stsp (cd $testroot/repo && git checkout -q -b newbranch)
1328 3cd22b21 2021-05-31 stsp ed -s $testroot/repo/reference.c <<EOF
1329 3cd22b21 2021-05-31 stsp 91a
1330 3cd22b21 2021-05-31 stsp if (!is_valid_ref_name(name))
1331 3cd22b21 2021-05-31 stsp return got_error_path(name, GOT_ERR_BAD_REF_NAME);
1332 3cd22b21 2021-05-31 stsp
1333 3cd22b21 2021-05-31 stsp .
1334 3cd22b21 2021-05-31 stsp w
1335 3cd22b21 2021-05-31 stsp q
1336 3cd22b21 2021-05-31 stsp EOF
1337 3cd22b21 2021-05-31 stsp git_commit $testroot/repo -m "added lines on newbranch"
1338 3cd22b21 2021-05-31 stsp local branch_rev1=`git_show_head $testroot/repo`
1339 3cd22b21 2021-05-31 stsp
1340 3cd22b21 2021-05-31 stsp ed -s $testroot/repo/reference.c <<EOF
1341 3cd22b21 2021-05-31 stsp 255a
1342 3cd22b21 2021-05-31 stsp got_ref_close(re->ref);
1343 3cd22b21 2021-05-31 stsp .
1344 3cd22b21 2021-05-31 stsp w
1345 3cd22b21 2021-05-31 stsp q
1346 3cd22b21 2021-05-31 stsp EOF
1347 3cd22b21 2021-05-31 stsp git_commit $testroot/repo -m "more lines on newbranch"
1348 3cd22b21 2021-05-31 stsp
1349 3cd22b21 2021-05-31 stsp local branch_rev2=`git_show_head $testroot/repo`
1350 3cd22b21 2021-05-31 stsp
1351 3cd22b21 2021-05-31 stsp (cd $testroot/wt && got cherrypick $branch_rev2 > $testroot/stdout)
1352 3cd22b21 2021-05-31 stsp
1353 3cd22b21 2021-05-31 stsp echo "G reference.c" > $testroot/stdout.expected
1354 3cd22b21 2021-05-31 stsp echo "Merged commit $branch_rev2" >> $testroot/stdout.expected
1355 3cd22b21 2021-05-31 stsp
1356 3cd22b21 2021-05-31 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1357 49c543a6 2022-03-31 naddy ret=$?
1358 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1359 3cd22b21 2021-05-31 stsp diff -u $testroot/stdout.expected $testroot/stdout
1360 3cd22b21 2021-05-31 stsp test_done "$testroot" "$ret"
1361 3cd22b21 2021-05-31 stsp return 1
1362 3cd22b21 2021-05-31 stsp fi
1363 3cd22b21 2021-05-31 stsp
1364 3cd22b21 2021-05-31 stsp cat > $testroot/diff.expected <<EOF
1365 3cd22b21 2021-05-31 stsp --- reference.c
1366 3cd22b21 2021-05-31 stsp +++ reference.c
1367 3cd22b21 2021-05-31 stsp @@ -250,6 +250,7 @@ got_ref_list_free(struct got_reflist_head *refs)
1368 3cd22b21 2021-05-31 stsp
1369 3cd22b21 2021-05-31 stsp while ((re = TAILQ_FIRST(refs))) {
1370 3cd22b21 2021-05-31 stsp TAILQ_REMOVE(refs, re, entry);
1371 3cd22b21 2021-05-31 stsp + got_ref_close(re->ref);
1372 3cd22b21 2021-05-31 stsp free(re);
1373 3cd22b21 2021-05-31 stsp }
1374 5e91dae4 2022-08-30 stsp }
1375 3cd22b21 2021-05-31 stsp EOF
1376 3cd22b21 2021-05-31 stsp (cd $testroot/wt && got diff |
1377 8469d821 2022-06-25 stsp egrep -v '^(diff|blob|file|commit|path)' > $testroot/diff)
1378 3cd22b21 2021-05-31 stsp cmp -s $testroot/diff.expected $testroot/diff
1379 49c543a6 2022-03-31 naddy ret=$?
1380 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1381 54d5be07 2021-06-03 stsp diff -u $testroot/diff.expected $testroot/diff
1382 3cd22b21 2021-05-31 stsp fi
1383 0baddd91 2021-09-03 stsp
1384 0baddd91 2021-09-03 stsp test_done "$testroot" "$ret"
1385 0baddd91 2021-09-03 stsp }
1386 0baddd91 2021-09-03 stsp
1387 0baddd91 2021-09-03 stsp test_cherrypick_same_branch() {
1388 0baddd91 2021-09-03 stsp local testroot=`test_init cherrypick_same_branch`
1389 0baddd91 2021-09-03 stsp
1390 0baddd91 2021-09-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1391 49c543a6 2022-03-31 naddy ret=$?
1392 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1393 0baddd91 2021-09-03 stsp test_done "$testroot" "$ret"
1394 0baddd91 2021-09-03 stsp return 1
1395 0baddd91 2021-09-03 stsp fi
1396 0baddd91 2021-09-03 stsp
1397 0baddd91 2021-09-03 stsp (cd $testroot/repo && git checkout -q -b newbranch)
1398 0baddd91 2021-09-03 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
1399 0baddd91 2021-09-03 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
1400 0baddd91 2021-09-03 stsp
1401 0baddd91 2021-09-03 stsp echo "modified alpha on branch" > $testroot/repo/alpha
1402 0baddd91 2021-09-03 stsp (cd $testroot/repo && git rm -q beta)
1403 0baddd91 2021-09-03 stsp echo "new file on branch" > $testroot/repo/epsilon/new
1404 0baddd91 2021-09-03 stsp (cd $testroot/repo && git add epsilon/new)
1405 0baddd91 2021-09-03 stsp git_commit $testroot/repo -m "committing more changes on newbranch"
1406 3cd22b21 2021-05-31 stsp
1407 0baddd91 2021-09-03 stsp local branch_rev=`git_show_head $testroot/repo`
1408 0baddd91 2021-09-03 stsp
1409 0baddd91 2021-09-03 stsp # picking a commit from the branch's own history does not make
1410 0baddd91 2021-09-03 stsp # sense but we should have test coverage for this case regardless
1411 0baddd91 2021-09-03 stsp (cd $testroot/wt && got up -b newbranch > /dev/null)
1412 0baddd91 2021-09-03 stsp (cd $testroot/wt && got cherrypick $branch_rev > $testroot/stdout)
1413 0baddd91 2021-09-03 stsp
1414 0baddd91 2021-09-03 stsp echo "G alpha" > $testroot/stdout.expected
1415 0baddd91 2021-09-03 stsp echo "! beta" >> $testroot/stdout.expected
1416 0baddd91 2021-09-03 stsp echo "G epsilon/new" >> $testroot/stdout.expected
1417 0baddd91 2021-09-03 stsp echo "Merged commit $branch_rev" >> $testroot/stdout.expected
1418 35ca1db7 2021-09-28 stsp echo -n "Files which had incoming changes but could not be found " \
1419 35ca1db7 2021-09-28 stsp >> $testroot/stdout.expected
1420 35ca1db7 2021-09-28 stsp echo "in the work tree: 1" >> $testroot/stdout.expected
1421 0baddd91 2021-09-03 stsp
1422 0baddd91 2021-09-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1423 49c543a6 2022-03-31 naddy ret=$?
1424 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1425 0baddd91 2021-09-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
1426 0baddd91 2021-09-03 stsp fi
1427 69d57f3d 2020-07-31 stsp test_done "$testroot" "$ret"
1428 e7303626 2020-05-14 stsp }
1429 e7303626 2020-05-14 stsp
1430 c1e86b1d 2021-10-08 stsp test_cherrypick_dot_on_a_line_by_itself() {
1431 c1e86b1d 2021-10-08 stsp local testroot=`test_init cherrypick_dot_on_a_line_by_itself`
1432 0baddd91 2021-09-03 stsp
1433 c1e86b1d 2021-10-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1434 49c543a6 2022-03-31 naddy ret=$?
1435 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1436 c1e86b1d 2021-10-08 stsp test_done "$testroot" "$ret"
1437 c1e86b1d 2021-10-08 stsp return 1
1438 c1e86b1d 2021-10-08 stsp fi
1439 c1e86b1d 2021-10-08 stsp
1440 c1e86b1d 2021-10-08 stsp (cd $testroot/repo && git checkout -q -b newbranch)
1441 f10244c0 2021-10-11 stsp printf "modified\n:delta\n.\non\n:branch\n" > $testroot/repo/gamma/delta
1442 c1e86b1d 2021-10-08 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
1443 c1e86b1d 2021-10-08 stsp local branch_rev=`git_show_head $testroot/repo`
1444 c1e86b1d 2021-10-08 stsp
1445 c1e86b1d 2021-10-08 stsp (cd $testroot/wt && got cherrypick newbranch > $testroot/stdout)
1446 c1e86b1d 2021-10-08 stsp
1447 c1e86b1d 2021-10-08 stsp echo "G gamma/delta" >> $testroot/stdout.expected
1448 c1e86b1d 2021-10-08 stsp echo "Merged commit $branch_rev" >> $testroot/stdout.expected
1449 c1e86b1d 2021-10-08 stsp
1450 c1e86b1d 2021-10-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1451 49c543a6 2022-03-31 naddy ret=$?
1452 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1453 c1e86b1d 2021-10-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1454 c1e86b1d 2021-10-08 stsp test_done "$testroot" "$ret"
1455 c1e86b1d 2021-10-08 stsp return 1
1456 c1e86b1d 2021-10-08 stsp fi
1457 c1e86b1d 2021-10-08 stsp
1458 f10244c0 2021-10-11 stsp printf "modified\n:delta\n.\non\n:branch\n" > $testroot/content.expected
1459 c1e86b1d 2021-10-08 stsp cat $testroot/wt/gamma/delta > $testroot/content
1460 c1e86b1d 2021-10-08 stsp cmp -s $testroot/content.expected $testroot/content
1461 49c543a6 2022-03-31 naddy ret=$?
1462 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1463 f10244c0 2021-10-11 stsp diff -u $testroot/content.expected $testroot/content
1464 c1e86b1d 2021-10-08 stsp fi
1465 c1e86b1d 2021-10-08 stsp test_done "$testroot" "$ret"
1466 0e039681 2021-11-15 stsp }
1467 0e039681 2021-11-15 stsp
1468 0e039681 2021-11-15 stsp test_cherrypick_binary_file() {
1469 0e039681 2021-11-15 stsp local testroot=`test_init cherrypick_binary_file`
1470 0e039681 2021-11-15 stsp local commit_id0=`git_show_head $testroot/repo`
1471 0e039681 2021-11-15 stsp
1472 0e039681 2021-11-15 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1473 49c543a6 2022-03-31 naddy ret=$?
1474 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1475 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1476 0e039681 2021-11-15 stsp return 1
1477 0e039681 2021-11-15 stsp fi
1478 0e039681 2021-11-15 stsp
1479 0e039681 2021-11-15 stsp cp /bin/ls $testroot/wt/foo
1480 0e039681 2021-11-15 stsp chmod 755 $testroot/wt/foo
1481 0e039681 2021-11-15 stsp (cd $testroot/wt && got add foo >/dev/null)
1482 0e039681 2021-11-15 stsp (cd $testroot/wt && got commit -m 'add binary file' > /dev/null)
1483 0e039681 2021-11-15 stsp local commit_id1=`git_show_head $testroot/repo`
1484 0e039681 2021-11-15 stsp
1485 0e039681 2021-11-15 stsp cp /bin/cat $testroot/wt/foo
1486 0e039681 2021-11-15 stsp chmod 755 $testroot/wt/foo
1487 0e039681 2021-11-15 stsp (cd $testroot/wt && got commit -m 'change binary file' > /dev/null)
1488 0e039681 2021-11-15 stsp local commit_id2=`git_show_head $testroot/repo`
1489 0e039681 2021-11-15 stsp
1490 0e039681 2021-11-15 stsp cp /bin/cp $testroot/wt/foo
1491 0e039681 2021-11-15 stsp chmod 755 $testroot/wt/foo
1492 0e039681 2021-11-15 stsp (cd $testroot/wt && got commit -m 'change binary file' > /dev/null)
1493 0e039681 2021-11-15 stsp local commit_id3=`git_show_head $testroot/repo`
1494 0e039681 2021-11-15 stsp
1495 0e039681 2021-11-15 stsp (cd $testroot/wt && got rm foo >/dev/null)
1496 0e039681 2021-11-15 stsp (cd $testroot/wt && got commit -m 'remove binary file' > /dev/null)
1497 0e039681 2021-11-15 stsp local commit_id4=`git_show_head $testroot/repo`
1498 0e039681 2021-11-15 stsp
1499 0e039681 2021-11-15 stsp # backdate the work tree to make it usable for cherry-picking
1500 0e039681 2021-11-15 stsp (cd $testroot/wt && got up -c $commit_id0 > /dev/null)
1501 0e039681 2021-11-15 stsp
1502 0e039681 2021-11-15 stsp # cherry-pick addition of a binary file
1503 0e039681 2021-11-15 stsp (cd $testroot/wt && got cy $commit_id1 > $testroot/stdout)
1504 0e039681 2021-11-15 stsp
1505 0e039681 2021-11-15 stsp echo "A foo" > $testroot/stdout.expected
1506 0e039681 2021-11-15 stsp echo "Merged commit $commit_id1" >> $testroot/stdout.expected
1507 0e039681 2021-11-15 stsp
1508 0e039681 2021-11-15 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1509 49c543a6 2022-03-31 naddy ret=$?
1510 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1511 0e039681 2021-11-15 stsp diff -u $testroot/stdout.expected $testroot/stdout
1512 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1513 0e039681 2021-11-15 stsp return 1
1514 0e039681 2021-11-15 stsp fi
1515 0e039681 2021-11-15 stsp
1516 0e039681 2021-11-15 stsp cp /bin/ls $testroot/content.expected
1517 0e039681 2021-11-15 stsp chmod 755 $testroot/content.expected
1518 0e039681 2021-11-15 stsp cp $testroot/wt/foo $testroot/content
1519 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
1520 49c543a6 2022-03-31 naddy ret=$?
1521 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1522 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
1523 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1524 0e039681 2021-11-15 stsp return 1
1525 0e039681 2021-11-15 stsp fi
1526 0e039681 2021-11-15 stsp
1527 0e039681 2021-11-15 stsp # cherry-pick modification of a binary file
1528 0e039681 2021-11-15 stsp (cd $testroot/wt && got cy $commit_id2 > $testroot/stdout)
1529 0e039681 2021-11-15 stsp
1530 0e039681 2021-11-15 stsp echo "G foo" > $testroot/stdout.expected
1531 0e039681 2021-11-15 stsp echo "Merged commit $commit_id2" >> $testroot/stdout.expected
1532 0e039681 2021-11-15 stsp
1533 0e039681 2021-11-15 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1534 49c543a6 2022-03-31 naddy ret=$?
1535 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1536 0e039681 2021-11-15 stsp diff -u $testroot/stdout.expected $testroot/stdout
1537 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1538 0e039681 2021-11-15 stsp return 1
1539 0e039681 2021-11-15 stsp fi
1540 0e039681 2021-11-15 stsp
1541 0e039681 2021-11-15 stsp cp /bin/cat $testroot/content.expected
1542 0e039681 2021-11-15 stsp chmod 755 $testroot/content.expected
1543 0e039681 2021-11-15 stsp cp $testroot/wt/foo $testroot/content
1544 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
1545 49c543a6 2022-03-31 naddy ret=$?
1546 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1547 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
1548 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1549 0e039681 2021-11-15 stsp return 1
1550 0e039681 2021-11-15 stsp fi
1551 0e039681 2021-11-15 stsp
1552 0e039681 2021-11-15 stsp # cherry-pick conflicting addition of a binary file
1553 0e039681 2021-11-15 stsp (cd $testroot/wt && got cy $commit_id1 > $testroot/stdout)
1554 0e039681 2021-11-15 stsp
1555 0e039681 2021-11-15 stsp echo "C foo" > $testroot/stdout.expected
1556 0e039681 2021-11-15 stsp echo "Merged commit $commit_id1" >> $testroot/stdout.expected
1557 0e039681 2021-11-15 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
1558 0e039681 2021-11-15 stsp
1559 0e039681 2021-11-15 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1560 49c543a6 2022-03-31 naddy ret=$?
1561 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1562 0e039681 2021-11-15 stsp diff -u $testroot/stdout.expected $testroot/stdout
1563 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1564 0e039681 2021-11-15 stsp return 1
1565 0e039681 2021-11-15 stsp fi
1566 0e039681 2021-11-15 stsp
1567 0e039681 2021-11-15 stsp echo "Binary files differ and cannot be merged automatically:" \
1568 0e039681 2021-11-15 stsp > $testroot/content.expected
1569 0e039681 2021-11-15 stsp echo "<<<<<<< merged change: commit $commit_id1" \
1570 0e039681 2021-11-15 stsp >> $testroot/content.expected
1571 0e039681 2021-11-15 stsp echo -n "file " >> $testroot/content.expected
1572 0e039681 2021-11-15 stsp ls $testroot/wt/foo-1-* >> $testroot/content.expected
1573 0e039681 2021-11-15 stsp echo '=======' >> $testroot/content.expected
1574 0e039681 2021-11-15 stsp echo -n "file " >> $testroot/content.expected
1575 0e039681 2021-11-15 stsp ls $testroot/wt/foo-2-* >> $testroot/content.expected
1576 0e039681 2021-11-15 stsp echo '>>>>>>>' >> $testroot/content.expected
1577 0e039681 2021-11-15 stsp cp $testroot/wt/foo $testroot/content
1578 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
1579 49c543a6 2022-03-31 naddy ret=$?
1580 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1581 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
1582 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1583 0e039681 2021-11-15 stsp return 1
1584 0e039681 2021-11-15 stsp fi
1585 0e039681 2021-11-15 stsp
1586 0e039681 2021-11-15 stsp # revert local changes to allow further testing
1587 0e039681 2021-11-15 stsp (cd $testroot/wt && got revert -R . >/dev/null)
1588 0e039681 2021-11-15 stsp
1589 0e039681 2021-11-15 stsp (cd $testroot/wt && got status > $testroot/stdout)
1590 0e039681 2021-11-15 stsp echo '? foo' > $testroot/stdout.expected
1591 0e039681 2021-11-15 stsp echo -n '? ' >> $testroot/stdout.expected
1592 0e039681 2021-11-15 stsp (cd $testroot/wt && ls foo-1-* >> $testroot/stdout.expected)
1593 0e039681 2021-11-15 stsp echo -n '? ' >> $testroot/stdout.expected
1594 0e039681 2021-11-15 stsp (cd $testroot/wt && ls foo-2-* >> $testroot/stdout.expected)
1595 0e039681 2021-11-15 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1596 49c543a6 2022-03-31 naddy ret=$?
1597 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1598 0e039681 2021-11-15 stsp diff -u $testroot/stdout.expected $testroot/stdout
1599 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1600 0e039681 2021-11-15 stsp return 1
1601 0e039681 2021-11-15 stsp fi
1602 0e039681 2021-11-15 stsp
1603 0e039681 2021-11-15 stsp # tidy up
1604 0e039681 2021-11-15 stsp rm $testroot/wt/foo $testroot/wt/foo-1-* $testroot/wt/foo-2-*
1605 0e039681 2021-11-15 stsp (cd $testroot/wt && got up -c $commit_id1 > /dev/null)
1606 0e039681 2021-11-15 stsp
1607 0e039681 2021-11-15 stsp # cherry-pick conflicting modification of a binary file
1608 0e039681 2021-11-15 stsp (cd $testroot/wt && got cy $commit_id3 > $testroot/stdout)
1609 0e039681 2021-11-15 stsp
1610 0e039681 2021-11-15 stsp echo "C foo" > $testroot/stdout.expected
1611 0e039681 2021-11-15 stsp echo "Merged commit $commit_id3" >> $testroot/stdout.expected
1612 0e039681 2021-11-15 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
1613 0e039681 2021-11-15 stsp
1614 0e039681 2021-11-15 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1615 49c543a6 2022-03-31 naddy ret=$?
1616 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1617 0e039681 2021-11-15 stsp diff -u $testroot/stdout.expected $testroot/stdout
1618 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1619 0e039681 2021-11-15 stsp return 1
1620 0e039681 2021-11-15 stsp fi
1621 0e039681 2021-11-15 stsp
1622 0e039681 2021-11-15 stsp echo "Binary files differ and cannot be merged automatically:" \
1623 0e039681 2021-11-15 stsp > $testroot/content.expected
1624 0e039681 2021-11-15 stsp echo '<<<<<<<' >> $testroot/content.expected
1625 0e039681 2021-11-15 stsp echo -n "file " >> $testroot/content.expected
1626 0e039681 2021-11-15 stsp ls $testroot/wt/foo-1-* >> $testroot/content.expected
1627 0e039681 2021-11-15 stsp echo "||||||| 3-way merge base: commit $commit_id2" \
1628 0e039681 2021-11-15 stsp >> $testroot/content.expected
1629 0e039681 2021-11-15 stsp echo -n "file " >> $testroot/content.expected
1630 0e039681 2021-11-15 stsp ls $testroot/wt/foo-orig-* >> $testroot/content.expected
1631 0e039681 2021-11-15 stsp echo '=======' >> $testroot/content.expected
1632 0e039681 2021-11-15 stsp echo -n "file " >> $testroot/content.expected
1633 0e039681 2021-11-15 stsp ls $testroot/wt/foo-2-* >> $testroot/content.expected
1634 0e039681 2021-11-15 stsp echo ">>>>>>> merged change: commit $commit_id3" \
1635 0e039681 2021-11-15 stsp >> $testroot/content.expected
1636 0e039681 2021-11-15 stsp cp $testroot/wt/foo $testroot/content
1637 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
1638 49c543a6 2022-03-31 naddy ret=$?
1639 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1640 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
1641 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1642 0e039681 2021-11-15 stsp return 1
1643 0e039681 2021-11-15 stsp fi
1644 0e039681 2021-11-15 stsp
1645 0e039681 2021-11-15 stsp cp /bin/ls $testroot/content.expected
1646 0e039681 2021-11-15 stsp chmod 755 $testroot/content.expected
1647 0e039681 2021-11-15 stsp cat $testroot/wt/foo-1-* > $testroot/content
1648 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
1649 49c543a6 2022-03-31 naddy ret=$?
1650 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1651 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
1652 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1653 0e039681 2021-11-15 stsp return 1
1654 0e039681 2021-11-15 stsp fi
1655 0e039681 2021-11-15 stsp
1656 0e039681 2021-11-15 stsp cp /bin/cp $testroot/content.expected
1657 0e039681 2021-11-15 stsp chmod 755 $testroot/content.expected
1658 0e039681 2021-11-15 stsp cat $testroot/wt/foo-2-* > $testroot/content
1659 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
1660 49c543a6 2022-03-31 naddy ret=$?
1661 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1662 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
1663 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1664 0e039681 2021-11-15 stsp return 1
1665 0e039681 2021-11-15 stsp fi
1666 0e039681 2021-11-15 stsp
1667 0e039681 2021-11-15 stsp # revert local changes to allow further testing
1668 0e039681 2021-11-15 stsp (cd $testroot/wt && got revert -R . > /dev/null)
1669 0e039681 2021-11-15 stsp rm $testroot/wt/foo-1-*
1670 0e039681 2021-11-15 stsp rm $testroot/wt/foo-2-*
1671 0e039681 2021-11-15 stsp (cd $testroot/wt && got up -c $commit_id3 > /dev/null)
1672 0e039681 2021-11-15 stsp
1673 0e039681 2021-11-15 stsp # cherry-pick deletion of a binary file
1674 0e039681 2021-11-15 stsp (cd $testroot/wt && got cy $commit_id4 > $testroot/stdout)
1675 0e039681 2021-11-15 stsp
1676 0e039681 2021-11-15 stsp echo "D foo" > $testroot/stdout.expected
1677 0e039681 2021-11-15 stsp echo "Merged commit $commit_id4" >> $testroot/stdout.expected
1678 0e039681 2021-11-15 stsp
1679 0e039681 2021-11-15 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1680 49c543a6 2022-03-31 naddy ret=$?
1681 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1682 0e039681 2021-11-15 stsp diff -u $testroot/stdout.expected $testroot/stdout
1683 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
1684 0e039681 2021-11-15 stsp return 1
1685 0e039681 2021-11-15 stsp fi
1686 0e039681 2021-11-15 stsp
1687 0e039681 2021-11-15 stsp if [ -e $testroot/wt/foo ]; then
1688 0e039681 2021-11-15 stsp echo "removed file foo still exists on disk" >&2
1689 0e039681 2021-11-15 stsp test_done "$testroot" "1"
1690 0e039681 2021-11-15 stsp return 1
1691 0e039681 2021-11-15 stsp fi
1692 0e039681 2021-11-15 stsp test_done "$testroot" "0"
1693 b2b3fce1 2022-10-29 op }
1694 b2b3fce1 2022-10-29 op
1695 b2b3fce1 2022-10-29 op test_cherrypick_umask() {
1696 b2b3fce1 2022-10-29 op local testroot=`test_init cherrypick_umask`
1697 b2b3fce1 2022-10-29 op
1698 b2b3fce1 2022-10-29 op got checkout $testroot/repo $testroot/wt >/dev/null
1699 b2b3fce1 2022-10-29 op ret=$?
1700 b2b3fce1 2022-10-29 op if [ $ret -ne 0 ]; then
1701 b2b3fce1 2022-10-29 op test_done "$testroot" $ret
1702 b2b3fce1 2022-10-29 op return 1
1703 b2b3fce1 2022-10-29 op fi
1704 b2b3fce1 2022-10-29 op
1705 b2b3fce1 2022-10-29 op (cd "$testroot/wt" && got branch newbranch) >/dev/null
1706 b2b3fce1 2022-10-29 op echo "modified alpha on branch" > $testroot/wt/alpha
1707 b2b3fce1 2022-10-29 op (cd "$testroot/wt" && got commit -m 'edit alpha') >/dev/null
1708 b2b3fce1 2022-10-29 op (cd "$testroot/wt" && got update -b master) >/dev/null
1709 b2b3fce1 2022-10-29 op
1710 b2b3fce1 2022-10-29 op # using a subshell to avoid clobbering global umask
1711 b2b3fce1 2022-10-29 op (umask 077 && cd "$testroot/wt" && got cherrypick newbranch) >/dev/null
1712 b2b3fce1 2022-10-29 op ret=$?
1713 b2b3fce1 2022-10-29 op if [ $ret -ne 0 ]; then
1714 b2b3fce1 2022-10-29 op test_done "$testroot" $ret
1715 b2b3fce1 2022-10-29 op return 1
1716 b2b3fce1 2022-10-29 op fi
1717 b2b3fce1 2022-10-29 op
1718 b2b3fce1 2022-10-29 op if ! ls -l "$testroot/wt/alpha" | grep -q ^-rw-------; then
1719 b2b3fce1 2022-10-29 op echo "alpha is not 0600 after cherrypick!" >&2
1720 b2b3fce1 2022-10-29 op ls -l "$testroot/wt/alpha" >&2
1721 b2b3fce1 2022-10-29 op test_done "$testroot" $ret
1722 b2b3fce1 2022-10-29 op return 1
1723 b2b3fce1 2022-10-29 op fi
1724 b2b3fce1 2022-10-29 op
1725 b2b3fce1 2022-10-29 op test_done "$testroot" 0
1726 c1e86b1d 2021-10-08 stsp }
1727 c1e86b1d 2021-10-08 stsp
1728 7fb414ae 2020-08-08 stsp test_parseargs "$@"
1729 234035bc 2019-06-01 stsp run_test test_cherrypick_basic
1730 03415a1a 2019-06-02 stsp run_test test_cherrypick_root_commit
1731 ceb466a7 2020-04-18 stsp run_test test_cherrypick_into_work_tree_with_conflicts
1732 ed99f061 2021-09-03 stsp run_test test_cherrypick_into_work_tree_with_mixed_commits
1733 e7303626 2020-05-14 stsp run_test test_cherrypick_modified_submodule
1734 e7303626 2020-05-14 stsp run_test test_cherrypick_added_submodule
1735 e7303626 2020-05-14 stsp run_test test_cherrypick_conflict_wt_file_vs_repo_submodule
1736 af57b12a 2020-07-23 stsp run_test test_cherrypick_modified_symlinks
1737 e26bafba 2020-07-23 stsp run_test test_cherrypick_symlink_conflicts
1738 69d57f3d 2020-07-31 stsp run_test test_cherrypick_with_path_prefix_and_empty_tree
1739 cce854ad 2021-04-13 stsp run_test test_cherrypick_conflict_no_eol
1740 cce854ad 2021-04-13 stsp run_test test_cherrypick_conflict_no_eol2
1741 3cd22b21 2021-05-31 stsp run_test test_cherrypick_unrelated_changes
1742 0baddd91 2021-09-03 stsp run_test test_cherrypick_same_branch
1743 c1e86b1d 2021-10-08 stsp run_test test_cherrypick_dot_on_a_line_by_itself
1744 0e039681 2021-11-15 stsp run_test test_cherrypick_binary_file
1745 b2b3fce1 2022-10-29 op run_test test_cherrypick_umask