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 fc414659 2022-04-16 thomas ret=$?
24 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
54 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
64 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
80 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
94 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
107 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
121 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
132 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
160 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
171 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
183 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
194 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
223 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
232 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
246 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
254 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
262 fc414659 2022-04-16 thomas 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 b6b86fd1 2022-08-30 thomas 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 fc414659 2022-04-16 thomas ret=$?
278 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
299 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
313 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
321 fc414659 2022-04-16 thomas 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 bf3ab206 2022-10-24 thomas (cd $testroot/repo && git -c protocol.file.allow=always \
334 bf3ab206 2022-10-24 thomas 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 fc414659 2022-04-16 thomas ret=$?
356 fc414659 2022-04-16 thomas 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 bf3ab206 2022-10-24 thomas (cd $testroot/repo && git -c protocol.file.allow=always \
372 bf3ab206 2022-10-24 thomas 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 fc414659 2022-04-16 thomas ret=$?
382 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
398 fc414659 2022-04-16 thomas 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 bf3ab206 2022-10-24 thomas (cd $testroot/repo && git -c protocol.file.allow=always \
409 bf3ab206 2022-10-24 thomas 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 fc414659 2022-04-16 thomas ret=$?
424 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
436 fc414659 2022-04-16 thomas 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 ace90326 2021-09-27 thomas got tree -r $testroot/repo -R -c $commit_id1 \
455 ace90326 2021-09-27 thomas > $testroot/stdout
456 ace90326 2021-09-27 thomas cat > $testroot/stdout.expected <<EOF
457 ace90326 2021-09-27 thomas alpha
458 ace90326 2021-09-27 thomas alpha.link@ -> alpha
459 ace90326 2021-09-27 thomas beta
460 ace90326 2021-09-27 thomas epsilon/
461 ace90326 2021-09-27 thomas epsilon/beta.link@ -> ../beta
462 ace90326 2021-09-27 thomas epsilon/zeta
463 ace90326 2021-09-27 thomas epsilon.link@ -> epsilon
464 ace90326 2021-09-27 thomas gamma/
465 ace90326 2021-09-27 thomas gamma/delta
466 ace90326 2021-09-27 thomas nonexistent.link@ -> nonexistent
467 ace90326 2021-09-27 thomas passwd.link@ -> /etc/passwd
468 ace90326 2021-09-27 thomas EOF
469 ace90326 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
470 fc414659 2022-04-16 thomas ret=$?
471 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
472 ace90326 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
473 ace90326 2021-09-27 thomas test_done "$testroot" "$ret"
474 ace90326 2021-09-27 thomas return 1
475 ace90326 2021-09-27 thomas fi
476 ace90326 2021-09-27 thomas
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 dd6165e4 2021-09-21 thomas.ad (cd $testroot/repo && ln -sfT gamma epsilon.link)
483 af57b12a 2020-07-23 stsp (cd $testroot/repo && ln -sf ../gamma/delta epsilon/beta.link)
484 ace90326 2021-09-27 thomas (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 fc414659 2022-04-16 thomas ret=$?
502 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
518 fc414659 2022-04-16 thomas 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 ace90326 2021-09-27 thomas if ! [ -h $testroot/wt/dotgotfoo.link ]; then
525 ace90326 2021-09-27 thomas echo "dotgotfoo.link is not a symlink"
526 ace90326 2021-09-27 thomas test_done "$testroot" "1"
527 ace90326 2021-09-27 thomas return 1
528 ace90326 2021-09-27 thomas fi
529 ace90326 2021-09-27 thomas
530 ace90326 2021-09-27 thomas readlink $testroot/wt/dotgotfoo.link > $testroot/stdout
531 ace90326 2021-09-27 thomas echo ".got/foo" > $testroot/stdout.expected
532 ace90326 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
533 fc414659 2022-04-16 thomas ret=$?
534 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
535 ace90326 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
536 ace90326 2021-09-27 thomas test_done "$testroot" "$ret"
537 ace90326 2021-09-27 thomas return 1
538 ace90326 2021-09-27 thomas fi
539 ace90326 2021-09-27 thomas
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 fc414659 2022-04-16 thomas ret=$?
550 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
568 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
578 fc414659 2022-04-16 thomas 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 ace90326 2021-09-27 thomas (cd $testroot/wt && got commit -m 'commit cherrypick result' \
592 ace90326 2021-09-27 thomas > /dev/null 2>$testroot/stderr)
593 fc414659 2022-04-16 thomas ret=$?
594 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
595 ace90326 2021-09-27 thomas echo "got commit succeeded unexpectedly" >&2
596 4e2bdb0d 2022-06-13 thomas test_done "$testroot" "1"
597 ace90326 2021-09-27 thomas return 1
598 ace90326 2021-09-27 thomas fi
599 ace90326 2021-09-27 thomas echo -n "got: $testroot/wt/dotgotfoo.link: symbolic link points " \
600 ace90326 2021-09-27 thomas > $testroot/stderr.expected
601 ace90326 2021-09-27 thomas echo "outside of paths under version control" \
602 ace90326 2021-09-27 thomas >> $testroot/stderr.expected
603 ace90326 2021-09-27 thomas cmp -s $testroot/stderr.expected $testroot/stderr
604 fc414659 2022-04-16 thomas ret=$?
605 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
606 ace90326 2021-09-27 thomas diff -u $testroot/stderr.expected $testroot/stderr
607 ace90326 2021-09-27 thomas test_done "$testroot" "$ret"
608 ace90326 2021-09-27 thomas return 1
609 ace90326 2021-09-27 thomas fi
610 ace90326 2021-09-27 thomas
611 ace90326 2021-09-27 thomas (cd $testroot/wt && got commit -S -m 'commit cherrypick result' \
612 ace90326 2021-09-27 thomas > /dev/null)
613 fc414659 2022-04-16 thomas ret=$?
614 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
615 ace90326 2021-09-27 thomas echo "got commit failed unexpectedly" >&2
616 ace90326 2021-09-27 thomas test_done "$testroot" "$ret"
617 ace90326 2021-09-27 thomas return 1
618 ace90326 2021-09-27 thomas fi
619 ace90326 2021-09-27 thomas local commit_id2=`git_show_head $testroot/repo`
620 ace90326 2021-09-27 thomas
621 ace90326 2021-09-27 thomas got tree -r $testroot/repo -R -c $commit_id2 \
622 ace90326 2021-09-27 thomas > $testroot/stdout
623 ace90326 2021-09-27 thomas cat > $testroot/stdout.expected <<EOF
624 ace90326 2021-09-27 thomas alpha
625 ace90326 2021-09-27 thomas alpha.link@ -> beta
626 ace90326 2021-09-27 thomas beta
627 ace90326 2021-09-27 thomas dotgotfoo.link@ -> .got/foo
628 ace90326 2021-09-27 thomas epsilon/
629 ace90326 2021-09-27 thomas epsilon/beta.link@ -> ../gamma/delta
630 ace90326 2021-09-27 thomas epsilon/zeta
631 ace90326 2021-09-27 thomas epsilon.link@ -> gamma
632 ace90326 2021-09-27 thomas gamma/
633 ace90326 2021-09-27 thomas gamma/delta
634 ace90326 2021-09-27 thomas passwd.link@ -> /etc/passwd
635 ace90326 2021-09-27 thomas zeta.link@ -> epsilon/zeta
636 ace90326 2021-09-27 thomas EOF
637 ace90326 2021-09-27 thomas cmp -s $testroot/stdout.expected $testroot/stdout
638 fc414659 2022-04-16 thomas ret=$?
639 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
640 ace90326 2021-09-27 thomas diff -u $testroot/stdout.expected $testroot/stdout
641 ace90326 2021-09-27 thomas fi
642 ace90326 2021-09-27 thomas 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 dd6165e4 2021-09-21 thomas.ad (cd $testroot/repo && ln -sfT 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 dd6165e4 2021-09-21 thomas.ad (cd $testroot/wt && ln -sfT beta epsilon.link)
678 e26bafba 2020-07-23 stsp # modeified symlink to file A vs modified symlink to dir B
679 dd6165e4 2021-09-21 thomas.ad (cd $testroot/wt && ln -sfT ../gamma epsilon/beta.link)
680 e26bafba 2020-07-23 stsp # added regular file A vs added bad symlink to file A
681 ace90326 2021-09-27 thomas (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 0ef68859 2021-09-28 thomas echo -n "Files which had incoming changes but could not be found " \
715 0ef68859 2021-09-28 thomas >> $testroot/stdout.expected
716 0ef68859 2021-09-28 thomas echo "in the work tree: 1" >> $testroot/stdout.expected
717 0ef68859 2021-09-28 thomas echo -n "Files not merged because an unversioned file was found in " \
718 0ef68859 2021-09-28 thomas >> $testroot/stdout.expected
719 0ef68859 2021-09-28 thomas echo "the work tree: 1" >> $testroot/stdout.expected
720 e26bafba 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
721 fc414659 2022-04-16 thomas ret=$?
722 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
748 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
764 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
790 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
808 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
834 fc414659 2022-04-16 thomas 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 ace90326 2021-09-27 thomas 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 fc414659 2022-04-16 thomas ret=$?
862 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
883 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
906 fc414659 2022-04-16 thomas 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 21850702 2022-06-13 thomas ret=$?
917 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
942 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
955 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
967 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
994 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
1007 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
1034 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
1048 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
1322 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
1358 fc414659 2022-04-16 thomas 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 b6b86fd1 2022-08-30 thomas }
1375 3cd22b21 2021-05-31 stsp EOF
1376 3cd22b21 2021-05-31 stsp (cd $testroot/wt && got diff |
1377 9b4458b4 2022-06-26 thomas egrep -v '^(diff|blob|file|commit|path)' > $testroot/diff)
1378 3cd22b21 2021-05-31 stsp cmp -s $testroot/diff.expected $testroot/diff
1379 fc414659 2022-04-16 thomas ret=$?
1380 fc414659 2022-04-16 thomas 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 fc414659 2022-04-16 thomas ret=$?
1392 fc414659 2022-04-16 thomas 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 0ef68859 2021-09-28 thomas echo -n "Files which had incoming changes but could not be found " \
1419 0ef68859 2021-09-28 thomas >> $testroot/stdout.expected
1420 0ef68859 2021-09-28 thomas 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 fc414659 2022-04-16 thomas ret=$?
1424 fc414659 2022-04-16 thomas 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 dc2a05aa 2021-10-08 thomas test_cherrypick_dot_on_a_line_by_itself() {
1431 dc2a05aa 2021-10-08 thomas local testroot=`test_init cherrypick_dot_on_a_line_by_itself`
1432 0baddd91 2021-09-03 stsp
1433 dc2a05aa 2021-10-08 thomas got checkout $testroot/repo $testroot/wt > /dev/null
1434 fc414659 2022-04-16 thomas ret=$?
1435 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1436 dc2a05aa 2021-10-08 thomas test_done "$testroot" "$ret"
1437 dc2a05aa 2021-10-08 thomas return 1
1438 dc2a05aa 2021-10-08 thomas fi
1439 dc2a05aa 2021-10-08 thomas
1440 dc2a05aa 2021-10-08 thomas (cd $testroot/repo && git checkout -q -b newbranch)
1441 461f6aed 2021-10-12 thomas printf "modified\n:delta\n.\non\n:branch\n" > $testroot/repo/gamma/delta
1442 dc2a05aa 2021-10-08 thomas git_commit $testroot/repo -m "committing to delta on newbranch"
1443 dc2a05aa 2021-10-08 thomas local branch_rev=`git_show_head $testroot/repo`
1444 dc2a05aa 2021-10-08 thomas
1445 dc2a05aa 2021-10-08 thomas (cd $testroot/wt && got cherrypick newbranch > $testroot/stdout)
1446 dc2a05aa 2021-10-08 thomas
1447 dc2a05aa 2021-10-08 thomas echo "G gamma/delta" >> $testroot/stdout.expected
1448 dc2a05aa 2021-10-08 thomas echo "Merged commit $branch_rev" >> $testroot/stdout.expected
1449 dc2a05aa 2021-10-08 thomas
1450 dc2a05aa 2021-10-08 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1451 fc414659 2022-04-16 thomas ret=$?
1452 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1453 dc2a05aa 2021-10-08 thomas diff -u $testroot/stdout.expected $testroot/stdout
1454 dc2a05aa 2021-10-08 thomas test_done "$testroot" "$ret"
1455 dc2a05aa 2021-10-08 thomas return 1
1456 dc2a05aa 2021-10-08 thomas fi
1457 dc2a05aa 2021-10-08 thomas
1458 461f6aed 2021-10-12 thomas printf "modified\n:delta\n.\non\n:branch\n" > $testroot/content.expected
1459 dc2a05aa 2021-10-08 thomas cat $testroot/wt/gamma/delta > $testroot/content
1460 dc2a05aa 2021-10-08 thomas cmp -s $testroot/content.expected $testroot/content
1461 fc414659 2022-04-16 thomas ret=$?
1462 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1463 461f6aed 2021-10-12 thomas diff -u $testroot/content.expected $testroot/content
1464 dc2a05aa 2021-10-08 thomas fi
1465 dc2a05aa 2021-10-08 thomas test_done "$testroot" "$ret"
1466 24f136e0 2021-11-20 thomas }
1467 24f136e0 2021-11-20 thomas
1468 24f136e0 2021-11-20 thomas test_cherrypick_binary_file() {
1469 24f136e0 2021-11-20 thomas local testroot=`test_init cherrypick_binary_file`
1470 24f136e0 2021-11-20 thomas local commit_id0=`git_show_head $testroot/repo`
1471 24f136e0 2021-11-20 thomas
1472 24f136e0 2021-11-20 thomas got checkout $testroot/repo $testroot/wt > /dev/null
1473 fc414659 2022-04-16 thomas ret=$?
1474 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1475 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1476 24f136e0 2021-11-20 thomas return 1
1477 24f136e0 2021-11-20 thomas fi
1478 24f136e0 2021-11-20 thomas
1479 24f136e0 2021-11-20 thomas cp /bin/ls $testroot/wt/foo
1480 24f136e0 2021-11-20 thomas chmod 755 $testroot/wt/foo
1481 24f136e0 2021-11-20 thomas (cd $testroot/wt && got add foo >/dev/null)
1482 24f136e0 2021-11-20 thomas (cd $testroot/wt && got commit -m 'add binary file' > /dev/null)
1483 24f136e0 2021-11-20 thomas local commit_id1=`git_show_head $testroot/repo`
1484 24f136e0 2021-11-20 thomas
1485 24f136e0 2021-11-20 thomas cp /bin/cat $testroot/wt/foo
1486 24f136e0 2021-11-20 thomas chmod 755 $testroot/wt/foo
1487 24f136e0 2021-11-20 thomas (cd $testroot/wt && got commit -m 'change binary file' > /dev/null)
1488 24f136e0 2021-11-20 thomas local commit_id2=`git_show_head $testroot/repo`
1489 24f136e0 2021-11-20 thomas
1490 24f136e0 2021-11-20 thomas cp /bin/cp $testroot/wt/foo
1491 24f136e0 2021-11-20 thomas chmod 755 $testroot/wt/foo
1492 24f136e0 2021-11-20 thomas (cd $testroot/wt && got commit -m 'change binary file' > /dev/null)
1493 24f136e0 2021-11-20 thomas local commit_id3=`git_show_head $testroot/repo`
1494 24f136e0 2021-11-20 thomas
1495 24f136e0 2021-11-20 thomas (cd $testroot/wt && got rm foo >/dev/null)
1496 24f136e0 2021-11-20 thomas (cd $testroot/wt && got commit -m 'remove binary file' > /dev/null)
1497 24f136e0 2021-11-20 thomas local commit_id4=`git_show_head $testroot/repo`
1498 24f136e0 2021-11-20 thomas
1499 24f136e0 2021-11-20 thomas # backdate the work tree to make it usable for cherry-picking
1500 24f136e0 2021-11-20 thomas (cd $testroot/wt && got up -c $commit_id0 > /dev/null)
1501 24f136e0 2021-11-20 thomas
1502 24f136e0 2021-11-20 thomas # cherry-pick addition of a binary file
1503 24f136e0 2021-11-20 thomas (cd $testroot/wt && got cy $commit_id1 > $testroot/stdout)
1504 24f136e0 2021-11-20 thomas
1505 24f136e0 2021-11-20 thomas echo "A foo" > $testroot/stdout.expected
1506 24f136e0 2021-11-20 thomas echo "Merged commit $commit_id1" >> $testroot/stdout.expected
1507 24f136e0 2021-11-20 thomas
1508 24f136e0 2021-11-20 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1509 fc414659 2022-04-16 thomas ret=$?
1510 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1511 24f136e0 2021-11-20 thomas diff -u $testroot/stdout.expected $testroot/stdout
1512 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1513 24f136e0 2021-11-20 thomas return 1
1514 24f136e0 2021-11-20 thomas fi
1515 24f136e0 2021-11-20 thomas
1516 24f136e0 2021-11-20 thomas cp /bin/ls $testroot/content.expected
1517 24f136e0 2021-11-20 thomas chmod 755 $testroot/content.expected
1518 24f136e0 2021-11-20 thomas cp $testroot/wt/foo $testroot/content
1519 24f136e0 2021-11-20 thomas cmp -s $testroot/content.expected $testroot/content
1520 fc414659 2022-04-16 thomas ret=$?
1521 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1522 24f136e0 2021-11-20 thomas diff -u $testroot/content.expected $testroot/content
1523 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1524 24f136e0 2021-11-20 thomas return 1
1525 24f136e0 2021-11-20 thomas fi
1526 24f136e0 2021-11-20 thomas
1527 24f136e0 2021-11-20 thomas # cherry-pick modification of a binary file
1528 24f136e0 2021-11-20 thomas (cd $testroot/wt && got cy $commit_id2 > $testroot/stdout)
1529 24f136e0 2021-11-20 thomas
1530 24f136e0 2021-11-20 thomas echo "G foo" > $testroot/stdout.expected
1531 24f136e0 2021-11-20 thomas echo "Merged commit $commit_id2" >> $testroot/stdout.expected
1532 24f136e0 2021-11-20 thomas
1533 24f136e0 2021-11-20 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1534 fc414659 2022-04-16 thomas ret=$?
1535 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1536 24f136e0 2021-11-20 thomas diff -u $testroot/stdout.expected $testroot/stdout
1537 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1538 24f136e0 2021-11-20 thomas return 1
1539 24f136e0 2021-11-20 thomas fi
1540 24f136e0 2021-11-20 thomas
1541 24f136e0 2021-11-20 thomas cp /bin/cat $testroot/content.expected
1542 24f136e0 2021-11-20 thomas chmod 755 $testroot/content.expected
1543 24f136e0 2021-11-20 thomas cp $testroot/wt/foo $testroot/content
1544 24f136e0 2021-11-20 thomas cmp -s $testroot/content.expected $testroot/content
1545 fc414659 2022-04-16 thomas ret=$?
1546 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1547 24f136e0 2021-11-20 thomas diff -u $testroot/content.expected $testroot/content
1548 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1549 24f136e0 2021-11-20 thomas return 1
1550 24f136e0 2021-11-20 thomas fi
1551 24f136e0 2021-11-20 thomas
1552 24f136e0 2021-11-20 thomas # cherry-pick conflicting addition of a binary file
1553 24f136e0 2021-11-20 thomas (cd $testroot/wt && got cy $commit_id1 > $testroot/stdout)
1554 24f136e0 2021-11-20 thomas
1555 24f136e0 2021-11-20 thomas echo "C foo" > $testroot/stdout.expected
1556 24f136e0 2021-11-20 thomas echo "Merged commit $commit_id1" >> $testroot/stdout.expected
1557 24f136e0 2021-11-20 thomas echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
1558 24f136e0 2021-11-20 thomas
1559 24f136e0 2021-11-20 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1560 fc414659 2022-04-16 thomas ret=$?
1561 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1562 24f136e0 2021-11-20 thomas diff -u $testroot/stdout.expected $testroot/stdout
1563 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1564 24f136e0 2021-11-20 thomas return 1
1565 24f136e0 2021-11-20 thomas fi
1566 24f136e0 2021-11-20 thomas
1567 24f136e0 2021-11-20 thomas echo "Binary files differ and cannot be merged automatically:" \
1568 24f136e0 2021-11-20 thomas > $testroot/content.expected
1569 24f136e0 2021-11-20 thomas echo "<<<<<<< merged change: commit $commit_id1" \
1570 24f136e0 2021-11-20 thomas >> $testroot/content.expected
1571 24f136e0 2021-11-20 thomas echo -n "file " >> $testroot/content.expected
1572 24f136e0 2021-11-20 thomas ls $testroot/wt/foo-1-* >> $testroot/content.expected
1573 24f136e0 2021-11-20 thomas echo '=======' >> $testroot/content.expected
1574 24f136e0 2021-11-20 thomas echo -n "file " >> $testroot/content.expected
1575 24f136e0 2021-11-20 thomas ls $testroot/wt/foo-2-* >> $testroot/content.expected
1576 24f136e0 2021-11-20 thomas echo '>>>>>>>' >> $testroot/content.expected
1577 24f136e0 2021-11-20 thomas cp $testroot/wt/foo $testroot/content
1578 24f136e0 2021-11-20 thomas cmp -s $testroot/content.expected $testroot/content
1579 fc414659 2022-04-16 thomas ret=$?
1580 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1581 24f136e0 2021-11-20 thomas diff -u $testroot/content.expected $testroot/content
1582 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1583 24f136e0 2021-11-20 thomas return 1
1584 24f136e0 2021-11-20 thomas fi
1585 24f136e0 2021-11-20 thomas
1586 24f136e0 2021-11-20 thomas # revert local changes to allow further testing
1587 24f136e0 2021-11-20 thomas (cd $testroot/wt && got revert -R . >/dev/null)
1588 24f136e0 2021-11-20 thomas
1589 24f136e0 2021-11-20 thomas (cd $testroot/wt && got status > $testroot/stdout)
1590 24f136e0 2021-11-20 thomas echo '? foo' > $testroot/stdout.expected
1591 24f136e0 2021-11-20 thomas echo -n '? ' >> $testroot/stdout.expected
1592 24f136e0 2021-11-20 thomas (cd $testroot/wt && ls foo-1-* >> $testroot/stdout.expected)
1593 24f136e0 2021-11-20 thomas echo -n '? ' >> $testroot/stdout.expected
1594 24f136e0 2021-11-20 thomas (cd $testroot/wt && ls foo-2-* >> $testroot/stdout.expected)
1595 24f136e0 2021-11-20 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1596 fc414659 2022-04-16 thomas ret=$?
1597 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1598 24f136e0 2021-11-20 thomas diff -u $testroot/stdout.expected $testroot/stdout
1599 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1600 24f136e0 2021-11-20 thomas return 1
1601 24f136e0 2021-11-20 thomas fi
1602 24f136e0 2021-11-20 thomas
1603 24f136e0 2021-11-20 thomas # tidy up
1604 24f136e0 2021-11-20 thomas rm $testroot/wt/foo $testroot/wt/foo-1-* $testroot/wt/foo-2-*
1605 24f136e0 2021-11-20 thomas (cd $testroot/wt && got up -c $commit_id1 > /dev/null)
1606 24f136e0 2021-11-20 thomas
1607 24f136e0 2021-11-20 thomas # cherry-pick conflicting modification of a binary file
1608 24f136e0 2021-11-20 thomas (cd $testroot/wt && got cy $commit_id3 > $testroot/stdout)
1609 24f136e0 2021-11-20 thomas
1610 24f136e0 2021-11-20 thomas echo "C foo" > $testroot/stdout.expected
1611 24f136e0 2021-11-20 thomas echo "Merged commit $commit_id3" >> $testroot/stdout.expected
1612 24f136e0 2021-11-20 thomas echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
1613 24f136e0 2021-11-20 thomas
1614 24f136e0 2021-11-20 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1615 fc414659 2022-04-16 thomas ret=$?
1616 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1617 24f136e0 2021-11-20 thomas diff -u $testroot/stdout.expected $testroot/stdout
1618 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1619 24f136e0 2021-11-20 thomas return 1
1620 24f136e0 2021-11-20 thomas fi
1621 24f136e0 2021-11-20 thomas
1622 24f136e0 2021-11-20 thomas echo "Binary files differ and cannot be merged automatically:" \
1623 24f136e0 2021-11-20 thomas > $testroot/content.expected
1624 24f136e0 2021-11-20 thomas echo '<<<<<<<' >> $testroot/content.expected
1625 24f136e0 2021-11-20 thomas echo -n "file " >> $testroot/content.expected
1626 24f136e0 2021-11-20 thomas ls $testroot/wt/foo-1-* >> $testroot/content.expected
1627 24f136e0 2021-11-20 thomas echo "||||||| 3-way merge base: commit $commit_id2" \
1628 24f136e0 2021-11-20 thomas >> $testroot/content.expected
1629 24f136e0 2021-11-20 thomas echo -n "file " >> $testroot/content.expected
1630 24f136e0 2021-11-20 thomas ls $testroot/wt/foo-orig-* >> $testroot/content.expected
1631 24f136e0 2021-11-20 thomas echo '=======' >> $testroot/content.expected
1632 24f136e0 2021-11-20 thomas echo -n "file " >> $testroot/content.expected
1633 24f136e0 2021-11-20 thomas ls $testroot/wt/foo-2-* >> $testroot/content.expected
1634 24f136e0 2021-11-20 thomas echo ">>>>>>> merged change: commit $commit_id3" \
1635 24f136e0 2021-11-20 thomas >> $testroot/content.expected
1636 24f136e0 2021-11-20 thomas cp $testroot/wt/foo $testroot/content
1637 24f136e0 2021-11-20 thomas cmp -s $testroot/content.expected $testroot/content
1638 fc414659 2022-04-16 thomas ret=$?
1639 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1640 24f136e0 2021-11-20 thomas diff -u $testroot/content.expected $testroot/content
1641 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1642 24f136e0 2021-11-20 thomas return 1
1643 24f136e0 2021-11-20 thomas fi
1644 24f136e0 2021-11-20 thomas
1645 24f136e0 2021-11-20 thomas cp /bin/ls $testroot/content.expected
1646 24f136e0 2021-11-20 thomas chmod 755 $testroot/content.expected
1647 24f136e0 2021-11-20 thomas cat $testroot/wt/foo-1-* > $testroot/content
1648 24f136e0 2021-11-20 thomas cmp -s $testroot/content.expected $testroot/content
1649 fc414659 2022-04-16 thomas ret=$?
1650 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1651 24f136e0 2021-11-20 thomas diff -u $testroot/content.expected $testroot/content
1652 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1653 24f136e0 2021-11-20 thomas return 1
1654 24f136e0 2021-11-20 thomas fi
1655 24f136e0 2021-11-20 thomas
1656 24f136e0 2021-11-20 thomas cp /bin/cp $testroot/content.expected
1657 24f136e0 2021-11-20 thomas chmod 755 $testroot/content.expected
1658 24f136e0 2021-11-20 thomas cat $testroot/wt/foo-2-* > $testroot/content
1659 24f136e0 2021-11-20 thomas cmp -s $testroot/content.expected $testroot/content
1660 fc414659 2022-04-16 thomas ret=$?
1661 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1662 24f136e0 2021-11-20 thomas diff -u $testroot/content.expected $testroot/content
1663 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1664 24f136e0 2021-11-20 thomas return 1
1665 24f136e0 2021-11-20 thomas fi
1666 24f136e0 2021-11-20 thomas
1667 24f136e0 2021-11-20 thomas # revert local changes to allow further testing
1668 24f136e0 2021-11-20 thomas (cd $testroot/wt && got revert -R . > /dev/null)
1669 24f136e0 2021-11-20 thomas rm $testroot/wt/foo-1-*
1670 24f136e0 2021-11-20 thomas rm $testroot/wt/foo-2-*
1671 24f136e0 2021-11-20 thomas (cd $testroot/wt && got up -c $commit_id3 > /dev/null)
1672 24f136e0 2021-11-20 thomas
1673 24f136e0 2021-11-20 thomas # cherry-pick deletion of a binary file
1674 24f136e0 2021-11-20 thomas (cd $testroot/wt && got cy $commit_id4 > $testroot/stdout)
1675 24f136e0 2021-11-20 thomas
1676 24f136e0 2021-11-20 thomas echo "D foo" > $testroot/stdout.expected
1677 24f136e0 2021-11-20 thomas echo "Merged commit $commit_id4" >> $testroot/stdout.expected
1678 24f136e0 2021-11-20 thomas
1679 24f136e0 2021-11-20 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1680 fc414659 2022-04-16 thomas ret=$?
1681 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
1682 24f136e0 2021-11-20 thomas diff -u $testroot/stdout.expected $testroot/stdout
1683 24f136e0 2021-11-20 thomas test_done "$testroot" "$ret"
1684 24f136e0 2021-11-20 thomas return 1
1685 24f136e0 2021-11-20 thomas fi
1686 24f136e0 2021-11-20 thomas
1687 24f136e0 2021-11-20 thomas if [ -e $testroot/wt/foo ]; then
1688 24f136e0 2021-11-20 thomas echo "removed file foo still exists on disk" >&2
1689 24f136e0 2021-11-20 thomas test_done "$testroot" "1"
1690 24f136e0 2021-11-20 thomas return 1
1691 24f136e0 2021-11-20 thomas fi
1692 24f136e0 2021-11-20 thomas test_done "$testroot" "0"
1693 a2c162eb 2022-10-30 thomas }
1694 a2c162eb 2022-10-30 thomas
1695 a2c162eb 2022-10-30 thomas test_cherrypick_umask() {
1696 a2c162eb 2022-10-30 thomas local testroot=`test_init cherrypick_umask`
1697 a2c162eb 2022-10-30 thomas
1698 a2c162eb 2022-10-30 thomas got checkout $testroot/repo $testroot/wt >/dev/null
1699 a2c162eb 2022-10-30 thomas ret=$?
1700 a2c162eb 2022-10-30 thomas if [ $ret -ne 0 ]; then
1701 a2c162eb 2022-10-30 thomas test_done "$testroot" $ret
1702 a2c162eb 2022-10-30 thomas return 1
1703 a2c162eb 2022-10-30 thomas fi
1704 a2c162eb 2022-10-30 thomas
1705 a2c162eb 2022-10-30 thomas (cd "$testroot/wt" && got branch newbranch) >/dev/null
1706 a2c162eb 2022-10-30 thomas echo "modified alpha on branch" > $testroot/wt/alpha
1707 a2c162eb 2022-10-30 thomas (cd "$testroot/wt" && got commit -m 'edit alpha') >/dev/null
1708 a2c162eb 2022-10-30 thomas (cd "$testroot/wt" && got update -b master) >/dev/null
1709 a2c162eb 2022-10-30 thomas
1710 a2c162eb 2022-10-30 thomas # using a subshell to avoid clobbering global umask
1711 a2c162eb 2022-10-30 thomas (umask 077 && cd "$testroot/wt" && got cherrypick newbranch) >/dev/null
1712 a2c162eb 2022-10-30 thomas ret=$?
1713 a2c162eb 2022-10-30 thomas if [ $ret -ne 0 ]; then
1714 a2c162eb 2022-10-30 thomas test_done "$testroot" $ret
1715 a2c162eb 2022-10-30 thomas return 1
1716 a2c162eb 2022-10-30 thomas fi
1717 a2c162eb 2022-10-30 thomas
1718 a2c162eb 2022-10-30 thomas if ! ls -l "$testroot/wt/alpha" | grep -q ^-rw-------; then
1719 a2c162eb 2022-10-30 thomas echo "alpha is not 0600 after cherrypick!" >&2
1720 a2c162eb 2022-10-30 thomas ls -l "$testroot/wt/alpha" >&2
1721 a2c162eb 2022-10-30 thomas test_done "$testroot" $ret
1722 a2c162eb 2022-10-30 thomas return 1
1723 a2c162eb 2022-10-30 thomas fi
1724 a2c162eb 2022-10-30 thomas
1725 a2c162eb 2022-10-30 thomas test_done "$testroot" 0
1726 dc2a05aa 2021-10-08 thomas }
1727 7c82d1d5 2023-01-28 thomas
1728 7c82d1d5 2023-01-28 thomas test_cherrypick_logmsg_ref() {
1729 7c82d1d5 2023-01-28 thomas local testroot=`test_init cherrypick_logmsg_ref`
1730 7c82d1d5 2023-01-28 thomas
1731 7c82d1d5 2023-01-28 thomas got checkout $testroot/repo $testroot/wt > /dev/null
1732 7c82d1d5 2023-01-28 thomas ret=$?
1733 7c82d1d5 2023-01-28 thomas if [ $ret -ne 0 ]; then
1734 7c82d1d5 2023-01-28 thomas test_done "$testroot" "$ret"
1735 7c82d1d5 2023-01-28 thomas return 1
1736 7c82d1d5 2023-01-28 thomas fi
1737 7c82d1d5 2023-01-28 thomas
1738 7c82d1d5 2023-01-28 thomas (cd $testroot/repo && git checkout -q -b newbranch)
1739 7c82d1d5 2023-01-28 thomas
1740 7c82d1d5 2023-01-28 thomas echo "modified delta on branch" > $testroot/repo/gamma/delta
1741 7c82d1d5 2023-01-28 thomas echo "modified alpha on branch" > $testroot/repo/alpha
1742 7c82d1d5 2023-01-28 thomas (cd $testroot/repo && git rm -q beta)
1743 7c82d1d5 2023-01-28 thomas echo "new file on branch" > $testroot/repo/epsilon/new
1744 7c82d1d5 2023-01-28 thomas (cd $testroot/repo && git add epsilon/new)
1745 dc2a05aa 2021-10-08 thomas
1746 7c82d1d5 2023-01-28 thomas git_commit $testroot/repo -m "commit changes on newbranch"
1747 7c82d1d5 2023-01-28 thomas local commit_time=`git_show_author_time $testroot/repo`
1748 7c82d1d5 2023-01-28 thomas local branch_rev=`git_show_head $testroot/repo`
1749 7c82d1d5 2023-01-28 thomas
1750 7c82d1d5 2023-01-28 thomas echo "modified new file on branch" > $testroot/repo/epsilon/new
1751 7c82d1d5 2023-01-28 thomas
1752 7c82d1d5 2023-01-28 thomas git_commit $testroot/repo -m "commit modified new file on newbranch"
1753 7c82d1d5 2023-01-28 thomas local commit_time2=`git_show_author_time $testroot/repo`
1754 7c82d1d5 2023-01-28 thomas local branch_rev2=`git_show_head $testroot/repo`
1755 7c82d1d5 2023-01-28 thomas
1756 7c82d1d5 2023-01-28 thomas (cd $testroot/wt && got cherrypick $branch_rev > /dev/null)
1757 7c82d1d5 2023-01-28 thomas (cd $testroot/wt && got cherrypick $branch_rev2 > /dev/null)
1758 7c82d1d5 2023-01-28 thomas
1759 7c82d1d5 2023-01-28 thomas # show all log message refs in the work tree
1760 7c82d1d5 2023-01-28 thomas local sep="-----------------------------------------------"
1761 7c82d1d5 2023-01-28 thomas local logmsg="commit changes on newbranch"
1762 7c82d1d5 2023-01-28 thomas local changeset=" M alpha\n D beta\n A epsilon/new\n M gamma/delta"
1763 7c82d1d5 2023-01-28 thomas local logmsg2="commit modified new file on newbranch"
1764 7c82d1d5 2023-01-28 thomas local changeset2=" M epsilon/new"
1765 7c82d1d5 2023-01-28 thomas local date=`date -u -r $commit_time +"%a %b %e %X %Y UTC"`
1766 7c82d1d5 2023-01-28 thomas local date2=`date -u -r $commit_time2 +"%a %b %e %X %Y UTC"`
1767 7c82d1d5 2023-01-28 thomas local ymd=`date -u -r $commit_time +"%F"`
1768 7c82d1d5 2023-01-28 thomas local short_id=$(printf '%.7s' $branch_rev)
1769 7c82d1d5 2023-01-28 thomas local ymd2=`date -u -r $commit_time2 +"%F"`
1770 7c82d1d5 2023-01-28 thomas local short_id2="newbranch"
1771 117f997e 2023-02-03 thomas local wt_sorted=$(printf "$branch_rev\n$branch_rev2" | sort)
1772 7c82d1d5 2023-01-28 thomas
1773 117f997e 2023-02-03 thomas for r in $wt_sorted; do
1774 7c82d1d5 2023-01-28 thomas echo $sep >> $testroot/stdout.expected
1775 7c82d1d5 2023-01-28 thomas if [ $r == $branch_rev ]; then
1776 f35e52a9 2023-01-31 thomas echo "cherrypick $r" >> $testroot/stdout.expected
1777 7c82d1d5 2023-01-28 thomas echo "from: $GOT_AUTHOR" >> $testroot/stdout.expected
1778 7c82d1d5 2023-01-28 thomas echo "date: $date" >> $testroot/stdout.expected
1779 7c82d1d5 2023-01-28 thomas printf " \n $logmsg\n \n" >> $testroot/stdout.expected
1780 7c82d1d5 2023-01-28 thomas printf "$changeset\n\n" >> $testroot/stdout.expected
1781 7c82d1d5 2023-01-28 thomas
1782 7c82d1d5 2023-01-28 thomas # for forthcoming wt 'cherrypick -X' test
1783 46f87436 2023-01-28 thomas echo "Deleted: $ymd $short_id $logmsg" >> \
1784 7c82d1d5 2023-01-28 thomas $testroot/stdout.wt_deleted
1785 7c82d1d5 2023-01-28 thomas else
1786 f35e52a9 2023-01-31 thomas echo "cherrypick $r (newbranch)" \
1787 7c82d1d5 2023-01-28 thomas >> $testroot/stdout.expected
1788 7c82d1d5 2023-01-28 thomas echo "from: $GOT_AUTHOR" >> $testroot/stdout.expected
1789 7c82d1d5 2023-01-28 thomas echo "date: $date2" >> $testroot/stdout.expected
1790 7c82d1d5 2023-01-28 thomas printf " \n $logmsg2\n \n" >> $testroot/stdout.expected
1791 7c82d1d5 2023-01-28 thomas printf "$changeset2\n\n" >> $testroot/stdout.expected
1792 7c82d1d5 2023-01-28 thomas
1793 7c82d1d5 2023-01-28 thomas # for forthcoming wt 'cherrypick -X' test
1794 46f87436 2023-01-28 thomas echo "Deleted: $ymd2 $short_id2 $logmsg2" >> \
1795 7c82d1d5 2023-01-28 thomas $testroot/stdout.wt_deleted
1796 7c82d1d5 2023-01-28 thomas fi
1797 7c82d1d5 2023-01-28 thomas done
1798 7c82d1d5 2023-01-28 thomas
1799 7c82d1d5 2023-01-28 thomas (cd $testroot/wt && got cherrypick -l > $testroot/stdout)
1800 7c82d1d5 2023-01-28 thomas
1801 7c82d1d5 2023-01-28 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1802 7c82d1d5 2023-01-28 thomas ret=$?
1803 7c82d1d5 2023-01-28 thomas if [ $ret -ne 0 ]; then
1804 7c82d1d5 2023-01-28 thomas diff -u $testroot/stdout.expected $testroot/stdout
1805 7c82d1d5 2023-01-28 thomas test_done "$testroot" "$ret"
1806 7c82d1d5 2023-01-28 thomas return 1
1807 7c82d1d5 2023-01-28 thomas fi
1808 7c82d1d5 2023-01-28 thomas
1809 7c82d1d5 2023-01-28 thomas # only show log message ref of the specified commit id
1810 7c82d1d5 2023-01-28 thomas echo $sep > $testroot/stdout.expected
1811 f35e52a9 2023-01-31 thomas echo "cherrypick $branch_rev" >> $testroot/stdout.expected
1812 7c82d1d5 2023-01-28 thomas echo "from: $GOT_AUTHOR" >> $testroot/stdout.expected
1813 7c82d1d5 2023-01-28 thomas echo "date: $date" >> $testroot/stdout.expected
1814 7c82d1d5 2023-01-28 thomas printf " \n $logmsg\n \n" >> $testroot/stdout.expected
1815 7c82d1d5 2023-01-28 thomas printf "$changeset\n\n" >> $testroot/stdout.expected
1816 7c82d1d5 2023-01-28 thomas
1817 7c82d1d5 2023-01-28 thomas (cd $testroot/wt && got cherrypick -l $branch_rev > $testroot/stdout)
1818 7c82d1d5 2023-01-28 thomas
1819 7c82d1d5 2023-01-28 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1820 7c82d1d5 2023-01-28 thomas ret=$?
1821 7c82d1d5 2023-01-28 thomas if [ $ret -ne 0 ]; then
1822 7c82d1d5 2023-01-28 thomas diff -u $testroot/stdout.expected $testroot/stdout
1823 7c82d1d5 2023-01-28 thomas test_done "$testroot" "$ret"
1824 7c82d1d5 2023-01-28 thomas return 1
1825 7c82d1d5 2023-01-28 thomas fi
1826 7c82d1d5 2023-01-28 thomas
1827 7c82d1d5 2023-01-28 thomas # only show log message ref of the specified symref
1828 7c82d1d5 2023-01-28 thomas echo $sep > $testroot/stdout.expected
1829 f35e52a9 2023-01-31 thomas echo "cherrypick $branch_rev2 (newbranch)" >> $testroot/stdout.expected
1830 7c82d1d5 2023-01-28 thomas echo "from: $GOT_AUTHOR" >> $testroot/stdout.expected
1831 7c82d1d5 2023-01-28 thomas echo "date: $date2" >> $testroot/stdout.expected
1832 7c82d1d5 2023-01-28 thomas printf " \n $logmsg2\n \n" >> $testroot/stdout.expected
1833 7c82d1d5 2023-01-28 thomas printf "$changeset2\n\n" >> $testroot/stdout.expected
1834 7c82d1d5 2023-01-28 thomas
1835 7c82d1d5 2023-01-28 thomas (cd $testroot/wt && got cherrypick -l "newbranch" > $testroot/stdout)
1836 7c82d1d5 2023-01-28 thomas
1837 7c82d1d5 2023-01-28 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1838 7c82d1d5 2023-01-28 thomas ret=$?
1839 7c82d1d5 2023-01-28 thomas if [ $ret -ne 0 ]; then
1840 7c82d1d5 2023-01-28 thomas diff -u $testroot/stdout.expected $testroot/stdout
1841 7c82d1d5 2023-01-28 thomas test_done "$testroot" "$ret"
1842 7c82d1d5 2023-01-28 thomas return 1
1843 7c82d1d5 2023-01-28 thomas fi
1844 7c82d1d5 2023-01-28 thomas
1845 7c82d1d5 2023-01-28 thomas # create a second work tree with cherrypicked commits and ensure
1846 7c82d1d5 2023-01-28 thomas # cy -l within the new work tree only shows the refs it created
1847 7c82d1d5 2023-01-28 thomas got checkout $testroot/repo $testroot/wt2 > /dev/null
1848 7c82d1d5 2023-01-28 thomas ret=$?
1849 7c82d1d5 2023-01-28 thomas if [ $ret -ne 0 ]; then
1850 7c82d1d5 2023-01-28 thomas test_done "$testroot" "$ret"
1851 7c82d1d5 2023-01-28 thomas return 1
1852 7c82d1d5 2023-01-28 thomas fi
1853 7c82d1d5 2023-01-28 thomas
1854 7c82d1d5 2023-01-28 thomas (cd $testroot/repo && git checkout -q -b newbranch2)
1855 7c82d1d5 2023-01-28 thomas
1856 7c82d1d5 2023-01-28 thomas echo "modified delta on branch2" > $testroot/repo/gamma/delta
1857 7c82d1d5 2023-01-28 thomas echo "modified alpha on branch2" > $testroot/repo/alpha
1858 7c82d1d5 2023-01-28 thomas echo "new file on branch2" > $testroot/repo/epsilon/new2
1859 7c82d1d5 2023-01-28 thomas (cd $testroot/repo && git add epsilon/new2)
1860 7c82d1d5 2023-01-28 thomas
1861 7c82d1d5 2023-01-28 thomas git_commit $testroot/repo -m "commit changes on newbranch2"
1862 7c82d1d5 2023-01-28 thomas local b2_commit_time=`git_show_author_time $testroot/repo`
1863 7c82d1d5 2023-01-28 thomas local branch2_rev=`git_show_head $testroot/repo`
1864 7c82d1d5 2023-01-28 thomas
1865 7c82d1d5 2023-01-28 thomas echo "modified file new2 on branch2" > $testroot/repo/epsilon/new2
1866 7c82d1d5 2023-01-28 thomas
1867 7c82d1d5 2023-01-28 thomas git_commit $testroot/repo -m "commit modified file new2 on newbranch2"
1868 7c82d1d5 2023-01-28 thomas local b2_commit_time2=`git_show_author_time $testroot/repo`
1869 7c82d1d5 2023-01-28 thomas local branch2_rev2=`git_show_head $testroot/repo`
1870 7c82d1d5 2023-01-28 thomas
1871 7c82d1d5 2023-01-28 thomas (cd $testroot/wt2 && got cherrypick $branch2_rev > /dev/null)
1872 7c82d1d5 2023-01-28 thomas (cd $testroot/wt2 && got cherrypick $branch2_rev2 > /dev/null)
1873 7c82d1d5 2023-01-28 thomas
1874 7c82d1d5 2023-01-28 thomas local b2_logmsg="commit changes on newbranch2"
1875 7c82d1d5 2023-01-28 thomas local b2_changeset=" M alpha\n A epsilon/new2\n M gamma/delta"
1876 7c82d1d5 2023-01-28 thomas local b2_logmsg2="commit modified file new2 on newbranch2"
1877 7c82d1d5 2023-01-28 thomas local b2_changeset2=" M epsilon/new2"
1878 7c82d1d5 2023-01-28 thomas date=`date -u -r $b2_commit_time +"%a %b %e %X %Y UTC"`
1879 7c82d1d5 2023-01-28 thomas date2=`date -u -r $b2_commit_time2 +"%a %b %e %X %Y UTC"`
1880 117f997e 2023-02-03 thomas local wt2_sorted=$(printf "$branch2_rev\n$branch2_rev2" | sort)
1881 7c82d1d5 2023-01-28 thomas
1882 7c82d1d5 2023-01-28 thomas echo -n > $testroot/stdout.expected
1883 117f997e 2023-02-03 thomas for r in $wt2_sorted; do
1884 7c82d1d5 2023-01-28 thomas echo $sep >> $testroot/stdout.expected
1885 7c82d1d5 2023-01-28 thomas if [ $r == $branch2_rev ]; then
1886 f35e52a9 2023-01-31 thomas echo "cherrypick $r" >> $testroot/stdout.expected
1887 7c82d1d5 2023-01-28 thomas echo "from: $GOT_AUTHOR" >> $testroot/stdout.expected
1888 7c82d1d5 2023-01-28 thomas echo "date: $date" >> $testroot/stdout.expected
1889 7c82d1d5 2023-01-28 thomas printf " \n $b2_logmsg\n \n" >> \
1890 7c82d1d5 2023-01-28 thomas $testroot/stdout.expected
1891 7c82d1d5 2023-01-28 thomas printf "$b2_changeset\n\n" >> \
1892 7c82d1d5 2023-01-28 thomas $testroot/stdout.expected
1893 7c82d1d5 2023-01-28 thomas else
1894 f35e52a9 2023-01-31 thomas echo "cherrypick $r (newbranch2)" \
1895 7c82d1d5 2023-01-28 thomas >> $testroot/stdout.expected
1896 7c82d1d5 2023-01-28 thomas echo "from: $GOT_AUTHOR" >> $testroot/stdout.expected
1897 7c82d1d5 2023-01-28 thomas echo "date: $date2" >> $testroot/stdout.expected
1898 7c82d1d5 2023-01-28 thomas printf " \n $b2_logmsg2\n \n" >> \
1899 7c82d1d5 2023-01-28 thomas $testroot/stdout.expected
1900 7c82d1d5 2023-01-28 thomas printf "$b2_changeset2\n\n" >> \
1901 7c82d1d5 2023-01-28 thomas $testroot/stdout.expected
1902 7c82d1d5 2023-01-28 thomas fi
1903 7c82d1d5 2023-01-28 thomas done
1904 7c82d1d5 2023-01-28 thomas
1905 7c82d1d5 2023-01-28 thomas (cd $testroot/wt2 && got cherrypick -l > $testroot/stdout)
1906 7c82d1d5 2023-01-28 thomas
1907 7c82d1d5 2023-01-28 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1908 7c82d1d5 2023-01-28 thomas ret=$?
1909 7c82d1d5 2023-01-28 thomas if [ $ret -ne 0 ]; then
1910 7c82d1d5 2023-01-28 thomas diff -u $testroot/stdout.expected $testroot/stdout
1911 7c82d1d5 2023-01-28 thomas test_done "$testroot" "$ret"
1912 7c82d1d5 2023-01-28 thomas return 1
1913 7c82d1d5 2023-01-28 thomas fi
1914 7c82d1d5 2023-01-28 thomas
1915 117f997e 2023-02-03 thomas # ensure both wt and wt2 logmsg refs can be retrieved and the
1916 117f997e 2023-02-03 thomas # work tree UUID is displayed when listing refs from the repo
1917 117f997e 2023-02-03 thomas local wt_uuid=$(cat $testroot/wt/.got/uuid)
1918 117f997e 2023-02-03 thomas local wt2_uuid=$(cat $testroot/wt2/.got/uuid)
1919 117f997e 2023-02-03 thomas local wt_first=`printf "$wt_uuid\n$wt2_uuid" | sort | head -1`
1920 7c82d1d5 2023-01-28 thomas
1921 117f997e 2023-02-03 thomas for r in $wt_sorted; do
1922 117f997e 2023-02-03 thomas echo -n "cherrypick $r" >> $testroot/wt.list
1923 117f997e 2023-02-03 thomas if [ $r == $branch_rev2 ]; then
1924 117f997e 2023-02-03 thomas echo -n " (newbranch)" >> $testroot/wt.list
1925 117f997e 2023-02-03 thomas fi
1926 117f997e 2023-02-03 thomas echo >> $testroot/wt.list
1927 117f997e 2023-02-03 thomas echo "work tree: $wt_uuid" >> $testroot/wt.list
1928 7c82d1d5 2023-01-28 thomas done
1929 7c82d1d5 2023-01-28 thomas
1930 117f997e 2023-02-03 thomas for r in $wt2_sorted; do
1931 117f997e 2023-02-03 thomas echo -n "cherrypick $r" >> $testroot/wt2.list
1932 117f997e 2023-02-03 thomas if [ $r == $branch2_rev2 ]; then
1933 117f997e 2023-02-03 thomas echo -n " (newbranch2)" >> $testroot/wt2.list
1934 117f997e 2023-02-03 thomas fi
1935 117f997e 2023-02-03 thomas echo >> $testroot/wt2.list
1936 117f997e 2023-02-03 thomas echo "work tree: $wt2_uuid" >> $testroot/wt2.list
1937 117f997e 2023-02-03 thomas done
1938 7c82d1d5 2023-01-28 thomas
1939 117f997e 2023-02-03 thomas if [ $wt_uuid == $wt_first ]; then
1940 117f997e 2023-02-03 thomas mv $testroot/wt.list $testroot/stdout.expected
1941 117f997e 2023-02-03 thomas cat $testroot/wt2.list >> $testroot/stdout.expected
1942 117f997e 2023-02-03 thomas else
1943 117f997e 2023-02-03 thomas mv $testroot/wt2.list $testroot/stdout.expected
1944 117f997e 2023-02-03 thomas cat $testroot/wt.list >> $testroot/stdout.expected
1945 117f997e 2023-02-03 thomas fi
1946 117f997e 2023-02-03 thomas
1947 117f997e 2023-02-03 thomas (cd $testroot/repo && got cherrypick -l | egrep "^(cherrypick|work)" \
1948 117f997e 2023-02-03 thomas > $testroot/stdout)
1949 117f997e 2023-02-03 thomas
1950 7c82d1d5 2023-01-28 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1951 7c82d1d5 2023-01-28 thomas ret=$?
1952 7c82d1d5 2023-01-28 thomas if [ $ret -ne 0 ]; then
1953 7c82d1d5 2023-01-28 thomas diff -u $testroot/stdout.expected $testroot/stdout
1954 7c82d1d5 2023-01-28 thomas test_done "$testroot" "$ret"
1955 7c82d1d5 2023-01-28 thomas return 1
1956 7c82d1d5 2023-01-28 thomas fi
1957 7c82d1d5 2023-01-28 thomas
1958 7c82d1d5 2023-01-28 thomas # delete logmsg ref of the specified commit in work tree 2
1959 7c82d1d5 2023-01-28 thomas ymd=`date -u -r $b2_commit_time +"%F"`
1960 7c82d1d5 2023-01-28 thomas short_id=$(printf '%.7s' $branch2_rev)
1961 7c82d1d5 2023-01-28 thomas
1962 46f87436 2023-01-28 thomas echo "Deleted: $ymd $short_id $b2_logmsg" > $testroot/stdout.expected
1963 7c82d1d5 2023-01-28 thomas (cd $testroot/wt2 && got cherrypick -X $branch2_rev > $testroot/stdout)
1964 7c82d1d5 2023-01-28 thomas
1965 7c82d1d5 2023-01-28 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1966 7c82d1d5 2023-01-28 thomas ret=$?
1967 7c82d1d5 2023-01-28 thomas if [ $ret -ne 0 ]; then
1968 7c82d1d5 2023-01-28 thomas diff -u $testroot/stdout.expected $testroot/stdout
1969 7c82d1d5 2023-01-28 thomas test_done "$testroot" "$ret"
1970 7c82d1d5 2023-01-28 thomas return 1
1971 7c82d1d5 2023-01-28 thomas fi
1972 7c82d1d5 2023-01-28 thomas
1973 7c82d1d5 2023-01-28 thomas # delete all logmsg refs in work tree 1
1974 7c82d1d5 2023-01-28 thomas (cd $testroot && mv stdout.wt_deleted stdout.expected)
1975 7c82d1d5 2023-01-28 thomas (cd $testroot/wt && got cherrypick -X > $testroot/stdout)
1976 7c82d1d5 2023-01-28 thomas
1977 7c82d1d5 2023-01-28 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1978 7c82d1d5 2023-01-28 thomas ret=$?
1979 7c82d1d5 2023-01-28 thomas if [ $ret -ne 0 ]; then
1980 7c82d1d5 2023-01-28 thomas diff -u $testroot/stdout.expected $testroot/stdout
1981 7c82d1d5 2023-01-28 thomas test_done "$testroot" "$ret"
1982 7c82d1d5 2023-01-28 thomas return 1
1983 7c82d1d5 2023-01-28 thomas fi
1984 7c82d1d5 2023-01-28 thomas
1985 7c82d1d5 2023-01-28 thomas # confirm all work tree 1 refs were deleted
1986 7c82d1d5 2023-01-28 thomas echo -n > $testroot/stdout.expected
1987 7c82d1d5 2023-01-28 thomas (cd $testroot/wt && got cherrypick -l > $testroot/stdout)
1988 7c82d1d5 2023-01-28 thomas
1989 7c82d1d5 2023-01-28 thomas cmp -s $testroot/stdout.expected $testroot/stdout
1990 7c82d1d5 2023-01-28 thomas ret=$?
1991 7c82d1d5 2023-01-28 thomas if [ $ret -ne 0 ]; then
1992 7c82d1d5 2023-01-28 thomas diff -u $testroot/stdout.expected $testroot/stdout
1993 7c82d1d5 2023-01-28 thomas test_done "$testroot" "$ret"
1994 7c82d1d5 2023-01-28 thomas return 1
1995 7c82d1d5 2023-01-28 thomas fi
1996 7c82d1d5 2023-01-28 thomas
1997 7c82d1d5 2023-01-28 thomas # make sure the remaining ref in work tree 2 was not also deleted
1998 7c82d1d5 2023-01-28 thomas echo $sep > $testroot/stdout.expected
1999 f35e52a9 2023-01-31 thomas echo "cherrypick $branch2_rev2 (newbranch2)" \
2000 f35e52a9 2023-01-31 thomas >> $testroot/stdout.expected
2001 7c82d1d5 2023-01-28 thomas echo "from: $GOT_AUTHOR" >> $testroot/stdout.expected
2002 7c82d1d5 2023-01-28 thomas echo "date: $date2" >> $testroot/stdout.expected
2003 7c82d1d5 2023-01-28 thomas printf " \n $b2_logmsg2\n \n" >> $testroot/stdout.expected
2004 7c82d1d5 2023-01-28 thomas printf "$b2_changeset2\n\n" >> $testroot/stdout.expected
2005 7c82d1d5 2023-01-28 thomas
2006 7c82d1d5 2023-01-28 thomas (cd $testroot/wt2 && got cherrypick -l > $testroot/stdout)
2007 7c82d1d5 2023-01-28 thomas
2008 7c82d1d5 2023-01-28 thomas cmp -s $testroot/stdout.expected $testroot/stdout
2009 7c82d1d5 2023-01-28 thomas ret=$?
2010 7c82d1d5 2023-01-28 thomas if [ $ret -ne 0 ]; then
2011 7c82d1d5 2023-01-28 thomas diff -u $testroot/stdout.expected $testroot/stdout
2012 7c82d1d5 2023-01-28 thomas test_done "$testroot" "$ret"
2013 7c82d1d5 2023-01-28 thomas return 1
2014 7c82d1d5 2023-01-28 thomas fi
2015 7c82d1d5 2023-01-28 thomas
2016 7c82d1d5 2023-01-28 thomas # ensure we can delete work tree refs from the repository dir
2017 7c82d1d5 2023-01-28 thomas ymd=`date -u -r $b2_commit_time2 +"%F"`
2018 46f87436 2023-01-28 thomas echo "Deleted: $ymd newbranch2 $b2_logmsg2" > $testroot/stdout.expected
2019 7c82d1d5 2023-01-28 thomas (cd $testroot/repo && got cherrypick -X > $testroot/stdout)
2020 7c82d1d5 2023-01-28 thomas
2021 7c82d1d5 2023-01-28 thomas cmp -s $testroot/stdout.expected $testroot/stdout
2022 7c82d1d5 2023-01-28 thomas ret=$?
2023 7c82d1d5 2023-01-28 thomas if [ $ret -ne 0 ]; then
2024 7c82d1d5 2023-01-28 thomas diff -u $testroot/stdout.expected $testroot/stdout
2025 7c82d1d5 2023-01-28 thomas fi
2026 7c82d1d5 2023-01-28 thomas
2027 7c82d1d5 2023-01-28 thomas test_done "$testroot" "$ret"
2028 7c82d1d5 2023-01-28 thomas }
2029 7c82d1d5 2023-01-28 thomas
2030 7fb414ae 2020-08-08 stsp test_parseargs "$@"
2031 234035bc 2019-06-01 stsp run_test test_cherrypick_basic
2032 03415a1a 2019-06-02 stsp run_test test_cherrypick_root_commit
2033 ceb466a7 2020-04-18 stsp run_test test_cherrypick_into_work_tree_with_conflicts
2034 ed99f061 2021-09-03 stsp run_test test_cherrypick_into_work_tree_with_mixed_commits
2035 e7303626 2020-05-14 stsp run_test test_cherrypick_modified_submodule
2036 e7303626 2020-05-14 stsp run_test test_cherrypick_added_submodule
2037 e7303626 2020-05-14 stsp run_test test_cherrypick_conflict_wt_file_vs_repo_submodule
2038 af57b12a 2020-07-23 stsp run_test test_cherrypick_modified_symlinks
2039 e26bafba 2020-07-23 stsp run_test test_cherrypick_symlink_conflicts
2040 69d57f3d 2020-07-31 stsp run_test test_cherrypick_with_path_prefix_and_empty_tree
2041 cce854ad 2021-04-13 stsp run_test test_cherrypick_conflict_no_eol
2042 cce854ad 2021-04-13 stsp run_test test_cherrypick_conflict_no_eol2
2043 3cd22b21 2021-05-31 stsp run_test test_cherrypick_unrelated_changes
2044 0baddd91 2021-09-03 stsp run_test test_cherrypick_same_branch
2045 dc2a05aa 2021-10-08 thomas run_test test_cherrypick_dot_on_a_line_by_itself
2046 24f136e0 2021-11-20 thomas run_test test_cherrypick_binary_file
2047 a2c162eb 2022-10-30 thomas run_test test_cherrypick_umask
2048 7c82d1d5 2023-01-28 thomas run_test test_cherrypick_logmsg_ref