Blame


1 c84d8c75 2019-01-02 stsp #!/bin/sh
2 c84d8c75 2019-01-02 stsp #
3 c84d8c75 2019-01-02 stsp # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 c84d8c75 2019-01-02 stsp #
5 c84d8c75 2019-01-02 stsp # Permission to use, copy, modify, and distribute this software for any
6 c84d8c75 2019-01-02 stsp # purpose with or without fee is hereby granted, provided that the above
7 c84d8c75 2019-01-02 stsp # copyright notice and this permission notice appear in all copies.
8 c84d8c75 2019-01-02 stsp #
9 c84d8c75 2019-01-02 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 c84d8c75 2019-01-02 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 c84d8c75 2019-01-02 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 c84d8c75 2019-01-02 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 c84d8c75 2019-01-02 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 c84d8c75 2019-01-02 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 c84d8c75 2019-01-02 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 c84d8c75 2019-01-02 stsp
17 c84d8c75 2019-01-02 stsp . ./common.sh
18 c84d8c75 2019-01-02 stsp
19 f6cae3ed 2020-09-13 naddy test_update_basic() {
20 0fbd721f 2019-01-02 stsp local testroot=`test_init update_basic`
21 c84d8c75 2019-01-02 stsp
22 3c90ba67 2019-01-02 stsp got checkout $testroot/repo $testroot/wt > /dev/null
23 49c543a6 2022-03-31 naddy ret=$?
24 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
25 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
26 c84d8c75 2019-01-02 stsp return 1
27 c84d8c75 2019-01-02 stsp fi
28 c84d8c75 2019-01-02 stsp
29 c84d8c75 2019-01-02 stsp echo "modified alpha" > $testroot/repo/alpha
30 c84d8c75 2019-01-02 stsp git_commit $testroot/repo -m "modified alpha"
31 c84d8c75 2019-01-02 stsp
32 c84d8c75 2019-01-02 stsp echo "U alpha" > $testroot/stdout.expected
33 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
34 9c4b8182 2019-01-02 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
35 9c4b8182 2019-01-02 stsp echo >> $testroot/stdout.expected
36 c84d8c75 2019-01-02 stsp
37 c84d8c75 2019-01-02 stsp (cd $testroot/wt && got update > $testroot/stdout)
38 c84d8c75 2019-01-02 stsp
39 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
40 49c543a6 2022-03-31 naddy ret=$?
41 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
42 c84d8c75 2019-01-02 stsp diff -u $testroot/stdout.expected $testroot/stdout
43 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
44 c84d8c75 2019-01-02 stsp return 1
45 c84d8c75 2019-01-02 stsp fi
46 c84d8c75 2019-01-02 stsp
47 c84d8c75 2019-01-02 stsp echo "modified alpha" > $testroot/content.expected
48 52a3df9b 2019-01-06 stsp cat $testroot/wt/alpha > $testroot/content
49 c84d8c75 2019-01-02 stsp
50 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
51 49c543a6 2022-03-31 naddy ret=$?
52 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
53 c84d8c75 2019-01-02 stsp diff -u $testroot/content.expected $testroot/content
54 c84d8c75 2019-01-02 stsp fi
55 693719bc 2019-01-03 stsp test_done "$testroot" "$ret"
56 c84d8c75 2019-01-02 stsp }
57 c84d8c75 2019-01-02 stsp
58 f6cae3ed 2020-09-13 naddy test_update_adds_file() {
59 3b4d3732 2019-01-02 stsp local testroot=`test_init update_adds_file`
60 3b4d3732 2019-01-02 stsp
61 3b4d3732 2019-01-02 stsp got checkout $testroot/repo $testroot/wt > /dev/null
62 49c543a6 2022-03-31 naddy ret=$?
63 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
64 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
65 3b4d3732 2019-01-02 stsp return 1
66 3b4d3732 2019-01-02 stsp fi
67 3b4d3732 2019-01-02 stsp
68 3b4d3732 2019-01-02 stsp echo "new" > $testroot/repo/gamma/new
69 3b4d3732 2019-01-02 stsp (cd $testroot/repo && git add .)
70 3b4d3732 2019-01-02 stsp git_commit $testroot/repo -m "adding a new file"
71 3b4d3732 2019-01-02 stsp
72 3b4d3732 2019-01-02 stsp echo "A gamma/new" > $testroot/stdout.expected
73 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
74 3b4d3732 2019-01-02 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
75 3b4d3732 2019-01-02 stsp echo >> $testroot/stdout.expected
76 3b4d3732 2019-01-02 stsp
77 3b4d3732 2019-01-02 stsp (cd $testroot/wt && got update > $testroot/stdout)
78 3b4d3732 2019-01-02 stsp
79 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
80 49c543a6 2022-03-31 naddy ret=$?
81 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
82 3b4d3732 2019-01-02 stsp diff -u $testroot/stdout.expected $testroot/stdout
83 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
84 3b4d3732 2019-01-02 stsp return 1
85 3b4d3732 2019-01-02 stsp fi
86 3b4d3732 2019-01-02 stsp
87 3b4d3732 2019-01-02 stsp echo "new" >> $testroot/content.expected
88 52a3df9b 2019-01-06 stsp cat $testroot/wt/gamma/new > $testroot/content
89 3b4d3732 2019-01-02 stsp
90 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
91 49c543a6 2022-03-31 naddy ret=$?
92 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
93 3b4d3732 2019-01-02 stsp diff -u $testroot/content.expected $testroot/content
94 3b4d3732 2019-01-02 stsp fi
95 693719bc 2019-01-03 stsp test_done "$testroot" "$ret"
96 3b4d3732 2019-01-02 stsp }
97 3b4d3732 2019-01-02 stsp
98 f6cae3ed 2020-09-13 naddy test_update_deletes_file() {
99 512f0d0e 2019-01-02 stsp local testroot=`test_init update_deletes_file`
100 512f0d0e 2019-01-02 stsp
101 1c4cdd89 2021-06-20 stsp mkdir $testroot/wtparent
102 1c4cdd89 2021-06-20 stsp got checkout $testroot/repo $testroot/wtparent/wt > /dev/null
103 49c543a6 2022-03-31 naddy ret=$?
104 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
105 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
106 512f0d0e 2019-01-02 stsp return 1
107 512f0d0e 2019-01-02 stsp fi
108 512f0d0e 2019-01-02 stsp
109 1eb5d2a0 2023-02-24 naddy git_rm $testroot/repo beta
110 512f0d0e 2019-01-02 stsp git_commit $testroot/repo -m "deleting a file"
111 512f0d0e 2019-01-02 stsp
112 512f0d0e 2019-01-02 stsp echo "D beta" > $testroot/stdout.expected
113 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
114 512f0d0e 2019-01-02 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
115 512f0d0e 2019-01-02 stsp echo >> $testroot/stdout.expected
116 512f0d0e 2019-01-02 stsp
117 1c4cdd89 2021-06-20 stsp # verify that no error occurs if the work tree's parent
118 1c4cdd89 2021-06-20 stsp # directory is not writable
119 1c4cdd89 2021-06-20 stsp chmod u-w $testroot/wtparent
120 1c4cdd89 2021-06-20 stsp (cd $testroot/wtparent/wt && got update > $testroot/stdout)
121 1c4cdd89 2021-06-20 stsp chmod u+w $testroot/wtparent
122 512f0d0e 2019-01-02 stsp
123 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
124 49c543a6 2022-03-31 naddy ret=$?
125 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
126 512f0d0e 2019-01-02 stsp diff -u $testroot/stdout.expected $testroot/stdout
127 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
128 512f0d0e 2019-01-02 stsp return 1
129 512f0d0e 2019-01-02 stsp fi
130 512f0d0e 2019-01-02 stsp
131 1c4cdd89 2021-06-20 stsp if [ -e $testroot/wtparent/wt/beta ]; then
132 512f0d0e 2019-01-02 stsp echo "removed file beta still exists on disk" >&2
133 52a3df9b 2019-01-06 stsp test_done "$testroot" "1"
134 512f0d0e 2019-01-02 stsp return 1
135 512f0d0e 2019-01-02 stsp fi
136 512f0d0e 2019-01-02 stsp
137 52a3df9b 2019-01-06 stsp test_done "$testroot" "0"
138 512f0d0e 2019-01-02 stsp }
139 512f0d0e 2019-01-02 stsp
140 f6cae3ed 2020-09-13 naddy test_update_deletes_dir() {
141 f5c49f82 2019-01-06 stsp local testroot=`test_init update_deletes_dir`
142 f5c49f82 2019-01-06 stsp
143 f5c49f82 2019-01-06 stsp got checkout $testroot/repo $testroot/wt > /dev/null
144 49c543a6 2022-03-31 naddy ret=$?
145 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
146 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
147 f5c49f82 2019-01-06 stsp return 1
148 f5c49f82 2019-01-06 stsp fi
149 f5c49f82 2019-01-06 stsp
150 1eb5d2a0 2023-02-24 naddy git_rm $testroot/repo -r epsilon
151 f5c49f82 2019-01-06 stsp git_commit $testroot/repo -m "deleting a directory"
152 f5c49f82 2019-01-06 stsp
153 f5c49f82 2019-01-06 stsp echo "D epsilon/zeta" > $testroot/stdout.expected
154 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
155 f5c49f82 2019-01-06 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
156 f5c49f82 2019-01-06 stsp echo >> $testroot/stdout.expected
157 f5c49f82 2019-01-06 stsp
158 f5c49f82 2019-01-06 stsp (cd $testroot/wt && got update > $testroot/stdout)
159 f5c49f82 2019-01-06 stsp
160 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
161 49c543a6 2022-03-31 naddy ret=$?
162 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
163 f5c49f82 2019-01-06 stsp diff -u $testroot/stdout.expected $testroot/stdout
164 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
165 f5c49f82 2019-01-06 stsp return 1
166 f5c49f82 2019-01-06 stsp fi
167 f5c49f82 2019-01-06 stsp
168 f5c49f82 2019-01-06 stsp if [ -e $testroot/wt/epsilon ]; then
169 f5c49f82 2019-01-06 stsp echo "removed dir epsilon still exists on disk" >&2
170 52a3df9b 2019-01-06 stsp test_done "$testroot" "1"
171 f5c49f82 2019-01-06 stsp return 1
172 f5c49f82 2019-01-06 stsp fi
173 f5c49f82 2019-01-06 stsp
174 52a3df9b 2019-01-06 stsp test_done "$testroot" "0"
175 f5c49f82 2019-01-06 stsp }
176 f5c49f82 2019-01-06 stsp
177 f6cae3ed 2020-09-13 naddy test_update_deletes_dir_with_path_prefix() {
178 5cc266ba 2019-01-06 stsp local testroot=`test_init update_deletes_dir_with_path_prefix`
179 5cc266ba 2019-01-06 stsp local first_rev=`git_show_head $testroot/repo`
180 5cc266ba 2019-01-06 stsp
181 5cc266ba 2019-01-06 stsp mkdir $testroot/repo/epsilon/psi
182 5cc266ba 2019-01-06 stsp echo mu > $testroot/repo/epsilon/psi/mu
183 5cc266ba 2019-01-06 stsp (cd $testroot/repo && git add .)
184 5cc266ba 2019-01-06 stsp git_commit $testroot/repo -m "adding a sub-directory beneath epsilon"
185 5cc266ba 2019-01-06 stsp
186 5cc266ba 2019-01-06 stsp # check out the epsilon/ sub-tree
187 5cc266ba 2019-01-06 stsp got checkout -p epsilon $testroot/repo $testroot/wt > /dev/null
188 49c543a6 2022-03-31 naddy ret=$?
189 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
190 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
191 5cc266ba 2019-01-06 stsp return 1
192 5cc266ba 2019-01-06 stsp fi
193 5cc266ba 2019-01-06 stsp
194 5cc266ba 2019-01-06 stsp # update back to first commit and expect psi/mu to be deleted
195 5cc266ba 2019-01-06 stsp echo "D psi/mu" > $testroot/stdout.expected
196 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $first_rev" \
197 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
198 5cc266ba 2019-01-06 stsp
199 5cc266ba 2019-01-06 stsp (cd $testroot/wt && got update -c $first_rev > $testroot/stdout)
200 5cc266ba 2019-01-06 stsp
201 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
202 49c543a6 2022-03-31 naddy ret=$?
203 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
204 5cc266ba 2019-01-06 stsp diff -u $testroot/stdout.expected $testroot/stdout
205 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
206 5cc266ba 2019-01-06 stsp return 1
207 5cc266ba 2019-01-06 stsp fi
208 5cc266ba 2019-01-06 stsp
209 5cc266ba 2019-01-06 stsp if [ -e $testroot/wt/psi ]; then
210 5cc266ba 2019-01-06 stsp echo "removed dir psi still exists on disk" >&2
211 5cc266ba 2019-01-06 stsp test_done "$testroot" "1"
212 5cc266ba 2019-01-06 stsp return 1
213 5cc266ba 2019-01-06 stsp fi
214 5cc266ba 2019-01-06 stsp
215 52a3df9b 2019-01-06 stsp test_done "$testroot" "0"
216 5cc266ba 2019-01-06 stsp }
217 5cc266ba 2019-01-06 stsp
218 f6cae3ed 2020-09-13 naddy test_update_deletes_dir_recursively() {
219 90285c3b 2019-01-08 stsp local testroot=`test_init update_deletes_dir_recursively`
220 90285c3b 2019-01-08 stsp local first_rev=`git_show_head $testroot/repo`
221 90285c3b 2019-01-08 stsp
222 90285c3b 2019-01-08 stsp mkdir $testroot/repo/epsilon/psi
223 90285c3b 2019-01-08 stsp echo mu > $testroot/repo/epsilon/psi/mu
224 90285c3b 2019-01-08 stsp mkdir $testroot/repo/epsilon/psi/chi
225 90285c3b 2019-01-08 stsp echo tau > $testroot/repo/epsilon/psi/chi/tau
226 90285c3b 2019-01-08 stsp (cd $testroot/repo && git add .)
227 90285c3b 2019-01-08 stsp git_commit $testroot/repo -m "adding a sub-directory beneath epsilon"
228 90285c3b 2019-01-08 stsp
229 90285c3b 2019-01-08 stsp # check out the epsilon/ sub-tree
230 90285c3b 2019-01-08 stsp got checkout -p epsilon $testroot/repo $testroot/wt > /dev/null
231 49c543a6 2022-03-31 naddy ret=$?
232 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
233 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
234 90285c3b 2019-01-08 stsp return 1
235 90285c3b 2019-01-08 stsp fi
236 90285c3b 2019-01-08 stsp
237 90285c3b 2019-01-08 stsp # update back to first commit and expect psi/mu to be deleted
238 90285c3b 2019-01-08 stsp echo "D psi/chi/tau" > $testroot/stdout.expected
239 90285c3b 2019-01-08 stsp echo "D psi/mu" >> $testroot/stdout.expected
240 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $first_rev" \
241 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
242 90285c3b 2019-01-08 stsp
243 90285c3b 2019-01-08 stsp (cd $testroot/wt && got update -c $first_rev > $testroot/stdout)
244 90285c3b 2019-01-08 stsp
245 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
246 49c543a6 2022-03-31 naddy ret=$?
247 90285c3b 2019-01-08 stsp if [ "$?" != "0" ]; then
248 90285c3b 2019-01-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
249 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
250 90285c3b 2019-01-08 stsp return 1
251 90285c3b 2019-01-08 stsp fi
252 90285c3b 2019-01-08 stsp
253 90285c3b 2019-01-08 stsp if [ -e $testroot/wt/psi ]; then
254 90285c3b 2019-01-08 stsp echo "removed dir psi still exists on disk" >&2
255 90285c3b 2019-01-08 stsp test_done "$testroot" "1"
256 90285c3b 2019-01-08 stsp return 1
257 90285c3b 2019-01-08 stsp fi
258 90285c3b 2019-01-08 stsp
259 90285c3b 2019-01-08 stsp test_done "$testroot" "0"
260 90285c3b 2019-01-08 stsp }
261 90285c3b 2019-01-08 stsp
262 f6cae3ed 2020-09-13 naddy test_update_sibling_dirs_with_common_prefix() {
263 4482e97b 2019-01-08 stsp local testroot=`test_init update_sibling_dirs_with_common_prefix`
264 81a30460 2019-01-08 stsp
265 81a30460 2019-01-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
266 49c543a6 2022-03-31 naddy ret=$?
267 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
268 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
269 81a30460 2019-01-08 stsp return 1
270 81a30460 2019-01-08 stsp fi
271 81a30460 2019-01-08 stsp
272 81a30460 2019-01-08 stsp mkdir $testroot/repo/epsilon2
273 81a30460 2019-01-08 stsp echo mu > $testroot/repo/epsilon2/mu
274 81a30460 2019-01-08 stsp (cd $testroot/repo && git add epsilon2/mu)
275 81a30460 2019-01-08 stsp git_commit $testroot/repo -m "adding sibling of epsilon"
276 81a30460 2019-01-08 stsp echo change > $testroot/repo/epsilon/zeta
277 81a30460 2019-01-08 stsp git_commit $testroot/repo -m "changing epsilon/zeta"
278 81a30460 2019-01-08 stsp
279 81a30460 2019-01-08 stsp echo "U epsilon/zeta" > $testroot/stdout.expected
280 81a30460 2019-01-08 stsp echo "A epsilon2/mu" >> $testroot/stdout.expected
281 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
282 81a30460 2019-01-08 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
283 81a30460 2019-01-08 stsp echo >> $testroot/stdout.expected
284 81a30460 2019-01-08 stsp
285 81a30460 2019-01-08 stsp (cd $testroot/wt && got update > $testroot/stdout)
286 81a30460 2019-01-08 stsp
287 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
288 49c543a6 2022-03-31 naddy ret=$?
289 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
290 81a30460 2019-01-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
291 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
292 81a30460 2019-01-08 stsp return 1
293 81a30460 2019-01-08 stsp fi
294 81a30460 2019-01-08 stsp
295 81a30460 2019-01-08 stsp echo "another change" > $testroot/repo/epsilon/zeta
296 81a30460 2019-01-08 stsp git_commit $testroot/repo -m "changing epsilon/zeta again"
297 81a30460 2019-01-08 stsp
298 81a30460 2019-01-08 stsp echo "U epsilon/zeta" > $testroot/stdout.expected
299 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
300 81a30460 2019-01-08 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
301 81a30460 2019-01-08 stsp echo >> $testroot/stdout.expected
302 81a30460 2019-01-08 stsp
303 81a30460 2019-01-08 stsp # Bug: This update used to do delete/add epsilon2/mu again:
304 81a30460 2019-01-08 stsp # U epsilon/zeta
305 81a30460 2019-01-08 stsp # D epsilon2/mu <--- not intended
306 81a30460 2019-01-08 stsp # A epsilon2/mu <--- not intended
307 50952927 2019-01-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
308 50952927 2019-01-12 stsp
309 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
310 49c543a6 2022-03-31 naddy ret=$?
311 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
312 50952927 2019-01-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
313 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
314 50952927 2019-01-12 stsp return 1
315 50952927 2019-01-12 stsp fi
316 50952927 2019-01-12 stsp
317 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
318 49c543a6 2022-03-31 naddy ret=$?
319 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
320 50952927 2019-01-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
321 50952927 2019-01-12 stsp fi
322 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
323 50952927 2019-01-12 stsp }
324 50952927 2019-01-12 stsp
325 f6cae3ed 2020-09-13 naddy test_update_dir_with_dot_sibling() {
326 50952927 2019-01-12 stsp local testroot=`test_init update_dir_with_dot_sibling`
327 50952927 2019-01-12 stsp
328 50952927 2019-01-12 stsp got checkout $testroot/repo $testroot/wt > /dev/null
329 49c543a6 2022-03-31 naddy ret=$?
330 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
331 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
332 50952927 2019-01-12 stsp return 1
333 50952927 2019-01-12 stsp fi
334 50952927 2019-01-12 stsp
335 50952927 2019-01-12 stsp echo text > $testroot/repo/epsilon.txt
336 50952927 2019-01-12 stsp (cd $testroot/repo && git add epsilon.txt)
337 50952927 2019-01-12 stsp git_commit $testroot/repo -m "adding sibling of epsilon"
338 50952927 2019-01-12 stsp echo change > $testroot/repo/epsilon/zeta
339 50952927 2019-01-12 stsp git_commit $testroot/repo -m "changing epsilon/zeta"
340 50952927 2019-01-12 stsp
341 f5d3d7af 2019-02-05 stsp echo "U epsilon/zeta" > $testroot/stdout.expected
342 f5d3d7af 2019-02-05 stsp echo "A epsilon.txt" >> $testroot/stdout.expected
343 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
344 50952927 2019-01-12 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
345 50952927 2019-01-12 stsp echo >> $testroot/stdout.expected
346 50952927 2019-01-12 stsp
347 81a30460 2019-01-08 stsp (cd $testroot/wt && got update > $testroot/stdout)
348 81a30460 2019-01-08 stsp
349 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
350 49c543a6 2022-03-31 naddy ret=$?
351 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
352 81a30460 2019-01-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
353 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
354 81a30460 2019-01-08 stsp return 1
355 81a30460 2019-01-08 stsp fi
356 81a30460 2019-01-08 stsp
357 50952927 2019-01-12 stsp echo "another change" > $testroot/repo/epsilon/zeta
358 50952927 2019-01-12 stsp git_commit $testroot/repo -m "changing epsilon/zeta again"
359 50952927 2019-01-12 stsp
360 50952927 2019-01-12 stsp echo "U epsilon/zeta" > $testroot/stdout.expected
361 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
362 50952927 2019-01-12 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
363 50952927 2019-01-12 stsp echo >> $testroot/stdout.expected
364 50952927 2019-01-12 stsp
365 50952927 2019-01-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
366 50952927 2019-01-12 stsp
367 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
368 49c543a6 2022-03-31 naddy ret=$?
369 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
370 81a30460 2019-01-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
371 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
372 81a30460 2019-01-08 stsp return 1
373 81a30460 2019-01-08 stsp fi
374 81a30460 2019-01-08 stsp
375 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
376 49c543a6 2022-03-31 naddy ret=$?
377 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
378 50952927 2019-01-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
379 50952927 2019-01-12 stsp fi
380 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
381 81a30460 2019-01-08 stsp }
382 46cee7a3 2019-01-12 stsp
383 f6cae3ed 2020-09-13 naddy test_update_moves_files_upwards() {
384 46cee7a3 2019-01-12 stsp local testroot=`test_init update_moves_files_upwards`
385 46cee7a3 2019-01-12 stsp
386 46cee7a3 2019-01-12 stsp mkdir $testroot/repo/epsilon/psi
387 46cee7a3 2019-01-12 stsp echo mu > $testroot/repo/epsilon/psi/mu
388 46cee7a3 2019-01-12 stsp mkdir $testroot/repo/epsilon/psi/chi
389 46cee7a3 2019-01-12 stsp echo tau > $testroot/repo/epsilon/psi/chi/tau
390 46cee7a3 2019-01-12 stsp (cd $testroot/repo && git add .)
391 46cee7a3 2019-01-12 stsp git_commit $testroot/repo -m "adding a sub-directory beneath epsilon"
392 46cee7a3 2019-01-12 stsp
393 46cee7a3 2019-01-12 stsp got checkout $testroot/repo $testroot/wt > /dev/null
394 49c543a6 2022-03-31 naddy ret=$?
395 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
396 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
397 46cee7a3 2019-01-12 stsp return 1
398 46cee7a3 2019-01-12 stsp fi
399 81a30460 2019-01-08 stsp
400 46cee7a3 2019-01-12 stsp (cd $testroot/repo && git mv epsilon/psi/mu epsilon/mu)
401 46cee7a3 2019-01-12 stsp (cd $testroot/repo && git mv epsilon/psi/chi/tau epsilon/psi/tau)
402 46cee7a3 2019-01-12 stsp git_commit $testroot/repo -m "moving files upwards"
403 46cee7a3 2019-01-12 stsp
404 21908da4 2019-01-13 stsp echo "A epsilon/mu" > $testroot/stdout.expected
405 21908da4 2019-01-13 stsp echo "D epsilon/psi/chi/tau" >> $testroot/stdout.expected
406 46cee7a3 2019-01-12 stsp echo "D epsilon/psi/mu" >> $testroot/stdout.expected
407 bd4792ec 2019-01-13 stsp echo "A epsilon/psi/tau" >> $testroot/stdout.expected
408 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
409 46cee7a3 2019-01-12 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
410 46cee7a3 2019-01-12 stsp echo >> $testroot/stdout.expected
411 46cee7a3 2019-01-12 stsp
412 46cee7a3 2019-01-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
413 46cee7a3 2019-01-12 stsp
414 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
415 49c543a6 2022-03-31 naddy ret=$?
416 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
417 46cee7a3 2019-01-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
418 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
419 46cee7a3 2019-01-12 stsp return 1
420 46cee7a3 2019-01-12 stsp fi
421 46cee7a3 2019-01-12 stsp
422 46cee7a3 2019-01-12 stsp if [ -e $testroot/wt/epsilon/psi/chi ]; then
423 46cee7a3 2019-01-12 stsp echo "removed dir epsilon/psi/chi still exists on disk" >&2
424 46cee7a3 2019-01-12 stsp test_done "$testroot" "1"
425 46cee7a3 2019-01-12 stsp return 1
426 46cee7a3 2019-01-12 stsp fi
427 46cee7a3 2019-01-12 stsp
428 46cee7a3 2019-01-12 stsp if [ -e $testroot/wt/epsilon/psi/mu ]; then
429 46cee7a3 2019-01-12 stsp echo "removed file epsilon/psi/mu still exists on disk" >&2
430 46cee7a3 2019-01-12 stsp test_done "$testroot" "1"
431 46cee7a3 2019-01-12 stsp return 1
432 46cee7a3 2019-01-12 stsp fi
433 46cee7a3 2019-01-12 stsp
434 46cee7a3 2019-01-12 stsp test_done "$testroot" "0"
435 46cee7a3 2019-01-12 stsp }
436 46cee7a3 2019-01-12 stsp
437 f6cae3ed 2020-09-13 naddy test_update_moves_files_to_new_dir() {
438 46cee7a3 2019-01-12 stsp local testroot=`test_init update_moves_files_to_new_dir`
439 46cee7a3 2019-01-12 stsp
440 46cee7a3 2019-01-12 stsp mkdir $testroot/repo/epsilon/psi
441 46cee7a3 2019-01-12 stsp echo mu > $testroot/repo/epsilon/psi/mu
442 46cee7a3 2019-01-12 stsp mkdir $testroot/repo/epsilon/psi/chi
443 46cee7a3 2019-01-12 stsp echo tau > $testroot/repo/epsilon/psi/chi/tau
444 46cee7a3 2019-01-12 stsp (cd $testroot/repo && git add .)
445 46cee7a3 2019-01-12 stsp git_commit $testroot/repo -m "adding a sub-directory beneath epsilon"
446 46cee7a3 2019-01-12 stsp
447 46cee7a3 2019-01-12 stsp got checkout $testroot/repo $testroot/wt > /dev/null
448 49c543a6 2022-03-31 naddy ret=$?
449 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
450 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
451 46cee7a3 2019-01-12 stsp return 1
452 46cee7a3 2019-01-12 stsp fi
453 46cee7a3 2019-01-12 stsp
454 46cee7a3 2019-01-12 stsp mkdir -p $testroot/repo/epsilon-new/psi
455 46cee7a3 2019-01-12 stsp (cd $testroot/repo && git mv epsilon/psi/mu epsilon-new/mu)
456 46cee7a3 2019-01-12 stsp (cd $testroot/repo && git mv epsilon/psi/chi/tau epsilon-new/psi/tau)
457 46cee7a3 2019-01-12 stsp git_commit $testroot/repo -m "moving files upwards"
458 46cee7a3 2019-01-12 stsp
459 f5d3d7af 2019-02-05 stsp echo "D epsilon/psi/chi/tau" > $testroot/stdout.expected
460 46cee7a3 2019-01-12 stsp echo "D epsilon/psi/mu" >> $testroot/stdout.expected
461 f5d3d7af 2019-02-05 stsp echo "A epsilon-new/mu" >> $testroot/stdout.expected
462 f5d3d7af 2019-02-05 stsp echo "A epsilon-new/psi/tau" >> $testroot/stdout.expected
463 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
464 46cee7a3 2019-01-12 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
465 46cee7a3 2019-01-12 stsp echo >> $testroot/stdout.expected
466 46cee7a3 2019-01-12 stsp
467 46cee7a3 2019-01-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
468 46cee7a3 2019-01-12 stsp
469 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
470 49c543a6 2022-03-31 naddy ret=$?
471 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
472 46cee7a3 2019-01-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
473 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
474 46cee7a3 2019-01-12 stsp return 1
475 46cee7a3 2019-01-12 stsp fi
476 46cee7a3 2019-01-12 stsp
477 46cee7a3 2019-01-12 stsp if [ -e $testroot/wt/epsilon/psi/chi ]; then
478 46cee7a3 2019-01-12 stsp echo "removed dir epsilon/psi/chi still exists on disk" >&2
479 46cee7a3 2019-01-12 stsp test_done "$testroot" "1"
480 46cee7a3 2019-01-12 stsp return 1
481 46cee7a3 2019-01-12 stsp fi
482 46cee7a3 2019-01-12 stsp
483 46cee7a3 2019-01-12 stsp if [ -e $testroot/wt/epsilon/psi/mu ]; then
484 46cee7a3 2019-01-12 stsp echo "removed file epsilon/psi/mu still exists on disk" >&2
485 46cee7a3 2019-01-12 stsp test_done "$testroot" "1"
486 4a1ddfc2 2019-01-12 stsp return 1
487 4a1ddfc2 2019-01-12 stsp fi
488 4a1ddfc2 2019-01-12 stsp
489 4a1ddfc2 2019-01-12 stsp test_done "$testroot" "0"
490 4a1ddfc2 2019-01-12 stsp }
491 4a1ddfc2 2019-01-12 stsp
492 f6cae3ed 2020-09-13 naddy test_update_creates_missing_parent() {
493 1aad446a 2019-01-13 stsp local testroot=`test_init update_creates_missing_parent 1`
494 4a1ddfc2 2019-01-12 stsp
495 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/Makefile
496 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snake.6
497 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snake.c
498 4a1ddfc2 2019-01-12 stsp (cd $testroot/repo && git add .)
499 4a1ddfc2 2019-01-12 stsp git_commit $testroot/repo -m "adding initial snake tree"
500 4a1ddfc2 2019-01-12 stsp
501 4a1ddfc2 2019-01-12 stsp got checkout $testroot/repo $testroot/wt > /dev/null
502 49c543a6 2022-03-31 naddy ret=$?
503 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
504 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
505 4a1ddfc2 2019-01-12 stsp return 1
506 4a1ddfc2 2019-01-12 stsp fi
507 4a1ddfc2 2019-01-12 stsp
508 4a1ddfc2 2019-01-12 stsp mkdir -p $testroot/repo/snake
509 4a1ddfc2 2019-01-12 stsp (cd $testroot/repo && git mv Makefile snake.6 snake.c snake)
510 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snake/move.c
511 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snake/pathnames.h
512 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snake/snake.h
513 4a1ddfc2 2019-01-12 stsp mkdir -p $testroot/repo/snscore
514 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snscore/Makefile
515 4a1ddfc2 2019-01-12 stsp touch $testroot/repo/snscore/snscore.c
516 4a1ddfc2 2019-01-12 stsp (cd $testroot/repo && git add .)
517 4a1ddfc2 2019-01-12 stsp git_commit $testroot/repo -m "restructuring snake tree"
518 4a1ddfc2 2019-01-12 stsp
519 4a1ddfc2 2019-01-12 stsp echo "D Makefile" > $testroot/stdout.expected
520 4a1ddfc2 2019-01-12 stsp echo "A snake/Makefile" >> $testroot/stdout.expected
521 4a1ddfc2 2019-01-12 stsp echo "A snake/move.c" >> $testroot/stdout.expected
522 4a1ddfc2 2019-01-12 stsp echo "A snake/pathnames.h" >> $testroot/stdout.expected
523 4a1ddfc2 2019-01-12 stsp echo "A snake/snake.6" >> $testroot/stdout.expected
524 4a1ddfc2 2019-01-12 stsp echo "A snake/snake.c" >> $testroot/stdout.expected
525 4a1ddfc2 2019-01-12 stsp echo "A snake/snake.h" >> $testroot/stdout.expected
526 18831e78 2019-02-10 stsp echo "D snake.6" >> $testroot/stdout.expected
527 18831e78 2019-02-10 stsp echo "D snake.c" >> $testroot/stdout.expected
528 bd4792ec 2019-01-13 stsp echo "A snscore/Makefile" >> $testroot/stdout.expected
529 bd4792ec 2019-01-13 stsp echo "A snscore/snscore.c" >> $testroot/stdout.expected
530 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
531 bd4792ec 2019-01-13 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
532 bd4792ec 2019-01-13 stsp echo >> $testroot/stdout.expected
533 bd4792ec 2019-01-13 stsp
534 bd4792ec 2019-01-13 stsp (cd $testroot/wt && got update > $testroot/stdout)
535 bd4792ec 2019-01-13 stsp
536 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
537 49c543a6 2022-03-31 naddy ret=$?
538 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
539 e60e7f5b 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
540 bd4792ec 2019-01-13 stsp fi
541 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
542 bd4792ec 2019-01-13 stsp }
543 bd4792ec 2019-01-13 stsp
544 f6cae3ed 2020-09-13 naddy test_update_creates_missing_parent_with_subdir() {
545 1aad446a 2019-01-13 stsp local testroot=`test_init update_creates_missing_parent_with_subdir 1`
546 bd4792ec 2019-01-13 stsp
547 bd4792ec 2019-01-13 stsp touch $testroot/repo/Makefile
548 bd4792ec 2019-01-13 stsp touch $testroot/repo/snake.6
549 bd4792ec 2019-01-13 stsp touch $testroot/repo/snake.c
550 bd4792ec 2019-01-13 stsp (cd $testroot/repo && git add .)
551 bd4792ec 2019-01-13 stsp git_commit $testroot/repo -m "adding initial snake tree"
552 bd4792ec 2019-01-13 stsp
553 bd4792ec 2019-01-13 stsp got checkout $testroot/repo $testroot/wt > /dev/null
554 49c543a6 2022-03-31 naddy ret=$?
555 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
556 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
557 bd4792ec 2019-01-13 stsp return 1
558 bd4792ec 2019-01-13 stsp fi
559 bd4792ec 2019-01-13 stsp
560 bd4792ec 2019-01-13 stsp mkdir -p $testroot/repo/sss/snake
561 bd4792ec 2019-01-13 stsp (cd $testroot/repo && git mv Makefile snake.6 snake.c sss/snake)
562 bd4792ec 2019-01-13 stsp touch $testroot/repo/sss/snake/move.c
563 bd4792ec 2019-01-13 stsp touch $testroot/repo/sss/snake/pathnames.h
564 bd4792ec 2019-01-13 stsp touch $testroot/repo/sss/snake/snake.h
565 bd4792ec 2019-01-13 stsp mkdir -p $testroot/repo/snscore
566 bd4792ec 2019-01-13 stsp touch $testroot/repo/snscore/Makefile
567 bd4792ec 2019-01-13 stsp touch $testroot/repo/snscore/snscore.c
568 bd4792ec 2019-01-13 stsp (cd $testroot/repo && git add .)
569 bd4792ec 2019-01-13 stsp git_commit $testroot/repo -m "restructuring snake tree"
570 bd4792ec 2019-01-13 stsp
571 bd4792ec 2019-01-13 stsp echo "D Makefile" > $testroot/stdout.expected
572 4a1ddfc2 2019-01-12 stsp echo "D snake.6" >> $testroot/stdout.expected
573 4a1ddfc2 2019-01-12 stsp echo "D snake.c" >> $testroot/stdout.expected
574 4a1ddfc2 2019-01-12 stsp echo "A snscore/Makefile" >> $testroot/stdout.expected
575 4a1ddfc2 2019-01-12 stsp echo "A snscore/snscore.c" >> $testroot/stdout.expected
576 bd4792ec 2019-01-13 stsp echo "A sss/snake/Makefile" >> $testroot/stdout.expected
577 bd4792ec 2019-01-13 stsp echo "A sss/snake/move.c" >> $testroot/stdout.expected
578 bd4792ec 2019-01-13 stsp echo "A sss/snake/pathnames.h" >> $testroot/stdout.expected
579 bd4792ec 2019-01-13 stsp echo "A sss/snake/snake.6" >> $testroot/stdout.expected
580 bd4792ec 2019-01-13 stsp echo "A sss/snake/snake.c" >> $testroot/stdout.expected
581 bd4792ec 2019-01-13 stsp echo "A sss/snake/snake.h" >> $testroot/stdout.expected
582 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
583 4a1ddfc2 2019-01-12 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
584 4a1ddfc2 2019-01-12 stsp echo >> $testroot/stdout.expected
585 4a1ddfc2 2019-01-12 stsp
586 4a1ddfc2 2019-01-12 stsp (cd $testroot/wt && got update > $testroot/stdout)
587 4a1ddfc2 2019-01-12 stsp
588 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
589 49c543a6 2022-03-31 naddy ret=$?
590 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
591 4a1ddfc2 2019-01-12 stsp diff -u $testroot/stdout.expected $testroot/stdout
592 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
593 46cee7a3 2019-01-12 stsp return 1
594 46cee7a3 2019-01-12 stsp fi
595 46cee7a3 2019-01-12 stsp
596 46cee7a3 2019-01-12 stsp test_done "$testroot" "0"
597 46cee7a3 2019-01-12 stsp }
598 21908da4 2019-01-13 stsp
599 f6cae3ed 2020-09-13 naddy test_update_file_in_subsubdir() {
600 1aad446a 2019-01-13 stsp local testroot=`test_init update_fle_in_subsubdir 1`
601 46cee7a3 2019-01-12 stsp
602 21908da4 2019-01-13 stsp touch $testroot/repo/Makefile
603 21908da4 2019-01-13 stsp mkdir -p $testroot/repo/altq
604 21908da4 2019-01-13 stsp touch $testroot/repo/altq/if_altq.h
605 21908da4 2019-01-13 stsp mkdir -p $testroot/repo/arch/alpha
606 21908da4 2019-01-13 stsp touch $testroot/repo/arch/alpha/Makefile
607 21908da4 2019-01-13 stsp (cd $testroot/repo && git add .)
608 21908da4 2019-01-13 stsp git_commit $testroot/repo -m "adding initial tree"
609 21908da4 2019-01-13 stsp
610 21908da4 2019-01-13 stsp got checkout $testroot/repo $testroot/wt > /dev/null
611 49c543a6 2022-03-31 naddy ret=$?
612 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
613 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
614 21908da4 2019-01-13 stsp return 1
615 21908da4 2019-01-13 stsp fi
616 21908da4 2019-01-13 stsp
617 21908da4 2019-01-13 stsp echo change > $testroot/repo/arch/alpha/Makefile
618 21908da4 2019-01-13 stsp (cd $testroot/repo && git add .)
619 21908da4 2019-01-13 stsp git_commit $testroot/repo -m "changed a file"
620 21908da4 2019-01-13 stsp
621 21908da4 2019-01-13 stsp echo "U arch/alpha/Makefile" > $testroot/stdout.expected
622 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
623 21908da4 2019-01-13 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
624 21908da4 2019-01-13 stsp echo >> $testroot/stdout.expected
625 21908da4 2019-01-13 stsp
626 21908da4 2019-01-13 stsp (cd $testroot/wt && got update > $testroot/stdout)
627 21908da4 2019-01-13 stsp
628 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
629 49c543a6 2022-03-31 naddy ret=$?
630 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
631 21908da4 2019-01-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
632 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
633 21908da4 2019-01-13 stsp return 1
634 21908da4 2019-01-13 stsp fi
635 21908da4 2019-01-13 stsp
636 21908da4 2019-01-13 stsp test_done "$testroot" "0"
637 21908da4 2019-01-13 stsp }
638 c3b9af18 2023-02-26 naddy
639 c3b9af18 2023-02-26 naddy test_update_changes_file_to_dir() {
640 c3b9af18 2023-02-26 naddy local testroot=`test_init update_changes_file_to_dir`
641 c3b9af18 2023-02-26 naddy
642 c3b9af18 2023-02-26 naddy got checkout $testroot/repo $testroot/wt > /dev/null
643 c3b9af18 2023-02-26 naddy ret=$?
644 c3b9af18 2023-02-26 naddy if [ $ret -ne 0 ]; then
645 c3b9af18 2023-02-26 naddy test_done "$testroot" "$ret"
646 c3b9af18 2023-02-26 naddy return 1
647 c3b9af18 2023-02-26 naddy fi
648 6353ad76 2019-02-08 stsp
649 c3b9af18 2023-02-26 naddy git_rm $testroot/repo alpha
650 c3b9af18 2023-02-26 naddy mkdir $testroot/repo/alpha
651 c3b9af18 2023-02-26 naddy echo eta > $testroot/repo/alpha/eta
652 c3b9af18 2023-02-26 naddy (cd $testroot/repo && git add alpha/eta)
653 c3b9af18 2023-02-26 naddy git_commit $testroot/repo -m "changed alpha into directory"
654 c3b9af18 2023-02-26 naddy
655 c3b9af18 2023-02-26 naddy (cd $testroot/wt && got update > $testroot/stdout 2> $testroot/stderr)
656 c3b9af18 2023-02-26 naddy ret=$?
657 c3b9af18 2023-02-26 naddy if [ $ret -ne 0 ]; then
658 c3b9af18 2023-02-26 naddy ret="xfail change file into directory"
659 c3b9af18 2023-02-26 naddy fi
660 c3b9af18 2023-02-26 naddy test_done "$testroot" "$ret"
661 c3b9af18 2023-02-26 naddy }
662 c3b9af18 2023-02-26 naddy
663 f6cae3ed 2020-09-13 naddy test_update_merges_file_edits() {
664 6353ad76 2019-02-08 stsp local testroot=`test_init update_merges_file_edits`
665 6353ad76 2019-02-08 stsp
666 6353ad76 2019-02-08 stsp echo "1" > $testroot/repo/numbers
667 6353ad76 2019-02-08 stsp echo "2" >> $testroot/repo/numbers
668 6353ad76 2019-02-08 stsp echo "3" >> $testroot/repo/numbers
669 6353ad76 2019-02-08 stsp echo "4" >> $testroot/repo/numbers
670 6353ad76 2019-02-08 stsp echo "5" >> $testroot/repo/numbers
671 6353ad76 2019-02-08 stsp echo "6" >> $testroot/repo/numbers
672 6353ad76 2019-02-08 stsp echo "7" >> $testroot/repo/numbers
673 6353ad76 2019-02-08 stsp echo "8" >> $testroot/repo/numbers
674 6353ad76 2019-02-08 stsp (cd $testroot/repo && git add numbers)
675 6353ad76 2019-02-08 stsp git_commit $testroot/repo -m "added numbers file"
676 f69721c3 2019-10-21 stsp local base_commit=`git_show_head $testroot/repo`
677 21908da4 2019-01-13 stsp
678 6353ad76 2019-02-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
679 49c543a6 2022-03-31 naddy ret=$?
680 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
681 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
682 6353ad76 2019-02-08 stsp return 1
683 6353ad76 2019-02-08 stsp fi
684 6353ad76 2019-02-08 stsp
685 6353ad76 2019-02-08 stsp echo "modified alpha" > $testroot/repo/alpha
686 6353ad76 2019-02-08 stsp echo "modified beta" > $testroot/repo/beta
687 6353ad76 2019-02-08 stsp sed -i 's/2/22/' $testroot/repo/numbers
688 6353ad76 2019-02-08 stsp git_commit $testroot/repo -m "modified 3 files"
689 6353ad76 2019-02-08 stsp
690 6353ad76 2019-02-08 stsp echo "modified alpha, too" > $testroot/wt/alpha
691 6353ad76 2019-02-08 stsp touch $testroot/wt/beta
692 6353ad76 2019-02-08 stsp sed -i 's/7/77/' $testroot/wt/numbers
693 6353ad76 2019-02-08 stsp
694 6353ad76 2019-02-08 stsp echo "C alpha" > $testroot/stdout.expected
695 6353ad76 2019-02-08 stsp echo "U beta" >> $testroot/stdout.expected
696 6353ad76 2019-02-08 stsp echo "G numbers" >> $testroot/stdout.expected
697 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
698 6353ad76 2019-02-08 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
699 6353ad76 2019-02-08 stsp echo >> $testroot/stdout.expected
700 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
701 6353ad76 2019-02-08 stsp
702 6353ad76 2019-02-08 stsp (cd $testroot/wt && got update > $testroot/stdout)
703 6353ad76 2019-02-08 stsp
704 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
705 49c543a6 2022-03-31 naddy ret=$?
706 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
707 6353ad76 2019-02-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
708 e60e7f5b 2019-02-10 stsp test_done "$testroot" "$ret"
709 6353ad76 2019-02-08 stsp return 1
710 6353ad76 2019-02-08 stsp fi
711 6353ad76 2019-02-08 stsp
712 f69721c3 2019-10-21 stsp echo -n "<<<<<<< merged change: commit " > $testroot/content.expected
713 6353ad76 2019-02-08 stsp git_show_head $testroot/repo >> $testroot/content.expected
714 6353ad76 2019-02-08 stsp echo >> $testroot/content.expected
715 6353ad76 2019-02-08 stsp echo "modified alpha" >> $testroot/content.expected
716 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $base_commit" \
717 f69721c3 2019-10-21 stsp >> $testroot/content.expected
718 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
719 6353ad76 2019-02-08 stsp echo "=======" >> $testroot/content.expected
720 6353ad76 2019-02-08 stsp echo "modified alpha, too" >> $testroot/content.expected
721 f69721c3 2019-10-21 stsp echo '>>>>>>>' >> $testroot/content.expected
722 6353ad76 2019-02-08 stsp echo "modified beta" >> $testroot/content.expected
723 6353ad76 2019-02-08 stsp echo "1" >> $testroot/content.expected
724 6353ad76 2019-02-08 stsp echo "22" >> $testroot/content.expected
725 6353ad76 2019-02-08 stsp echo "3" >> $testroot/content.expected
726 6353ad76 2019-02-08 stsp echo "4" >> $testroot/content.expected
727 6353ad76 2019-02-08 stsp echo "5" >> $testroot/content.expected
728 6353ad76 2019-02-08 stsp echo "6" >> $testroot/content.expected
729 6353ad76 2019-02-08 stsp echo "77" >> $testroot/content.expected
730 6353ad76 2019-02-08 stsp echo "8" >> $testroot/content.expected
731 6353ad76 2019-02-08 stsp
732 6353ad76 2019-02-08 stsp cat $testroot/wt/alpha > $testroot/content
733 6353ad76 2019-02-08 stsp cat $testroot/wt/beta >> $testroot/content
734 6353ad76 2019-02-08 stsp cat $testroot/wt/numbers >> $testroot/content
735 6353ad76 2019-02-08 stsp
736 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
737 49c543a6 2022-03-31 naddy ret=$?
738 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
739 6353ad76 2019-02-08 stsp diff -u $testroot/content.expected $testroot/content
740 68ed9ba5 2019-02-10 stsp fi
741 68ed9ba5 2019-02-10 stsp test_done "$testroot" "$ret"
742 68ed9ba5 2019-02-10 stsp }
743 68ed9ba5 2019-02-10 stsp
744 f6cae3ed 2020-09-13 naddy test_update_keeps_xbit() {
745 68ed9ba5 2019-02-10 stsp local testroot=`test_init update_keeps_xbit 1`
746 68ed9ba5 2019-02-10 stsp
747 68ed9ba5 2019-02-10 stsp touch $testroot/repo/xfile
748 68ed9ba5 2019-02-10 stsp chmod +x $testroot/repo/xfile
749 68ed9ba5 2019-02-10 stsp (cd $testroot/repo && git add .)
750 68ed9ba5 2019-02-10 stsp git_commit $testroot/repo -m "adding executable file"
751 68ed9ba5 2019-02-10 stsp
752 68ed9ba5 2019-02-10 stsp got checkout $testroot/repo $testroot/wt > $testroot/stdout
753 49c543a6 2022-03-31 naddy ret=$?
754 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
755 68ed9ba5 2019-02-10 stsp test_done "$testroot" "$ret"
756 68ed9ba5 2019-02-10 stsp return 1
757 68ed9ba5 2019-02-10 stsp fi
758 68ed9ba5 2019-02-10 stsp
759 68ed9ba5 2019-02-10 stsp echo foo > $testroot/repo/xfile
760 68ed9ba5 2019-02-10 stsp git_commit $testroot/repo -m "changed executable file"
761 68ed9ba5 2019-02-10 stsp
762 68ed9ba5 2019-02-10 stsp echo "U xfile" > $testroot/stdout.expected
763 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
764 68ed9ba5 2019-02-10 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
765 68ed9ba5 2019-02-10 stsp echo >> $testroot/stdout.expected
766 68ed9ba5 2019-02-10 stsp
767 68ed9ba5 2019-02-10 stsp (cd $testroot/wt && got update > $testroot/stdout)
768 49c543a6 2022-03-31 naddy ret=$?
769 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
770 68ed9ba5 2019-02-10 stsp test_done "$testroot" "$ret"
771 68ed9ba5 2019-02-10 stsp return 1
772 6353ad76 2019-02-08 stsp fi
773 68ed9ba5 2019-02-10 stsp
774 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
775 49c543a6 2022-03-31 naddy ret=$?
776 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
777 68ed9ba5 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
778 68ed9ba5 2019-02-10 stsp test_done "$testroot" "$ret"
779 68ed9ba5 2019-02-10 stsp return 1
780 68ed9ba5 2019-02-10 stsp fi
781 68ed9ba5 2019-02-10 stsp
782 68ed9ba5 2019-02-10 stsp ls -l $testroot/wt/xfile | grep -q '^-rwx'
783 49c543a6 2022-03-31 naddy ret=$?
784 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
785 68ed9ba5 2019-02-10 stsp echo "file is not executable" >&2
786 68ed9ba5 2019-02-10 stsp ls -l $testroot/wt/xfile >&2
787 68ed9ba5 2019-02-10 stsp fi
788 6353ad76 2019-02-08 stsp test_done "$testroot" "$ret"
789 6353ad76 2019-02-08 stsp }
790 ba8a0d4d 2019-02-10 stsp
791 f6cae3ed 2020-09-13 naddy test_update_clears_xbit() {
792 ba8a0d4d 2019-02-10 stsp local testroot=`test_init update_clears_xbit 1`
793 ba8a0d4d 2019-02-10 stsp
794 ba8a0d4d 2019-02-10 stsp touch $testroot/repo/xfile
795 ba8a0d4d 2019-02-10 stsp chmod +x $testroot/repo/xfile
796 ba8a0d4d 2019-02-10 stsp (cd $testroot/repo && git add .)
797 ba8a0d4d 2019-02-10 stsp git_commit $testroot/repo -m "adding executable file"
798 6353ad76 2019-02-08 stsp
799 ba8a0d4d 2019-02-10 stsp got checkout $testroot/repo $testroot/wt > $testroot/stdout
800 49c543a6 2022-03-31 naddy ret=$?
801 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
802 ba8a0d4d 2019-02-10 stsp test_done "$testroot" "$ret"
803 ba8a0d4d 2019-02-10 stsp return 1
804 ba8a0d4d 2019-02-10 stsp fi
805 ba8a0d4d 2019-02-10 stsp
806 ba8a0d4d 2019-02-10 stsp ls -l $testroot/wt/xfile | grep -q '^-rwx'
807 49c543a6 2022-03-31 naddy ret=$?
808 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
809 ba8a0d4d 2019-02-10 stsp echo "file is not executable" >&2
810 ba8a0d4d 2019-02-10 stsp ls -l $testroot/wt/xfile >&2
811 ba8a0d4d 2019-02-10 stsp test_done "$testroot" "$ret"
812 ba8a0d4d 2019-02-10 stsp return 1
813 ba8a0d4d 2019-02-10 stsp fi
814 ba8a0d4d 2019-02-10 stsp
815 ba8a0d4d 2019-02-10 stsp # XXX git seems to require a file edit when flipping the x bit?
816 ba8a0d4d 2019-02-10 stsp echo foo > $testroot/repo/xfile
817 ba8a0d4d 2019-02-10 stsp chmod -x $testroot/repo/xfile
818 ba8a0d4d 2019-02-10 stsp git_commit $testroot/repo -m "not an executable file anymore"
819 ba8a0d4d 2019-02-10 stsp
820 ba8a0d4d 2019-02-10 stsp echo "U xfile" > $testroot/stdout.expected
821 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
822 ba8a0d4d 2019-02-10 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
823 ba8a0d4d 2019-02-10 stsp echo >> $testroot/stdout.expected
824 ba8a0d4d 2019-02-10 stsp
825 ba8a0d4d 2019-02-10 stsp (cd $testroot/wt && got update > $testroot/stdout)
826 49c543a6 2022-03-31 naddy ret=$?
827 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
828 ba8a0d4d 2019-02-10 stsp test_done "$testroot" "$ret"
829 ba8a0d4d 2019-02-10 stsp return 1
830 ba8a0d4d 2019-02-10 stsp fi
831 ba8a0d4d 2019-02-10 stsp
832 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
833 49c543a6 2022-03-31 naddy ret=$?
834 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
835 ba8a0d4d 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
836 ba8a0d4d 2019-02-10 stsp test_done "$testroot" "$ret"
837 ba8a0d4d 2019-02-10 stsp return 1
838 ba8a0d4d 2019-02-10 stsp fi
839 ba8a0d4d 2019-02-10 stsp
840 ba8a0d4d 2019-02-10 stsp ls -l $testroot/wt/xfile | grep -q '^-rw-'
841 49c543a6 2022-03-31 naddy ret=$?
842 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
843 ba8a0d4d 2019-02-10 stsp echo "file is unexpectedly executable" >&2
844 ba8a0d4d 2019-02-10 stsp ls -l $testroot/wt/xfile >&2
845 ba8a0d4d 2019-02-10 stsp fi
846 ba8a0d4d 2019-02-10 stsp test_done "$testroot" "$ret"
847 ba8a0d4d 2019-02-10 stsp }
848 a378724f 2019-02-10 stsp
849 f6cae3ed 2020-09-13 naddy test_update_restores_missing_file() {
850 a378724f 2019-02-10 stsp local testroot=`test_init update_restores_missing_file`
851 a378724f 2019-02-10 stsp
852 a378724f 2019-02-10 stsp got checkout $testroot/repo $testroot/wt > /dev/null
853 49c543a6 2022-03-31 naddy ret=$?
854 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
855 a378724f 2019-02-10 stsp test_done "$testroot" "$ret"
856 a378724f 2019-02-10 stsp return 1
857 a378724f 2019-02-10 stsp fi
858 ba8a0d4d 2019-02-10 stsp
859 a378724f 2019-02-10 stsp rm $testroot/wt/alpha
860 a378724f 2019-02-10 stsp
861 a378724f 2019-02-10 stsp echo "! alpha" > $testroot/stdout.expected
862 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
863 1545c615 2019-02-10 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
864 1545c615 2019-02-10 stsp echo >> $testroot/stdout.expected
865 a378724f 2019-02-10 stsp (cd $testroot/wt && got update > $testroot/stdout)
866 a378724f 2019-02-10 stsp
867 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
868 49c543a6 2022-03-31 naddy ret=$?
869 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
870 a378724f 2019-02-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
871 a378724f 2019-02-10 stsp test_done "$testroot" "$ret"
872 a378724f 2019-02-10 stsp return 1
873 a378724f 2019-02-10 stsp fi
874 a378724f 2019-02-10 stsp
875 a378724f 2019-02-10 stsp echo "alpha" > $testroot/content.expected
876 a378724f 2019-02-10 stsp
877 a378724f 2019-02-10 stsp cat $testroot/wt/alpha > $testroot/content
878 1430b4e0 2019-03-27 stsp
879 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
880 49c543a6 2022-03-31 naddy ret=$?
881 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
882 1430b4e0 2019-03-27 stsp diff -u $testroot/content.expected $testroot/content
883 1430b4e0 2019-03-27 stsp fi
884 1430b4e0 2019-03-27 stsp test_done "$testroot" "$ret"
885 1430b4e0 2019-03-27 stsp }
886 1430b4e0 2019-03-27 stsp
887 f6cae3ed 2020-09-13 naddy test_update_conflict_wt_add_vs_repo_add() {
888 085d5bcf 2019-03-27 stsp local testroot=`test_init update_conflict_wt_add_vs_repo_add`
889 1430b4e0 2019-03-27 stsp
890 1430b4e0 2019-03-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
891 49c543a6 2022-03-31 naddy ret=$?
892 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
893 1430b4e0 2019-03-27 stsp test_done "$testroot" "$ret"
894 1430b4e0 2019-03-27 stsp return 1
895 1430b4e0 2019-03-27 stsp fi
896 1430b4e0 2019-03-27 stsp
897 1430b4e0 2019-03-27 stsp echo "new" > $testroot/repo/gamma/new
898 1430b4e0 2019-03-27 stsp (cd $testroot/repo && git add .)
899 1430b4e0 2019-03-27 stsp git_commit $testroot/repo -m "adding a new file"
900 1430b4e0 2019-03-27 stsp
901 1430b4e0 2019-03-27 stsp echo "also new" > $testroot/wt/gamma/new
902 1430b4e0 2019-03-27 stsp (cd $testroot/wt && got add gamma/new >/dev/null)
903 1430b4e0 2019-03-27 stsp
904 1430b4e0 2019-03-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
905 a378724f 2019-02-10 stsp
906 1430b4e0 2019-03-27 stsp echo "C gamma/new" > $testroot/stdout.expected
907 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
908 1430b4e0 2019-03-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
909 1430b4e0 2019-03-27 stsp echo >> $testroot/stdout.expected
910 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
911 9627c110 2020-04-18 stsp
912 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
913 49c543a6 2022-03-31 naddy ret=$?
914 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
915 1430b4e0 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
916 1430b4e0 2019-03-27 stsp test_done "$testroot" "$ret"
917 1430b4e0 2019-03-27 stsp return 1
918 1430b4e0 2019-03-27 stsp fi
919 1430b4e0 2019-03-27 stsp
920 f69721c3 2019-10-21 stsp echo -n "<<<<<<< merged change: commit " > $testroot/content.expected
921 1430b4e0 2019-03-27 stsp git_show_head $testroot/repo >> $testroot/content.expected
922 1430b4e0 2019-03-27 stsp echo >> $testroot/content.expected
923 1430b4e0 2019-03-27 stsp echo "new" >> $testroot/content.expected
924 1430b4e0 2019-03-27 stsp echo "=======" >> $testroot/content.expected
925 1430b4e0 2019-03-27 stsp echo "also new" >> $testroot/content.expected
926 f69721c3 2019-10-21 stsp echo '>>>>>>>' >> $testroot/content.expected
927 1430b4e0 2019-03-27 stsp
928 1430b4e0 2019-03-27 stsp cat $testroot/wt/gamma/new > $testroot/content
929 1430b4e0 2019-03-27 stsp
930 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
931 49c543a6 2022-03-31 naddy ret=$?
932 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
933 a378724f 2019-02-10 stsp diff -u $testroot/content.expected $testroot/content
934 3165301c 2019-03-27 stsp test_done "$testroot" "$ret"
935 3165301c 2019-03-27 stsp return 1
936 3165301c 2019-03-27 stsp fi
937 3165301c 2019-03-27 stsp
938 3165301c 2019-03-27 stsp # resolve the conflict
939 3165301c 2019-03-27 stsp echo "new and also new" > $testroot/wt/gamma/new
940 3165301c 2019-03-27 stsp echo 'M gamma/new' > $testroot/stdout.expected
941 3165301c 2019-03-27 stsp (cd $testroot/wt && got status > $testroot/stdout)
942 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
943 49c543a6 2022-03-31 naddy ret=$?
944 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
945 3165301c 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
946 a378724f 2019-02-10 stsp fi
947 a378724f 2019-02-10 stsp test_done "$testroot" "$ret"
948 a378724f 2019-02-10 stsp }
949 708d8e67 2019-03-27 stsp
950 f6cae3ed 2020-09-13 naddy test_update_conflict_wt_edit_vs_repo_rm() {
951 085d5bcf 2019-03-27 stsp local testroot=`test_init update_conflict_wt_edit_vs_repo_rm`
952 708d8e67 2019-03-27 stsp
953 708d8e67 2019-03-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
954 49c543a6 2022-03-31 naddy ret=$?
955 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
956 708d8e67 2019-03-27 stsp test_done "$testroot" "$ret"
957 708d8e67 2019-03-27 stsp return 1
958 708d8e67 2019-03-27 stsp fi
959 708d8e67 2019-03-27 stsp
960 708d8e67 2019-03-27 stsp (cd $testroot/repo && git rm -q beta)
961 708d8e67 2019-03-27 stsp git_commit $testroot/repo -m "removing a file"
962 708d8e67 2019-03-27 stsp
963 708d8e67 2019-03-27 stsp echo "modified beta" > $testroot/wt/beta
964 a378724f 2019-02-10 stsp
965 708d8e67 2019-03-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
966 708d8e67 2019-03-27 stsp
967 fc6346c4 2019-03-27 stsp echo "G beta" > $testroot/stdout.expected
968 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
969 708d8e67 2019-03-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
970 708d8e67 2019-03-27 stsp echo >> $testroot/stdout.expected
971 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
972 49c543a6 2022-03-31 naddy ret=$?
973 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
974 708d8e67 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
975 708d8e67 2019-03-27 stsp test_done "$testroot" "$ret"
976 708d8e67 2019-03-27 stsp return 1
977 708d8e67 2019-03-27 stsp fi
978 708d8e67 2019-03-27 stsp
979 708d8e67 2019-03-27 stsp echo "modified beta" > $testroot/content.expected
980 708d8e67 2019-03-27 stsp
981 708d8e67 2019-03-27 stsp cat $testroot/wt/beta > $testroot/content
982 708d8e67 2019-03-27 stsp
983 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
984 49c543a6 2022-03-31 naddy ret=$?
985 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
986 708d8e67 2019-03-27 stsp diff -u $testroot/content.expected $testroot/content
987 708d8e67 2019-03-27 stsp test_done "$testroot" "$ret"
988 708d8e67 2019-03-27 stsp return 1
989 708d8e67 2019-03-27 stsp fi
990 708d8e67 2019-03-27 stsp
991 fc6346c4 2019-03-27 stsp # beta is now an added file... we don't flag tree conflicts yet
992 fc6346c4 2019-03-27 stsp echo 'A beta' > $testroot/stdout.expected
993 13d9040b 2019-03-27 stsp (cd $testroot/wt && got status > $testroot/stdout)
994 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
995 49c543a6 2022-03-31 naddy ret=$?
996 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
997 13d9040b 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
998 13d9040b 2019-03-27 stsp fi
999 13d9040b 2019-03-27 stsp test_done "$testroot" "$ret"
1000 13d9040b 2019-03-27 stsp }
1001 13d9040b 2019-03-27 stsp
1002 f6cae3ed 2020-09-13 naddy test_update_conflict_wt_rm_vs_repo_edit() {
1003 13d9040b 2019-03-27 stsp local testroot=`test_init update_conflict_wt_rm_vs_repo_edit`
1004 13d9040b 2019-03-27 stsp
1005 13d9040b 2019-03-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1006 49c543a6 2022-03-31 naddy ret=$?
1007 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1008 13d9040b 2019-03-27 stsp test_done "$testroot" "$ret"
1009 13d9040b 2019-03-27 stsp return 1
1010 13d9040b 2019-03-27 stsp fi
1011 13d9040b 2019-03-27 stsp
1012 13d9040b 2019-03-27 stsp echo "modified beta" > $testroot/repo/beta
1013 13d9040b 2019-03-27 stsp git_commit $testroot/repo -m "modified a file"
1014 13d9040b 2019-03-27 stsp
1015 13d9040b 2019-03-27 stsp (cd $testroot/wt && got rm beta > /dev/null)
1016 13d9040b 2019-03-27 stsp
1017 13d9040b 2019-03-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
1018 13d9040b 2019-03-27 stsp
1019 13d9040b 2019-03-27 stsp echo "G beta" > $testroot/stdout.expected
1020 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1021 13d9040b 2019-03-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1022 13d9040b 2019-03-27 stsp echo >> $testroot/stdout.expected
1023 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1024 49c543a6 2022-03-31 naddy ret=$?
1025 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1026 13d9040b 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1027 13d9040b 2019-03-27 stsp test_done "$testroot" "$ret"
1028 13d9040b 2019-03-27 stsp return 1
1029 13d9040b 2019-03-27 stsp fi
1030 13d9040b 2019-03-27 stsp
1031 13d9040b 2019-03-27 stsp # beta remains a deleted file... we don't flag tree conflicts yet
1032 13d9040b 2019-03-27 stsp echo 'D beta' > $testroot/stdout.expected
1033 708d8e67 2019-03-27 stsp (cd $testroot/wt && got status > $testroot/stdout)
1034 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1035 49c543a6 2022-03-31 naddy ret=$?
1036 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1037 708d8e67 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1038 13d9040b 2019-03-27 stsp test_done "$testroot" "$ret"
1039 13d9040b 2019-03-27 stsp return 1
1040 708d8e67 2019-03-27 stsp fi
1041 13d9040b 2019-03-27 stsp
1042 13d9040b 2019-03-27 stsp # 'got diff' should show post-update contents of beta being deleted
1043 13d9040b 2019-03-27 stsp local head_rev=`git_show_head $testroot/repo`
1044 8469d821 2022-06-25 stsp echo "diff $testroot/wt" > $testroot/stdout.expected
1045 8469d821 2022-06-25 stsp echo "commit - $head_rev" >> $testroot/stdout.expected
1046 8469d821 2022-06-25 stsp echo "path + $testroot/wt" >> $testroot/stdout.expected
1047 13d9040b 2019-03-27 stsp echo -n 'blob - ' >> $testroot/stdout.expected
1048 13d9040b 2019-03-27 stsp got tree -r $testroot/repo -i | grep 'beta$' | cut -d' ' -f 1 \
1049 13d9040b 2019-03-27 stsp >> $testroot/stdout.expected
1050 13d9040b 2019-03-27 stsp echo 'file + /dev/null' >> $testroot/stdout.expected
1051 13d9040b 2019-03-27 stsp echo '--- beta' >> $testroot/stdout.expected
1052 1cb46f00 2020-11-21 stsp echo '+++ /dev/null' >> $testroot/stdout.expected
1053 13d9040b 2019-03-27 stsp echo '@@ -1 +0,0 @@' >> $testroot/stdout.expected
1054 13d9040b 2019-03-27 stsp echo '-modified beta' >> $testroot/stdout.expected
1055 13d9040b 2019-03-27 stsp
1056 13d9040b 2019-03-27 stsp (cd $testroot/wt && got diff > $testroot/stdout)
1057 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1058 49c543a6 2022-03-31 naddy ret=$?
1059 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1060 13d9040b 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1061 13d9040b 2019-03-27 stsp fi
1062 708d8e67 2019-03-27 stsp test_done "$testroot" "$ret"
1063 66b11bf5 2019-03-27 stsp }
1064 66b11bf5 2019-03-27 stsp
1065 f6cae3ed 2020-09-13 naddy test_update_conflict_wt_rm_vs_repo_rm() {
1066 66b11bf5 2019-03-27 stsp local testroot=`test_init update_conflict_wt_rm_vs_repo_rm`
1067 66b11bf5 2019-03-27 stsp
1068 66b11bf5 2019-03-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1069 49c543a6 2022-03-31 naddy ret=$?
1070 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1071 66b11bf5 2019-03-27 stsp test_done "$testroot" "$ret"
1072 66b11bf5 2019-03-27 stsp return 1
1073 66b11bf5 2019-03-27 stsp fi
1074 66b11bf5 2019-03-27 stsp
1075 66b11bf5 2019-03-27 stsp (cd $testroot/repo && git rm -q beta)
1076 66b11bf5 2019-03-27 stsp git_commit $testroot/repo -m "removing a file"
1077 66b11bf5 2019-03-27 stsp
1078 66b11bf5 2019-03-27 stsp (cd $testroot/wt && got rm beta > /dev/null)
1079 66b11bf5 2019-03-27 stsp
1080 66b11bf5 2019-03-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
1081 66b11bf5 2019-03-27 stsp
1082 66b11bf5 2019-03-27 stsp echo "D beta" > $testroot/stdout.expected
1083 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1084 66b11bf5 2019-03-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1085 66b11bf5 2019-03-27 stsp echo >> $testroot/stdout.expected
1086 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1087 49c543a6 2022-03-31 naddy ret=$?
1088 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1089 66b11bf5 2019-03-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1090 66b11bf5 2019-03-27 stsp test_done "$testroot" "$ret"
1091 66b11bf5 2019-03-27 stsp return 1
1092 66b11bf5 2019-03-27 stsp fi
1093 66b11bf5 2019-03-27 stsp
1094 66b11bf5 2019-03-27 stsp # beta is now gone... we don't flag tree conflicts yet
1095 2a06fe5f 2019-08-24 stsp echo "N beta" > $testroot/stdout.expected
1096 54817d72 2019-07-27 stsp echo -n > $testroot/stderr.expected
1097 54817d72 2019-07-27 stsp (cd $testroot/wt && got status beta > $testroot/stdout \
1098 54817d72 2019-07-27 stsp 2> $testroot/stderr)
1099 54817d72 2019-07-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1100 49c543a6 2022-03-31 naddy ret=$?
1101 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1102 54817d72 2019-07-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1103 54817d72 2019-07-27 stsp test_done "$testroot" "$ret"
1104 54817d72 2019-07-27 stsp return 1
1105 54817d72 2019-07-27 stsp fi
1106 8d301dd9 2019-05-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1107 49c543a6 2022-03-31 naddy ret=$?
1108 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1109 66b11bf5 2019-03-27 stsp diff -u $testroot/stderr.expected $testroot/stderr
1110 66b11bf5 2019-03-27 stsp test_done "$testroot" "$ret"
1111 66b11bf5 2019-03-27 stsp return 1
1112 66b11bf5 2019-03-27 stsp fi
1113 66b11bf5 2019-03-27 stsp
1114 66b11bf5 2019-03-27 stsp if [ -e $testroot/wt/beta ]; then
1115 66b11bf5 2019-03-27 stsp echo "removed file beta still exists on disk" >&2
1116 66b11bf5 2019-03-27 stsp test_done "$testroot" "1"
1117 66b11bf5 2019-03-27 stsp return 1
1118 66b11bf5 2019-03-27 stsp fi
1119 66b11bf5 2019-03-27 stsp
1120 66b11bf5 2019-03-27 stsp test_done "$testroot" "0"
1121 708d8e67 2019-03-27 stsp }
1122 c4cdcb68 2019-04-03 stsp
1123 f6cae3ed 2020-09-13 naddy test_update_partial() {
1124 c4cdcb68 2019-04-03 stsp local testroot=`test_init update_partial`
1125 c4cdcb68 2019-04-03 stsp
1126 c4cdcb68 2019-04-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1127 49c543a6 2022-03-31 naddy ret=$?
1128 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1129 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1130 c4cdcb68 2019-04-03 stsp return 1
1131 c4cdcb68 2019-04-03 stsp fi
1132 708d8e67 2019-03-27 stsp
1133 c4cdcb68 2019-04-03 stsp echo "modified alpha" > $testroot/repo/alpha
1134 c4cdcb68 2019-04-03 stsp echo "modified beta" > $testroot/repo/beta
1135 c4cdcb68 2019-04-03 stsp echo "modified epsilon/zeta" > $testroot/repo/epsilon/zeta
1136 c4cdcb68 2019-04-03 stsp git_commit $testroot/repo -m "modified two files"
1137 c4cdcb68 2019-04-03 stsp
1138 f2ea84fa 2019-07-27 stsp echo "U alpha" > $testroot/stdout.expected
1139 f2ea84fa 2019-07-27 stsp echo "U beta" >> $testroot/stdout.expected
1140 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1141 f2ea84fa 2019-07-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1142 f2ea84fa 2019-07-27 stsp echo >> $testroot/stdout.expected
1143 c4cdcb68 2019-04-03 stsp
1144 f2ea84fa 2019-07-27 stsp (cd $testroot/wt && got update alpha beta > $testroot/stdout)
1145 c4cdcb68 2019-04-03 stsp
1146 f2ea84fa 2019-07-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1147 49c543a6 2022-03-31 naddy ret=$?
1148 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1149 f2ea84fa 2019-07-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1150 f2ea84fa 2019-07-27 stsp test_done "$testroot" "$ret"
1151 f2ea84fa 2019-07-27 stsp return 1
1152 f2ea84fa 2019-07-27 stsp fi
1153 c4cdcb68 2019-04-03 stsp
1154 f2ea84fa 2019-07-27 stsp echo "modified alpha" > $testroot/content.expected
1155 f2ea84fa 2019-07-27 stsp echo "modified beta" >> $testroot/content.expected
1156 f2ea84fa 2019-07-27 stsp
1157 f2ea84fa 2019-07-27 stsp cat $testroot/wt/alpha $testroot/wt/beta > $testroot/content
1158 f2ea84fa 2019-07-27 stsp cmp -s $testroot/content.expected $testroot/content
1159 49c543a6 2022-03-31 naddy ret=$?
1160 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1161 f2ea84fa 2019-07-27 stsp diff -u $testroot/content.expected $testroot/content
1162 f2ea84fa 2019-07-27 stsp test_done "$testroot" "$ret"
1163 f2ea84fa 2019-07-27 stsp return 1
1164 f2ea84fa 2019-07-27 stsp fi
1165 e4d984c2 2019-05-22 stsp
1166 e4d984c2 2019-05-22 stsp echo "U epsilon/zeta" > $testroot/stdout.expected
1167 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1168 e4d984c2 2019-05-22 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1169 e4d984c2 2019-05-22 stsp echo >> $testroot/stdout.expected
1170 e4d984c2 2019-05-22 stsp
1171 e4d984c2 2019-05-22 stsp (cd $testroot/wt && got update epsilon > $testroot/stdout)
1172 e4d984c2 2019-05-22 stsp
1173 e4d984c2 2019-05-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1174 49c543a6 2022-03-31 naddy ret=$?
1175 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1176 e4d984c2 2019-05-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1177 e4d984c2 2019-05-22 stsp test_done "$testroot" "$ret"
1178 e4d984c2 2019-05-22 stsp return 1
1179 e4d984c2 2019-05-22 stsp fi
1180 e4d984c2 2019-05-22 stsp
1181 e4d984c2 2019-05-22 stsp echo "modified epsilon/zeta" > $testroot/content.expected
1182 e4d984c2 2019-05-22 stsp cat $testroot/wt/epsilon/zeta > $testroot/content
1183 e4d984c2 2019-05-22 stsp
1184 e4d984c2 2019-05-22 stsp cmp -s $testroot/content.expected $testroot/content
1185 49c543a6 2022-03-31 naddy ret=$?
1186 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1187 e4d984c2 2019-05-22 stsp diff -u $testroot/content.expected $testroot/content
1188 e4d984c2 2019-05-22 stsp test_done "$testroot" "$ret"
1189 e4d984c2 2019-05-22 stsp return 1
1190 e4d984c2 2019-05-22 stsp fi
1191 e4d984c2 2019-05-22 stsp
1192 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1193 c4cdcb68 2019-04-03 stsp }
1194 c4cdcb68 2019-04-03 stsp
1195 f6cae3ed 2020-09-13 naddy test_update_partial_add() {
1196 c4cdcb68 2019-04-03 stsp local testroot=`test_init update_partial_add`
1197 c4cdcb68 2019-04-03 stsp
1198 c4cdcb68 2019-04-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1199 49c543a6 2022-03-31 naddy ret=$?
1200 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1201 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1202 c4cdcb68 2019-04-03 stsp return 1
1203 c4cdcb68 2019-04-03 stsp fi
1204 c4cdcb68 2019-04-03 stsp
1205 c4cdcb68 2019-04-03 stsp echo "new" > $testroot/repo/new
1206 c4cdcb68 2019-04-03 stsp echo "epsilon/new2" > $testroot/repo/epsilon/new2
1207 c4cdcb68 2019-04-03 stsp (cd $testroot/repo && git add .)
1208 c4cdcb68 2019-04-03 stsp git_commit $testroot/repo -m "added two files"
1209 c4cdcb68 2019-04-03 stsp
1210 10a623df 2021-10-11 stsp echo "A epsilon/new2" > $testroot/stdout.expected
1211 10a623df 2021-10-11 stsp echo "A new" >> $testroot/stdout.expected
1212 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1213 f2ea84fa 2019-07-27 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1214 f2ea84fa 2019-07-27 stsp echo >> $testroot/stdout.expected
1215 c4cdcb68 2019-04-03 stsp
1216 f2ea84fa 2019-07-27 stsp (cd $testroot/wt && got update new epsilon/new2 > $testroot/stdout)
1217 c4cdcb68 2019-04-03 stsp
1218 f2ea84fa 2019-07-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1219 49c543a6 2022-03-31 naddy ret=$?
1220 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1221 f2ea84fa 2019-07-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
1222 f2ea84fa 2019-07-27 stsp test_done "$testroot" "$ret"
1223 f2ea84fa 2019-07-27 stsp return 1
1224 f2ea84fa 2019-07-27 stsp fi
1225 c4cdcb68 2019-04-03 stsp
1226 f2ea84fa 2019-07-27 stsp echo "new" > $testroot/content.expected
1227 f2ea84fa 2019-07-27 stsp echo "epsilon/new2" >> $testroot/content.expected
1228 c4cdcb68 2019-04-03 stsp
1229 f2ea84fa 2019-07-27 stsp cat $testroot/wt/new $testroot/wt/epsilon/new2 > $testroot/content
1230 f2ea84fa 2019-07-27 stsp
1231 f2ea84fa 2019-07-27 stsp cmp -s $testroot/content.expected $testroot/content
1232 49c543a6 2022-03-31 naddy ret=$?
1233 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1234 f2ea84fa 2019-07-27 stsp diff -u $testroot/content.expected $testroot/content
1235 f2ea84fa 2019-07-27 stsp fi
1236 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1237 c4cdcb68 2019-04-03 stsp }
1238 c4cdcb68 2019-04-03 stsp
1239 f6cae3ed 2020-09-13 naddy test_update_partial_rm() {
1240 c4cdcb68 2019-04-03 stsp local testroot=`test_init update_partial_rm`
1241 c4cdcb68 2019-04-03 stsp
1242 c4cdcb68 2019-04-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1243 49c543a6 2022-03-31 naddy ret=$?
1244 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1245 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1246 c4cdcb68 2019-04-03 stsp return 1
1247 c4cdcb68 2019-04-03 stsp fi
1248 c4cdcb68 2019-04-03 stsp
1249 f2ea84fa 2019-07-27 stsp (cd $testroot/repo && git rm -q alpha epsilon/zeta)
1250 c4cdcb68 2019-04-03 stsp git_commit $testroot/repo -m "removed two files"
1251 c4cdcb68 2019-04-03 stsp
1252 b66cd6f3 2020-07-31 stsp echo "got: /alpha: no such entry found in tree" \
1253 f2ea84fa 2019-07-27 stsp > $testroot/stderr.expected
1254 f2ea84fa 2019-07-27 stsp
1255 f2ea84fa 2019-07-27 stsp (cd $testroot/wt && got update alpha epsilon/zeta 2> $testroot/stderr)
1256 49c543a6 2022-03-31 naddy ret=$?
1257 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
1258 f2ea84fa 2019-07-27 stsp echo "update succeeded unexpectedly" >&2
1259 f2ea84fa 2019-07-27 stsp test_done "$testroot" "1"
1260 f2ea84fa 2019-07-27 stsp return 1
1261 f2ea84fa 2019-07-27 stsp fi
1262 c4cdcb68 2019-04-03 stsp
1263 f2ea84fa 2019-07-27 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1264 49c543a6 2022-03-31 naddy ret=$?
1265 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1266 f2ea84fa 2019-07-27 stsp diff -u $testroot/stderr.expected $testroot/stderr
1267 f2ea84fa 2019-07-27 stsp test_done "$testroot" "$ret"
1268 f2ea84fa 2019-07-27 stsp return 1
1269 f2ea84fa 2019-07-27 stsp fi
1270 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1271 c4cdcb68 2019-04-03 stsp }
1272 c4cdcb68 2019-04-03 stsp
1273 f6cae3ed 2020-09-13 naddy test_update_partial_dir() {
1274 c4cdcb68 2019-04-03 stsp local testroot=`test_init update_partial_dir`
1275 c4cdcb68 2019-04-03 stsp
1276 c4cdcb68 2019-04-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1277 49c543a6 2022-03-31 naddy ret=$?
1278 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1279 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1280 c4cdcb68 2019-04-03 stsp return 1
1281 c4cdcb68 2019-04-03 stsp fi
1282 c4cdcb68 2019-04-03 stsp
1283 c4cdcb68 2019-04-03 stsp echo "modified alpha" > $testroot/repo/alpha
1284 c4cdcb68 2019-04-03 stsp echo "modified beta" > $testroot/repo/beta
1285 c4cdcb68 2019-04-03 stsp echo "modified epsilon/zeta" > $testroot/repo/epsilon/zeta
1286 c4cdcb68 2019-04-03 stsp git_commit $testroot/repo -m "modified two files"
1287 c4cdcb68 2019-04-03 stsp
1288 c4cdcb68 2019-04-03 stsp echo "U epsilon/zeta" > $testroot/stdout.expected
1289 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1290 c4cdcb68 2019-04-03 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1291 c4cdcb68 2019-04-03 stsp echo >> $testroot/stdout.expected
1292 c4cdcb68 2019-04-03 stsp
1293 c4cdcb68 2019-04-03 stsp (cd $testroot/wt && got update epsilon > $testroot/stdout)
1294 c4cdcb68 2019-04-03 stsp
1295 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1296 49c543a6 2022-03-31 naddy ret=$?
1297 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1298 c4cdcb68 2019-04-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
1299 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1300 c4cdcb68 2019-04-03 stsp return 1
1301 c4cdcb68 2019-04-03 stsp fi
1302 c4cdcb68 2019-04-03 stsp
1303 c4cdcb68 2019-04-03 stsp echo "modified epsilon/zeta" > $testroot/content.expected
1304 c4cdcb68 2019-04-03 stsp cat $testroot/wt/epsilon/zeta > $testroot/content
1305 c4cdcb68 2019-04-03 stsp
1306 8d301dd9 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
1307 49c543a6 2022-03-31 naddy ret=$?
1308 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1309 c4cdcb68 2019-04-03 stsp diff -u $testroot/content.expected $testroot/content
1310 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1311 c4cdcb68 2019-04-03 stsp return 1
1312 c4cdcb68 2019-04-03 stsp fi
1313 c4cdcb68 2019-04-03 stsp test_done "$testroot" "$ret"
1314 d5bea539 2019-05-13 stsp
1315 d5bea539 2019-05-13 stsp }
1316 d5bea539 2019-05-13 stsp
1317 f6cae3ed 2020-09-13 naddy test_update_moved_branch_ref() {
1318 d5bea539 2019-05-13 stsp local testroot=`test_init update_moved_branch_ref`
1319 d5bea539 2019-05-13 stsp
1320 d5bea539 2019-05-13 stsp git clone -q --mirror $testroot/repo $testroot/repo2
1321 d5bea539 2019-05-13 stsp
1322 d5bea539 2019-05-13 stsp echo "modified alpha with git" > $testroot/repo/alpha
1323 d5bea539 2019-05-13 stsp git_commit $testroot/repo -m "modified alpha with git"
1324 d5bea539 2019-05-13 stsp
1325 d5bea539 2019-05-13 stsp got checkout $testroot/repo2 $testroot/wt > /dev/null
1326 49c543a6 2022-03-31 naddy ret=$?
1327 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1328 d5bea539 2019-05-13 stsp test_done "$testroot" "$ret"
1329 d5bea539 2019-05-13 stsp return 1
1330 d5bea539 2019-05-13 stsp fi
1331 d5bea539 2019-05-13 stsp
1332 d5bea539 2019-05-13 stsp echo "modified alpha with got" > $testroot/wt/alpha
1333 d5bea539 2019-05-13 stsp (cd $testroot/wt && got commit -m "modified alpha with got" > /dev/null)
1334 d5bea539 2019-05-13 stsp
1335 d5bea539 2019-05-13 stsp # + xxxxxxx...yyyyyyy master -> master (forced update)
1336 d5bea539 2019-05-13 stsp (cd $testroot/repo2 && git fetch -q --all)
1337 c4cdcb68 2019-04-03 stsp
1338 d5bea539 2019-05-13 stsp echo -n > $testroot/stdout.expected
1339 a1fb16d8 2019-05-24 stsp echo -n "got: work tree's head reference now points to a different " \
1340 a367ff0f 2019-05-14 stsp > $testroot/stderr.expected
1341 a1fb16d8 2019-05-24 stsp echo "branch; new head reference and/or update -b required" \
1342 a1fb16d8 2019-05-24 stsp >> $testroot/stderr.expected
1343 d5bea539 2019-05-13 stsp
1344 d5bea539 2019-05-13 stsp (cd $testroot/wt && got update > $testroot/stdout 2> $testroot/stderr)
1345 d5bea539 2019-05-13 stsp
1346 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1347 49c543a6 2022-03-31 naddy ret=$?
1348 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1349 d5bea539 2019-05-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
1350 d5bea539 2019-05-13 stsp test_done "$testroot" "$ret"
1351 d5bea539 2019-05-13 stsp return 1
1352 d5bea539 2019-05-13 stsp fi
1353 d5bea539 2019-05-13 stsp
1354 8d301dd9 2019-05-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1355 49c543a6 2022-03-31 naddy ret=$?
1356 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1357 d5bea539 2019-05-13 stsp diff -u $testroot/stderr.expected $testroot/stderr
1358 d5bea539 2019-05-13 stsp fi
1359 d5bea539 2019-05-13 stsp test_done "$testroot" "$ret"
1360 c4cdcb68 2019-04-03 stsp }
1361 024e9686 2019-05-14 stsp
1362 f6cae3ed 2020-09-13 naddy test_update_to_another_branch() {
1363 024e9686 2019-05-14 stsp local testroot=`test_init update_to_another_branch`
1364 f69721c3 2019-10-21 stsp local base_commit=`git_show_head $testroot/repo`
1365 024e9686 2019-05-14 stsp
1366 024e9686 2019-05-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1367 49c543a6 2022-03-31 naddy ret=$?
1368 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1369 024e9686 2019-05-14 stsp test_done "$testroot" "$ret"
1370 024e9686 2019-05-14 stsp return 1
1371 024e9686 2019-05-14 stsp fi
1372 024e9686 2019-05-14 stsp
1373 024e9686 2019-05-14 stsp echo 'refs/heads/master'> $testroot/head-ref.expected
1374 024e9686 2019-05-14 stsp cmp -s $testroot/head-ref.expected $testroot/wt/.got/head-ref
1375 49c543a6 2022-03-31 naddy ret=$?
1376 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1377 024e9686 2019-05-14 stsp diff -u $testroot/head-ref.expected $testroot/wt/.got/head-ref
1378 024e9686 2019-05-14 stsp test_done "$testroot" "$ret"
1379 024e9686 2019-05-14 stsp return 1
1380 024e9686 2019-05-14 stsp fi
1381 024e9686 2019-05-14 stsp
1382 024e9686 2019-05-14 stsp (cd $testroot/repo && git checkout -q -b newbranch)
1383 024e9686 2019-05-14 stsp echo "modified alpha on new branch" > $testroot/repo/alpha
1384 024e9686 2019-05-14 stsp git_commit $testroot/repo -m "modified alpha on new branch"
1385 024e9686 2019-05-14 stsp
1386 024e9686 2019-05-14 stsp echo "modified alpha in work tree" > $testroot/wt/alpha
1387 024e9686 2019-05-14 stsp
1388 d969fa15 2019-05-22 stsp echo "Switching work tree from refs/heads/master to refs/heads/newbranch" > $testroot/stdout.expected
1389 d969fa15 2019-05-22 stsp echo "C alpha" >> $testroot/stdout.expected
1390 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/newbranch: " >> $testroot/stdout.expected
1391 024e9686 2019-05-14 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1392 024e9686 2019-05-14 stsp echo >> $testroot/stdout.expected
1393 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
1394 024e9686 2019-05-14 stsp
1395 024e9686 2019-05-14 stsp (cd $testroot/wt && got update -b newbranch > $testroot/stdout)
1396 024e9686 2019-05-14 stsp
1397 024e9686 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1398 49c543a6 2022-03-31 naddy ret=$?
1399 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1400 024e9686 2019-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1401 024e9686 2019-05-14 stsp test_done "$testroot" "$ret"
1402 024e9686 2019-05-14 stsp return 1
1403 024e9686 2019-05-14 stsp fi
1404 c4cdcb68 2019-04-03 stsp
1405 f69721c3 2019-10-21 stsp echo -n "<<<<<<< merged change: commit " > $testroot/content.expected
1406 024e9686 2019-05-14 stsp git_show_head $testroot/repo >> $testroot/content.expected
1407 024e9686 2019-05-14 stsp echo >> $testroot/content.expected
1408 024e9686 2019-05-14 stsp echo "modified alpha on new branch" >> $testroot/content.expected
1409 f69721c3 2019-10-21 stsp echo "||||||| 3-way merge base: commit $base_commit" \
1410 f69721c3 2019-10-21 stsp >> $testroot/content.expected
1411 d136cfcb 2019-10-12 stsp echo "alpha" >> $testroot/content.expected
1412 024e9686 2019-05-14 stsp echo "=======" >> $testroot/content.expected
1413 024e9686 2019-05-14 stsp echo "modified alpha in work tree" >> $testroot/content.expected
1414 f69721c3 2019-10-21 stsp echo '>>>>>>>' >> $testroot/content.expected
1415 d5bea539 2019-05-13 stsp
1416 024e9686 2019-05-14 stsp cat $testroot/wt/alpha > $testroot/content
1417 024e9686 2019-05-14 stsp
1418 024e9686 2019-05-14 stsp cmp -s $testroot/content.expected $testroot/content
1419 49c543a6 2022-03-31 naddy ret=$?
1420 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1421 024e9686 2019-05-14 stsp diff -u $testroot/content.expected $testroot/content
1422 024e9686 2019-05-14 stsp test_done "$testroot" "$ret"
1423 024e9686 2019-05-14 stsp return 1
1424 024e9686 2019-05-14 stsp fi
1425 024e9686 2019-05-14 stsp
1426 024e9686 2019-05-14 stsp echo 'refs/heads/newbranch'> $testroot/head-ref.expected
1427 024e9686 2019-05-14 stsp cmp -s $testroot/head-ref.expected $testroot/wt/.got/head-ref
1428 49c543a6 2022-03-31 naddy ret=$?
1429 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1430 024e9686 2019-05-14 stsp diff -u $testroot/head-ref.expected $testroot/wt/.got/head-ref
1431 a367ff0f 2019-05-14 stsp test_done "$testroot" "$ret"
1432 a367ff0f 2019-05-14 stsp return 1
1433 a367ff0f 2019-05-14 stsp fi
1434 a367ff0f 2019-05-14 stsp
1435 a367ff0f 2019-05-14 stsp test_done "$testroot" "$ret"
1436 a367ff0f 2019-05-14 stsp }
1437 a367ff0f 2019-05-14 stsp
1438 f6cae3ed 2020-09-13 naddy test_update_to_commit_on_wrong_branch() {
1439 a367ff0f 2019-05-14 stsp local testroot=`test_init update_to_commit_on_wrong_branch`
1440 a367ff0f 2019-05-14 stsp
1441 a367ff0f 2019-05-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1442 49c543a6 2022-03-31 naddy ret=$?
1443 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1444 a367ff0f 2019-05-14 stsp test_done "$testroot" "$ret"
1445 a367ff0f 2019-05-14 stsp return 1
1446 a367ff0f 2019-05-14 stsp fi
1447 a367ff0f 2019-05-14 stsp
1448 a367ff0f 2019-05-14 stsp (cd $testroot/repo && git checkout -q -b newbranch)
1449 a367ff0f 2019-05-14 stsp echo "modified alpha on new branch" > $testroot/repo/alpha
1450 a367ff0f 2019-05-14 stsp git_commit $testroot/repo -m "modified alpha on new branch"
1451 a367ff0f 2019-05-14 stsp
1452 a367ff0f 2019-05-14 stsp echo -n "" > $testroot/stdout.expected
1453 a367ff0f 2019-05-14 stsp echo "got: target commit is on a different branch" \
1454 a367ff0f 2019-05-14 stsp > $testroot/stderr.expected
1455 a367ff0f 2019-05-14 stsp
1456 a367ff0f 2019-05-14 stsp local head_rev=`git_show_head $testroot/repo`
1457 a367ff0f 2019-05-14 stsp (cd $testroot/wt && got update -c $head_rev > $testroot/stdout \
1458 a367ff0f 2019-05-14 stsp 2> $testroot/stderr)
1459 a367ff0f 2019-05-14 stsp
1460 a367ff0f 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1461 49c543a6 2022-03-31 naddy ret=$?
1462 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1463 a367ff0f 2019-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1464 024e9686 2019-05-14 stsp test_done "$testroot" "$ret"
1465 024e9686 2019-05-14 stsp return 1
1466 024e9686 2019-05-14 stsp fi
1467 024e9686 2019-05-14 stsp
1468 a367ff0f 2019-05-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1469 49c543a6 2022-03-31 naddy ret=$?
1470 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1471 a367ff0f 2019-05-14 stsp diff -u $testroot/stderr.expected $testroot/stderr
1472 a367ff0f 2019-05-14 stsp test_done "$testroot" "$ret"
1473 a367ff0f 2019-05-14 stsp return 1
1474 a367ff0f 2019-05-14 stsp fi
1475 a367ff0f 2019-05-14 stsp
1476 024e9686 2019-05-14 stsp test_done "$testroot" "$ret"
1477 024e9686 2019-05-14 stsp }
1478 c932eeeb 2019-05-22 stsp
1479 f6cae3ed 2020-09-13 naddy test_update_bumps_base_commit_id() {
1480 a5e55564 2019-06-10 stsp local testroot=`test_init update_bumps_base_commit_id`
1481 c932eeeb 2019-05-22 stsp
1482 1a36436d 2019-06-10 stsp echo "psi" > $testroot/repo/epsilon/psi
1483 1a36436d 2019-06-10 stsp (cd $testroot/repo && git add .)
1484 1a36436d 2019-06-10 stsp git_commit $testroot/repo -m "adding another file"
1485 1a36436d 2019-06-10 stsp
1486 c932eeeb 2019-05-22 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1487 49c543a6 2022-03-31 naddy ret=$?
1488 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1489 c932eeeb 2019-05-22 stsp test_done "$testroot" "$ret"
1490 c932eeeb 2019-05-22 stsp return 1
1491 c932eeeb 2019-05-22 stsp fi
1492 024e9686 2019-05-14 stsp
1493 1a36436d 2019-06-10 stsp echo "modified psi" > $testroot/wt/epsilon/psi
1494 1a36436d 2019-06-10 stsp (cd $testroot/wt && got commit -m "changed psi" > $testroot/stdout)
1495 c932eeeb 2019-05-22 stsp
1496 c932eeeb 2019-05-22 stsp local head_rev=`git_show_head $testroot/repo`
1497 1a36436d 2019-06-10 stsp echo "M epsilon/psi" > $testroot/stdout.expected
1498 a7648d7a 2019-06-02 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
1499 c932eeeb 2019-05-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1500 49c543a6 2022-03-31 naddy ret=$?
1501 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1502 c932eeeb 2019-05-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1503 c932eeeb 2019-05-22 stsp test_done "$testroot" "$ret"
1504 c932eeeb 2019-05-22 stsp return 1
1505 c932eeeb 2019-05-22 stsp fi
1506 9bead371 2019-07-28 stsp
1507 305993b9 2019-07-28 stsp echo "changed zeta with git" > $testroot/repo/epsilon/zeta
1508 9bead371 2019-07-28 stsp (cd $testroot/repo && git add .)
1509 9bead371 2019-07-28 stsp git_commit $testroot/repo -m "changing zeta with git"
1510 c932eeeb 2019-05-22 stsp
1511 1a36436d 2019-06-10 stsp echo "modified zeta" > $testroot/wt/epsilon/zeta
1512 1a36436d 2019-06-10 stsp (cd $testroot/wt && got commit -m "changed zeta" > $testroot/stdout \
1513 c932eeeb 2019-05-22 stsp 2> $testroot/stderr)
1514 c932eeeb 2019-05-22 stsp
1515 c932eeeb 2019-05-22 stsp echo -n "" > $testroot/stdout.expected
1516 c932eeeb 2019-05-22 stsp echo "got: work tree must be updated before these changes can be committed" > $testroot/stderr.expected
1517 c932eeeb 2019-05-22 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1518 49c543a6 2022-03-31 naddy ret=$?
1519 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1520 c932eeeb 2019-05-22 stsp diff -u $testroot/stderr.expected $testroot/stderr
1521 c932eeeb 2019-05-22 stsp test_done "$testroot" "$ret"
1522 c932eeeb 2019-05-22 stsp return 1
1523 c932eeeb 2019-05-22 stsp fi
1524 c932eeeb 2019-05-22 stsp
1525 c932eeeb 2019-05-22 stsp (cd $testroot/wt && got update > $testroot/stdout)
1526 c932eeeb 2019-05-22 stsp
1527 9bead371 2019-07-28 stsp echo "U epsilon/psi" > $testroot/stdout.expected
1528 9bead371 2019-07-28 stsp echo "C epsilon/zeta" >> $testroot/stdout.expected
1529 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1530 a484d721 2019-06-10 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1531 a484d721 2019-06-10 stsp echo >> $testroot/stdout.expected
1532 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
1533 9627c110 2020-04-18 stsp
1534 c932eeeb 2019-05-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1535 49c543a6 2022-03-31 naddy ret=$?
1536 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1537 c932eeeb 2019-05-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1538 c932eeeb 2019-05-22 stsp test_done "$testroot" "$ret"
1539 c932eeeb 2019-05-22 stsp return 1
1540 c932eeeb 2019-05-22 stsp fi
1541 c932eeeb 2019-05-22 stsp
1542 9bead371 2019-07-28 stsp # resolve conflict
1543 9bead371 2019-07-28 stsp echo "modified zeta with got and git" > $testroot/wt/epsilon/zeta
1544 9bead371 2019-07-28 stsp
1545 1a36436d 2019-06-10 stsp (cd $testroot/wt && got commit -m "changed zeta" > $testroot/stdout)
1546 c932eeeb 2019-05-22 stsp
1547 c932eeeb 2019-05-22 stsp local head_rev=`git_show_head $testroot/repo`
1548 1a36436d 2019-06-10 stsp echo "M epsilon/zeta" > $testroot/stdout.expected
1549 a7648d7a 2019-06-02 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
1550 303e2782 2019-08-09 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1551 49c543a6 2022-03-31 naddy ret=$?
1552 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1553 303e2782 2019-08-09 stsp diff -u $testroot/stdout.expected $testroot/stdout
1554 303e2782 2019-08-09 stsp test_done "$testroot" "$ret"
1555 303e2782 2019-08-09 stsp return 1
1556 303e2782 2019-08-09 stsp fi
1557 303e2782 2019-08-09 stsp
1558 303e2782 2019-08-09 stsp test_done "$testroot" "$ret"
1559 303e2782 2019-08-09 stsp }
1560 303e2782 2019-08-09 stsp
1561 f6cae3ed 2020-09-13 naddy test_update_tag() {
1562 303e2782 2019-08-09 stsp local testroot=`test_init update_tag`
1563 303e2782 2019-08-09 stsp local tag="1.0.0"
1564 303e2782 2019-08-09 stsp
1565 303e2782 2019-08-09 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1566 49c543a6 2022-03-31 naddy ret=$?
1567 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1568 303e2782 2019-08-09 stsp test_done "$testroot" "$ret"
1569 303e2782 2019-08-09 stsp return 1
1570 303e2782 2019-08-09 stsp fi
1571 303e2782 2019-08-09 stsp
1572 303e2782 2019-08-09 stsp echo "modified alpha" > $testroot/repo/alpha
1573 303e2782 2019-08-09 stsp git_commit $testroot/repo -m "modified alpha"
1574 303e2782 2019-08-09 stsp (cd $testroot/repo && git tag -m "test" -a $tag)
1575 303e2782 2019-08-09 stsp
1576 303e2782 2019-08-09 stsp echo "U alpha" > $testroot/stdout.expected
1577 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1578 303e2782 2019-08-09 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1579 303e2782 2019-08-09 stsp echo >> $testroot/stdout.expected
1580 303e2782 2019-08-09 stsp
1581 303e2782 2019-08-09 stsp (cd $testroot/wt && got update -c $tag > $testroot/stdout)
1582 303e2782 2019-08-09 stsp
1583 c932eeeb 2019-05-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1584 49c543a6 2022-03-31 naddy ret=$?
1585 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1586 c932eeeb 2019-05-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
1587 c932eeeb 2019-05-22 stsp test_done "$testroot" "$ret"
1588 c932eeeb 2019-05-22 stsp return 1
1589 c932eeeb 2019-05-22 stsp fi
1590 c932eeeb 2019-05-22 stsp
1591 303e2782 2019-08-09 stsp echo "modified alpha" > $testroot/content.expected
1592 303e2782 2019-08-09 stsp cat $testroot/wt/alpha > $testroot/content
1593 303e2782 2019-08-09 stsp
1594 303e2782 2019-08-09 stsp cmp -s $testroot/content.expected $testroot/content
1595 49c543a6 2022-03-31 naddy ret=$?
1596 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1597 303e2782 2019-08-09 stsp diff -u $testroot/content.expected $testroot/content
1598 523b8417 2019-10-19 stsp fi
1599 523b8417 2019-10-19 stsp test_done "$testroot" "$ret"
1600 523b8417 2019-10-19 stsp }
1601 523b8417 2019-10-19 stsp
1602 f6cae3ed 2020-09-13 naddy test_update_toggles_xbit() {
1603 523b8417 2019-10-19 stsp local testroot=`test_init update_toggles_xbit 1`
1604 523b8417 2019-10-19 stsp
1605 523b8417 2019-10-19 stsp touch $testroot/repo/xfile
1606 523b8417 2019-10-19 stsp chmod +x $testroot/repo/xfile
1607 523b8417 2019-10-19 stsp (cd $testroot/repo && git add .)
1608 523b8417 2019-10-19 stsp git_commit $testroot/repo -m "adding executable file"
1609 523b8417 2019-10-19 stsp local commit_id1=`git_show_head $testroot/repo`
1610 523b8417 2019-10-19 stsp
1611 523b8417 2019-10-19 stsp got checkout $testroot/repo $testroot/wt > $testroot/stdout
1612 49c543a6 2022-03-31 naddy ret=$?
1613 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1614 523b8417 2019-10-19 stsp test_done "$testroot" "$ret"
1615 523b8417 2019-10-19 stsp return 1
1616 523b8417 2019-10-19 stsp fi
1617 523b8417 2019-10-19 stsp
1618 523b8417 2019-10-19 stsp ls -l $testroot/wt/xfile | grep -q '^-rwx'
1619 49c543a6 2022-03-31 naddy ret=$?
1620 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1621 523b8417 2019-10-19 stsp echo "file is not executable" >&2
1622 523b8417 2019-10-19 stsp ls -l $testroot/wt/xfile >&2
1623 523b8417 2019-10-19 stsp test_done "$testroot" "$ret"
1624 523b8417 2019-10-19 stsp return 1
1625 523b8417 2019-10-19 stsp fi
1626 523b8417 2019-10-19 stsp
1627 523b8417 2019-10-19 stsp chmod -x $testroot/wt/xfile
1628 523b8417 2019-10-19 stsp (cd $testroot/wt && got commit -m "clear x bit" >/dev/null)
1629 523b8417 2019-10-19 stsp local commit_id2=`git_show_head $testroot/repo`
1630 523b8417 2019-10-19 stsp
1631 523b8417 2019-10-19 stsp echo "U xfile" > $testroot/stdout.expected
1632 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1633 523b8417 2019-10-19 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1634 523b8417 2019-10-19 stsp echo >> $testroot/stdout.expected
1635 523b8417 2019-10-19 stsp
1636 523b8417 2019-10-19 stsp (cd $testroot/wt && got update -c $commit_id1 > $testroot/stdout)
1637 49c543a6 2022-03-31 naddy ret=$?
1638 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1639 523b8417 2019-10-19 stsp test_done "$testroot" "$ret"
1640 523b8417 2019-10-19 stsp return 1
1641 523b8417 2019-10-19 stsp fi
1642 523b8417 2019-10-19 stsp
1643 523b8417 2019-10-19 stsp echo "U xfile" > $testroot/stdout.expected
1644 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $commit_id1" >> $testroot/stdout.expected
1645 523b8417 2019-10-19 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1646 49c543a6 2022-03-31 naddy ret=$?
1647 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1648 523b8417 2019-10-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
1649 523b8417 2019-10-19 stsp test_done "$testroot" "$ret"
1650 523b8417 2019-10-19 stsp return 1
1651 303e2782 2019-08-09 stsp fi
1652 523b8417 2019-10-19 stsp
1653 523b8417 2019-10-19 stsp
1654 523b8417 2019-10-19 stsp ls -l $testroot/wt/xfile | grep -q '^-rwx'
1655 49c543a6 2022-03-31 naddy ret=$?
1656 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1657 523b8417 2019-10-19 stsp echo "file is not executable" >&2
1658 523b8417 2019-10-19 stsp ls -l $testroot/wt/xfile >&2
1659 523b8417 2019-10-19 stsp test_done "$testroot" "$ret"
1660 523b8417 2019-10-19 stsp return 1
1661 523b8417 2019-10-19 stsp fi
1662 523b8417 2019-10-19 stsp
1663 523b8417 2019-10-19 stsp (cd $testroot/wt && got update > $testroot/stdout)
1664 49c543a6 2022-03-31 naddy ret=$?
1665 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1666 523b8417 2019-10-19 stsp test_done "$testroot" "$ret"
1667 523b8417 2019-10-19 stsp return 1
1668 523b8417 2019-10-19 stsp fi
1669 523b8417 2019-10-19 stsp
1670 523b8417 2019-10-19 stsp echo "U xfile" > $testroot/stdout.expected
1671 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $commit_id2" \
1672 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
1673 523b8417 2019-10-19 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1674 49c543a6 2022-03-31 naddy ret=$?
1675 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1676 523b8417 2019-10-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
1677 523b8417 2019-10-19 stsp test_done "$testroot" "$ret"
1678 523b8417 2019-10-19 stsp return 1
1679 523b8417 2019-10-19 stsp fi
1680 523b8417 2019-10-19 stsp
1681 523b8417 2019-10-19 stsp ls -l $testroot/wt/xfile | grep -q '^-rw-'
1682 49c543a6 2022-03-31 naddy ret=$?
1683 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1684 523b8417 2019-10-19 stsp echo "file is unexpectedly executable" >&2
1685 523b8417 2019-10-19 stsp ls -l $testroot/wt/xfile >&2
1686 5036ab18 2020-04-18 stsp fi
1687 5036ab18 2020-04-18 stsp test_done "$testroot" "$ret"
1688 5036ab18 2020-04-18 stsp }
1689 5036ab18 2020-04-18 stsp
1690 f6cae3ed 2020-09-13 naddy test_update_preserves_conflicted_file() {
1691 5036ab18 2020-04-18 stsp local testroot=`test_init update_preserves_conflicted_file`
1692 5036ab18 2020-04-18 stsp local commit_id0=`git_show_head $testroot/repo`
1693 5036ab18 2020-04-18 stsp
1694 5036ab18 2020-04-18 stsp echo "modified alpha" > $testroot/repo/alpha
1695 5036ab18 2020-04-18 stsp git_commit $testroot/repo -m "modified alpha"
1696 5036ab18 2020-04-18 stsp local commit_id1=`git_show_head $testroot/repo`
1697 5036ab18 2020-04-18 stsp
1698 5036ab18 2020-04-18 stsp got checkout -c $commit_id0 $testroot/repo $testroot/wt > /dev/null
1699 49c543a6 2022-03-31 naddy ret=$?
1700 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1701 5036ab18 2020-04-18 stsp test_done "$testroot" "$ret"
1702 5036ab18 2020-04-18 stsp return 1
1703 5036ab18 2020-04-18 stsp fi
1704 5036ab18 2020-04-18 stsp
1705 5036ab18 2020-04-18 stsp # fake a merge conflict
1706 5036ab18 2020-04-18 stsp echo '<<<<<<<' > $testroot/wt/alpha
1707 5036ab18 2020-04-18 stsp echo 'alpha' >> $testroot/wt/alpha
1708 5036ab18 2020-04-18 stsp echo '=======' >> $testroot/wt/alpha
1709 5036ab18 2020-04-18 stsp echo 'alpha, too' >> $testroot/wt/alpha
1710 5036ab18 2020-04-18 stsp echo '>>>>>>>' >> $testroot/wt/alpha
1711 5036ab18 2020-04-18 stsp cp $testroot/wt/alpha $testroot/content.expected
1712 5036ab18 2020-04-18 stsp
1713 5036ab18 2020-04-18 stsp echo "C alpha" > $testroot/stdout.expected
1714 5036ab18 2020-04-18 stsp (cd $testroot/wt && got status > $testroot/stdout)
1715 5036ab18 2020-04-18 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1716 49c543a6 2022-03-31 naddy ret=$?
1717 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1718 5036ab18 2020-04-18 stsp diff -u $testroot/stdout.expected $testroot/stdout
1719 5036ab18 2020-04-18 stsp test_done "$testroot" "$ret"
1720 5036ab18 2020-04-18 stsp return 1
1721 523b8417 2019-10-19 stsp fi
1722 5036ab18 2020-04-18 stsp
1723 5036ab18 2020-04-18 stsp echo "# alpha" > $testroot/stdout.expected
1724 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1725 5036ab18 2020-04-18 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1726 5036ab18 2020-04-18 stsp echo >> $testroot/stdout.expected
1727 9627c110 2020-04-18 stsp echo "Files not updated because of existing merge conflicts: 1" \
1728 9627c110 2020-04-18 stsp >> $testroot/stdout.expected
1729 5036ab18 2020-04-18 stsp (cd $testroot/wt && got update > $testroot/stdout)
1730 5036ab18 2020-04-18 stsp
1731 5036ab18 2020-04-18 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1732 49c543a6 2022-03-31 naddy ret=$?
1733 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1734 5036ab18 2020-04-18 stsp diff -u $testroot/stdout.expected $testroot/stdout
1735 5036ab18 2020-04-18 stsp test_done "$testroot" "$ret"
1736 5036ab18 2020-04-18 stsp return 1
1737 5036ab18 2020-04-18 stsp fi
1738 5036ab18 2020-04-18 stsp
1739 5036ab18 2020-04-18 stsp cmp -s $testroot/content.expected $testroot/wt/alpha
1740 49c543a6 2022-03-31 naddy ret=$?
1741 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1742 5036ab18 2020-04-18 stsp diff -u $testroot/content.expected $testroot/wt/alpha
1743 5036ab18 2020-04-18 stsp fi
1744 c932eeeb 2019-05-22 stsp test_done "$testroot" "$ret"
1745 c932eeeb 2019-05-22 stsp }
1746 e7303626 2020-05-14 stsp
1747 f6cae3ed 2020-09-13 naddy test_update_modified_submodules() {
1748 e7303626 2020-05-14 stsp local testroot=`test_init update_modified_submodules`
1749 e7303626 2020-05-14 stsp
1750 e7303626 2020-05-14 stsp make_single_file_repo $testroot/repo2 foo
1751 e7303626 2020-05-14 stsp
1752 f1aec6ed 2022-10-24 stsp (cd $testroot/repo && git -c protocol.file.allow=always \
1753 f1aec6ed 2022-10-24 stsp submodule -q add ../repo2)
1754 e7303626 2020-05-14 stsp (cd $testroot/repo && git commit -q -m 'adding submodule')
1755 c932eeeb 2019-05-22 stsp
1756 e7303626 2020-05-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1757 e7303626 2020-05-14 stsp
1758 e7303626 2020-05-14 stsp echo "modified foo" > $testroot/repo2/foo
1759 e7303626 2020-05-14 stsp (cd $testroot/repo2 && git commit -q -a -m 'modified a submodule')
1760 e7303626 2020-05-14 stsp
1761 e7303626 2020-05-14 stsp # Update the repo/repo2 submodule link
1762 e7303626 2020-05-14 stsp (cd $testroot/repo && git -C repo2 pull -q)
1763 e7303626 2020-05-14 stsp (cd $testroot/repo && git add repo2)
1764 e7303626 2020-05-14 stsp git_commit $testroot/repo -m "modified submodule link"
1765 e7303626 2020-05-14 stsp
1766 e7303626 2020-05-14 stsp # This update only records the new base commit. Otherwise it is a
1767 e7303626 2020-05-14 stsp # no-op change because Got's file index does not track submodules.
1768 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " > $testroot/stdout.expected
1769 e7303626 2020-05-14 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1770 e7303626 2020-05-14 stsp echo >> $testroot/stdout.expected
1771 e7303626 2020-05-14 stsp
1772 e7303626 2020-05-14 stsp (cd $testroot/wt && got update > $testroot/stdout)
1773 e7303626 2020-05-14 stsp
1774 e7303626 2020-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1775 49c543a6 2022-03-31 naddy ret=$?
1776 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1777 e7303626 2020-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1778 e7303626 2020-05-14 stsp fi
1779 e7303626 2020-05-14 stsp test_done "$testroot" "$ret"
1780 e7303626 2020-05-14 stsp }
1781 e7303626 2020-05-14 stsp
1782 f6cae3ed 2020-09-13 naddy test_update_adds_submodule() {
1783 e7303626 2020-05-14 stsp local testroot=`test_init update_adds_submodule`
1784 e7303626 2020-05-14 stsp
1785 e7303626 2020-05-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1786 e7303626 2020-05-14 stsp
1787 e7303626 2020-05-14 stsp make_single_file_repo $testroot/repo2 foo
1788 e7303626 2020-05-14 stsp
1789 e7303626 2020-05-14 stsp echo "modified foo" > $testroot/repo2/foo
1790 e7303626 2020-05-14 stsp (cd $testroot/repo2 && git commit -q -a -m 'modified a submodule')
1791 e7303626 2020-05-14 stsp
1792 f1aec6ed 2022-10-24 stsp (cd $testroot/repo && git -c protocol.file.allow=always \
1793 f1aec6ed 2022-10-24 stsp submodule -q add ../repo2)
1794 e7303626 2020-05-14 stsp (cd $testroot/repo && git commit -q -m 'adding submodule')
1795 e7303626 2020-05-14 stsp
1796 e7303626 2020-05-14 stsp echo "A .gitmodules" > $testroot/stdout.expected
1797 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1798 e7303626 2020-05-14 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1799 e7303626 2020-05-14 stsp echo >> $testroot/stdout.expected
1800 e7303626 2020-05-14 stsp
1801 e7303626 2020-05-14 stsp (cd $testroot/wt && got update > $testroot/stdout)
1802 e7303626 2020-05-14 stsp
1803 e7303626 2020-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1804 49c543a6 2022-03-31 naddy ret=$?
1805 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1806 e7303626 2020-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1807 e7303626 2020-05-14 stsp fi
1808 e7303626 2020-05-14 stsp test_done "$testroot" "$ret"
1809 e7303626 2020-05-14 stsp }
1810 e7303626 2020-05-14 stsp
1811 f6cae3ed 2020-09-13 naddy test_update_conflict_wt_file_vs_repo_submodule() {
1812 e7303626 2020-05-14 stsp local testroot=`test_init update_conflict_wt_file_vs_repo_submodule`
1813 e7303626 2020-05-14 stsp
1814 e7303626 2020-05-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1815 e7303626 2020-05-14 stsp
1816 e7303626 2020-05-14 stsp make_single_file_repo $testroot/repo2 foo
1817 e7303626 2020-05-14 stsp
1818 e7303626 2020-05-14 stsp # Add a file which will clash with the submodule
1819 e7303626 2020-05-14 stsp echo "This is a file called repo2" > $testroot/wt/repo2
1820 e7303626 2020-05-14 stsp (cd $testroot/wt && got add repo2 > /dev/null)
1821 e7303626 2020-05-14 stsp (cd $testroot/wt && got commit -m 'add file repo2' > /dev/null)
1822 49c543a6 2022-03-31 naddy ret=$?
1823 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1824 e7303626 2020-05-14 stsp echo "commit failed unexpectedly" >&2
1825 e7303626 2020-05-14 stsp test_done "$testroot" "1"
1826 e7303626 2020-05-14 stsp return 1
1827 e7303626 2020-05-14 stsp fi
1828 e7303626 2020-05-14 stsp
1829 f1aec6ed 2022-10-24 stsp (cd $testroot/repo && git -c protocol.file.allow=always \
1830 f1aec6ed 2022-10-24 stsp submodule -q add ../repo2)
1831 e7303626 2020-05-14 stsp (cd $testroot/repo && git commit -q -m 'adding submodule')
1832 e7303626 2020-05-14 stsp
1833 e7303626 2020-05-14 stsp # Modify the clashing file such that any modifications brought
1834 e7303626 2020-05-14 stsp # in by 'got update' would require a merge.
1835 e7303626 2020-05-14 stsp echo "This file was changed" > $testroot/wt/repo2
1836 e7303626 2020-05-14 stsp
1837 e7303626 2020-05-14 stsp # No conflict occurs because 'got update' ignores the submodule
1838 e7303626 2020-05-14 stsp # and leaves the clashing file as it was.
1839 e7303626 2020-05-14 stsp echo "A .gitmodules" > $testroot/stdout.expected
1840 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1841 e7303626 2020-05-14 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1842 e7303626 2020-05-14 stsp echo >> $testroot/stdout.expected
1843 e7303626 2020-05-14 stsp
1844 e7303626 2020-05-14 stsp (cd $testroot/wt && got update > $testroot/stdout)
1845 e7303626 2020-05-14 stsp
1846 e7303626 2020-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1847 49c543a6 2022-03-31 naddy ret=$?
1848 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1849 e7303626 2020-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1850 e7303626 2020-05-14 stsp test_done "$testroot" "$ret"
1851 e7303626 2020-05-14 stsp return 1
1852 e7303626 2020-05-14 stsp fi
1853 e7303626 2020-05-14 stsp
1854 e7303626 2020-05-14 stsp (cd $testroot/wt && got status > $testroot/stdout)
1855 e7303626 2020-05-14 stsp
1856 e7303626 2020-05-14 stsp echo "M repo2" > $testroot/stdout.expected
1857 e7303626 2020-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1858 49c543a6 2022-03-31 naddy ret=$?
1859 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1860 e7303626 2020-05-14 stsp diff -u $testroot/stdout.expected $testroot/stdout
1861 e7303626 2020-05-14 stsp fi
1862 e7303626 2020-05-14 stsp test_done "$testroot" "$ret"
1863 e7303626 2020-05-14 stsp }
1864 f35fa46a 2020-07-23 stsp
1865 f6cae3ed 2020-09-13 naddy test_update_adds_symlink() {
1866 f35fa46a 2020-07-23 stsp local testroot=`test_init update_adds_symlink`
1867 f35fa46a 2020-07-23 stsp
1868 f35fa46a 2020-07-23 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1869 49c543a6 2022-03-31 naddy ret=$?
1870 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1871 f35fa46a 2020-07-23 stsp echo "checkout failed unexpectedly" >&2
1872 f35fa46a 2020-07-23 stsp test_done "$testroot" "$ret"
1873 f35fa46a 2020-07-23 stsp return 1
1874 f35fa46a 2020-07-23 stsp fi
1875 f35fa46a 2020-07-23 stsp
1876 f35fa46a 2020-07-23 stsp (cd $testroot/repo && ln -s alpha alpha.link)
1877 f35fa46a 2020-07-23 stsp (cd $testroot/repo && ln -s epsilon epsilon.link)
1878 f35fa46a 2020-07-23 stsp (cd $testroot/repo && ln -s /etc/passwd passwd.link)
1879 f35fa46a 2020-07-23 stsp (cd $testroot/repo && ln -s ../beta epsilon/beta.link)
1880 f35fa46a 2020-07-23 stsp (cd $testroot/repo && ln -s nonexistent nonexistent.link)
1881 f35fa46a 2020-07-23 stsp (cd $testroot/repo && git add .)
1882 f35fa46a 2020-07-23 stsp git_commit $testroot/repo -m "add symlinks"
1883 f35fa46a 2020-07-23 stsp
1884 f35fa46a 2020-07-23 stsp echo "A alpha.link" > $testroot/stdout.expected
1885 f35fa46a 2020-07-23 stsp echo "A epsilon/beta.link" >> $testroot/stdout.expected
1886 f35fa46a 2020-07-23 stsp echo "A epsilon.link" >> $testroot/stdout.expected
1887 f35fa46a 2020-07-23 stsp echo "A nonexistent.link" >> $testroot/stdout.expected
1888 f35fa46a 2020-07-23 stsp echo "A passwd.link" >> $testroot/stdout.expected
1889 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
1890 f35fa46a 2020-07-23 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
1891 f35fa46a 2020-07-23 stsp echo >> $testroot/stdout.expected
1892 f35fa46a 2020-07-23 stsp
1893 f35fa46a 2020-07-23 stsp (cd $testroot/wt && got update > $testroot/stdout)
1894 f35fa46a 2020-07-23 stsp
1895 f35fa46a 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1896 49c543a6 2022-03-31 naddy ret=$?
1897 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1898 f35fa46a 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
1899 f35fa46a 2020-07-23 stsp test_done "$testroot" "$ret"
1900 f35fa46a 2020-07-23 stsp return 1
1901 f35fa46a 2020-07-23 stsp fi
1902 f35fa46a 2020-07-23 stsp
1903 f35fa46a 2020-07-23 stsp if ! [ -h $testroot/wt/alpha.link ]; then
1904 f35fa46a 2020-07-23 stsp echo "alpha.link is not a symlink"
1905 f35fa46a 2020-07-23 stsp test_done "$testroot" "1"
1906 f35fa46a 2020-07-23 stsp return 1
1907 f35fa46a 2020-07-23 stsp fi
1908 f35fa46a 2020-07-23 stsp
1909 f35fa46a 2020-07-23 stsp readlink $testroot/wt/alpha.link > $testroot/stdout
1910 f35fa46a 2020-07-23 stsp echo "alpha" > $testroot/stdout.expected
1911 f35fa46a 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1912 49c543a6 2022-03-31 naddy ret=$?
1913 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1914 f35fa46a 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
1915 f35fa46a 2020-07-23 stsp test_done "$testroot" "$ret"
1916 f35fa46a 2020-07-23 stsp return 1
1917 f35fa46a 2020-07-23 stsp fi
1918 f35fa46a 2020-07-23 stsp
1919 f35fa46a 2020-07-23 stsp if ! [ -h $testroot/wt/epsilon.link ]; then
1920 f35fa46a 2020-07-23 stsp echo "epsilon.link is not a symlink"
1921 f35fa46a 2020-07-23 stsp test_done "$testroot" "1"
1922 f35fa46a 2020-07-23 stsp return 1
1923 f35fa46a 2020-07-23 stsp fi
1924 e7303626 2020-05-14 stsp
1925 f35fa46a 2020-07-23 stsp readlink $testroot/wt/epsilon.link > $testroot/stdout
1926 f35fa46a 2020-07-23 stsp echo "epsilon" > $testroot/stdout.expected
1927 f35fa46a 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1928 49c543a6 2022-03-31 naddy ret=$?
1929 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1930 f35fa46a 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
1931 f35fa46a 2020-07-23 stsp test_done "$testroot" "$ret"
1932 f35fa46a 2020-07-23 stsp return 1
1933 f35fa46a 2020-07-23 stsp fi
1934 e7303626 2020-05-14 stsp
1935 f35fa46a 2020-07-23 stsp if [ -h $testroot/wt/passwd.link ]; then
1936 f35fa46a 2020-07-23 stsp echo -n "passwd.link symlink points outside of work tree: " >&2
1937 f35fa46a 2020-07-23 stsp readlink $testroot/wt/passwd.link >&2
1938 f35fa46a 2020-07-23 stsp test_done "$testroot" "1"
1939 f35fa46a 2020-07-23 stsp return 1
1940 f35fa46a 2020-07-23 stsp fi
1941 f35fa46a 2020-07-23 stsp
1942 f35fa46a 2020-07-23 stsp echo -n "/etc/passwd" > $testroot/content.expected
1943 f35fa46a 2020-07-23 stsp cp $testroot/wt/passwd.link $testroot/content
1944 f35fa46a 2020-07-23 stsp
1945 f35fa46a 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
1946 49c543a6 2022-03-31 naddy ret=$?
1947 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1948 f35fa46a 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
1949 f35fa46a 2020-07-23 stsp test_done "$testroot" "$ret"
1950 f35fa46a 2020-07-23 stsp return 1
1951 f35fa46a 2020-07-23 stsp fi
1952 f35fa46a 2020-07-23 stsp
1953 f35fa46a 2020-07-23 stsp readlink $testroot/wt/epsilon/beta.link > $testroot/stdout
1954 f35fa46a 2020-07-23 stsp echo "../beta" > $testroot/stdout.expected
1955 f35fa46a 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1956 49c543a6 2022-03-31 naddy ret=$?
1957 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1958 f35fa46a 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
1959 f35fa46a 2020-07-23 stsp test_done "$testroot" "$ret"
1960 f35fa46a 2020-07-23 stsp return 1
1961 f35fa46a 2020-07-23 stsp fi
1962 f35fa46a 2020-07-23 stsp
1963 f35fa46a 2020-07-23 stsp readlink $testroot/wt/nonexistent.link > $testroot/stdout
1964 f35fa46a 2020-07-23 stsp echo "nonexistent" > $testroot/stdout.expected
1965 f35fa46a 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1966 49c543a6 2022-03-31 naddy ret=$?
1967 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1968 f35fa46a 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
1969 c6e8a826 2021-04-05 stsp test_done "$testroot" "$ret"
1970 c6e8a826 2021-04-05 stsp return 1
1971 f35fa46a 2020-07-23 stsp fi
1972 c6e8a826 2021-04-05 stsp
1973 c6e8a826 2021-04-05 stsp # Updating an up-to-date symlink should be a no-op.
1974 c6e8a826 2021-04-05 stsp echo 'Already up-to-date' > $testroot/stdout.expected
1975 c6e8a826 2021-04-05 stsp (cd $testroot/wt && got update > $testroot/stdout)
1976 c6e8a826 2021-04-05 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1977 49c543a6 2022-03-31 naddy ret=$?
1978 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1979 c6e8a826 2021-04-05 stsp diff -u $testroot/stdout.expected $testroot/stdout
1980 c6e8a826 2021-04-05 stsp fi
1981 f35fa46a 2020-07-23 stsp test_done "$testroot" "$ret"
1982 993e2a1b 2020-07-23 stsp }
1983 993e2a1b 2020-07-23 stsp
1984 f6cae3ed 2020-09-13 naddy test_update_deletes_symlink() {
1985 993e2a1b 2020-07-23 stsp local testroot=`test_init update_deletes_symlink`
1986 993e2a1b 2020-07-23 stsp
1987 993e2a1b 2020-07-23 stsp (cd $testroot/repo && ln -s alpha alpha.link)
1988 993e2a1b 2020-07-23 stsp (cd $testroot/repo && git add .)
1989 993e2a1b 2020-07-23 stsp git_commit $testroot/repo -m "add symlink"
1990 993e2a1b 2020-07-23 stsp
1991 993e2a1b 2020-07-23 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1992 49c543a6 2022-03-31 naddy ret=$?
1993 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1994 993e2a1b 2020-07-23 stsp echo "checkout failed unexpectedly" >&2
1995 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
1996 993e2a1b 2020-07-23 stsp return 1
1997 993e2a1b 2020-07-23 stsp fi
1998 993e2a1b 2020-07-23 stsp
1999 993e2a1b 2020-07-23 stsp (cd $testroot/repo && git rm -q alpha.link)
2000 993e2a1b 2020-07-23 stsp git_commit $testroot/repo -m "delete symlink"
2001 993e2a1b 2020-07-23 stsp
2002 993e2a1b 2020-07-23 stsp echo "D alpha.link" > $testroot/stdout.expected
2003 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
2004 993e2a1b 2020-07-23 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
2005 993e2a1b 2020-07-23 stsp echo >> $testroot/stdout.expected
2006 993e2a1b 2020-07-23 stsp
2007 993e2a1b 2020-07-23 stsp (cd $testroot/wt && got update > $testroot/stdout)
2008 993e2a1b 2020-07-23 stsp
2009 993e2a1b 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2010 49c543a6 2022-03-31 naddy ret=$?
2011 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2012 993e2a1b 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2013 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
2014 993e2a1b 2020-07-23 stsp return 1
2015 993e2a1b 2020-07-23 stsp fi
2016 993e2a1b 2020-07-23 stsp
2017 993e2a1b 2020-07-23 stsp if [ -e $testroot/wt/alpha.link ]; then
2018 993e2a1b 2020-07-23 stsp echo "alpha.link still exists on disk"
2019 993e2a1b 2020-07-23 stsp test_done "$testroot" "1"
2020 993e2a1b 2020-07-23 stsp return 1
2021 993e2a1b 2020-07-23 stsp fi
2022 993e2a1b 2020-07-23 stsp
2023 993e2a1b 2020-07-23 stsp test_done "$testroot" "0"
2024 993e2a1b 2020-07-23 stsp }
2025 993e2a1b 2020-07-23 stsp
2026 f6cae3ed 2020-09-13 naddy test_update_symlink_conflicts() {
2027 993e2a1b 2020-07-23 stsp local testroot=`test_init update_symlink_conflicts`
2028 993e2a1b 2020-07-23 stsp
2029 993e2a1b 2020-07-23 stsp (cd $testroot/repo && ln -s alpha alpha.link)
2030 993e2a1b 2020-07-23 stsp (cd $testroot/repo && ln -s epsilon epsilon.link)
2031 993e2a1b 2020-07-23 stsp (cd $testroot/repo && ln -s /etc/passwd passwd.link)
2032 993e2a1b 2020-07-23 stsp (cd $testroot/repo && ln -s ../beta epsilon/beta.link)
2033 993e2a1b 2020-07-23 stsp (cd $testroot/repo && ln -s nonexistent nonexistent.link)
2034 993e2a1b 2020-07-23 stsp (cd $testroot/repo && ln -sf epsilon/zeta zeta.link)
2035 993e2a1b 2020-07-23 stsp (cd $testroot/repo && git add .)
2036 993e2a1b 2020-07-23 stsp git_commit $testroot/repo -m "add symlinks"
2037 993e2a1b 2020-07-23 stsp local commit_id1=`git_show_head $testroot/repo`
2038 993e2a1b 2020-07-23 stsp
2039 993e2a1b 2020-07-23 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2040 49c543a6 2022-03-31 naddy ret=$?
2041 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2042 993e2a1b 2020-07-23 stsp echo "checkout failed unexpectedly" >&2
2043 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
2044 993e2a1b 2020-07-23 stsp return 1
2045 993e2a1b 2020-07-23 stsp fi
2046 993e2a1b 2020-07-23 stsp
2047 993e2a1b 2020-07-23 stsp (cd $testroot/repo && ln -sf beta alpha.link)
2048 f55db25a 2023-03-03 naddy (cd $testroot/repo && rm epsilon.link && ln -s gamma epsilon.link)
2049 993e2a1b 2020-07-23 stsp (cd $testroot/repo && ln -sf ../gamma/delta epsilon/beta.link)
2050 993e2a1b 2020-07-23 stsp echo 'this is regular file foo' > $testroot/repo/dotgotfoo.link
2051 993e2a1b 2020-07-23 stsp (cd $testroot/repo && ln -sf .got/bar dotgotbar.link)
2052 993e2a1b 2020-07-23 stsp (cd $testroot/repo && git rm -q nonexistent.link)
2053 993e2a1b 2020-07-23 stsp (cd $testroot/repo && ln -sf gamma/delta zeta.link)
2054 993e2a1b 2020-07-23 stsp (cd $testroot/repo && ln -sf alpha new.link)
2055 993e2a1b 2020-07-23 stsp (cd $testroot/repo && git add .)
2056 993e2a1b 2020-07-23 stsp git_commit $testroot/repo -m "change symlinks"
2057 993e2a1b 2020-07-23 stsp local commit_id2=`git_show_head $testroot/repo`
2058 993e2a1b 2020-07-23 stsp
2059 993e2a1b 2020-07-23 stsp # modified symlink to file A vs modified symlink to file B
2060 993e2a1b 2020-07-23 stsp (cd $testroot/wt && ln -sf gamma/delta alpha.link)
2061 993e2a1b 2020-07-23 stsp # modified symlink to dir A vs modified symlink to file B
2062 f55db25a 2023-03-03 naddy (cd $testroot/wt && rm epsilon.link && ln -s beta epsilon.link)
2063 993e2a1b 2020-07-23 stsp # modeified symlink to file A vs modified symlink to dir B
2064 f55db25a 2023-03-03 naddy (cd $testroot/wt && rm epsilon/beta.link && ln -s ../gamma \
2065 f55db25a 2023-03-03 naddy epsilon/beta.link)
2066 993e2a1b 2020-07-23 stsp # added regular file A vs added bad symlink to file A
2067 993e2a1b 2020-07-23 stsp (cd $testroot/wt && ln -sf .got/bar dotgotfoo.link)
2068 3b9f0f87 2020-07-23 stsp (cd $testroot/wt && got add dotgotfoo.link > /dev/null)
2069 993e2a1b 2020-07-23 stsp # added bad symlink to file A vs added regular file A
2070 993e2a1b 2020-07-23 stsp echo 'this is regular file bar' > $testroot/wt/dotgotbar.link
2071 3b9f0f87 2020-07-23 stsp (cd $testroot/wt && got add dotgotbar.link > /dev/null)
2072 993e2a1b 2020-07-23 stsp # removed symlink to non-existent file A vs modified symlink
2073 993e2a1b 2020-07-23 stsp # to nonexistent file B
2074 993e2a1b 2020-07-23 stsp (cd $testroot/wt && ln -sf nonexistent2 nonexistent.link)
2075 993e2a1b 2020-07-23 stsp # modified symlink to file A vs removed symlink to file A
2076 993e2a1b 2020-07-23 stsp (cd $testroot/wt && got rm zeta.link > /dev/null)
2077 993e2a1b 2020-07-23 stsp # added symlink to file A vs added symlink to file B
2078 993e2a1b 2020-07-23 stsp (cd $testroot/wt && ln -sf beta new.link)
2079 993e2a1b 2020-07-23 stsp (cd $testroot/wt && got add new.link > /dev/null)
2080 993e2a1b 2020-07-23 stsp
2081 993e2a1b 2020-07-23 stsp (cd $testroot/wt && got update > $testroot/stdout)
2082 993e2a1b 2020-07-23 stsp
2083 993e2a1b 2020-07-23 stsp echo "C alpha.link" >> $testroot/stdout.expected
2084 3b9f0f87 2020-07-23 stsp echo "C dotgotbar.link" >> $testroot/stdout.expected
2085 3b9f0f87 2020-07-23 stsp echo "C dotgotfoo.link" >> $testroot/stdout.expected
2086 993e2a1b 2020-07-23 stsp echo "C epsilon/beta.link" >> $testroot/stdout.expected
2087 993e2a1b 2020-07-23 stsp echo "C epsilon.link" >> $testroot/stdout.expected
2088 993e2a1b 2020-07-23 stsp echo "C new.link" >> $testroot/stdout.expected
2089 993e2a1b 2020-07-23 stsp echo "C nonexistent.link" >> $testroot/stdout.expected
2090 993e2a1b 2020-07-23 stsp echo "G zeta.link" >> $testroot/stdout.expected
2091 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
2092 993e2a1b 2020-07-23 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
2093 993e2a1b 2020-07-23 stsp echo >> $testroot/stdout.expected
2094 3b9f0f87 2020-07-23 stsp echo "Files with new merge conflicts: 7" >> $testroot/stdout.expected
2095 993e2a1b 2020-07-23 stsp
2096 993e2a1b 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2097 49c543a6 2022-03-31 naddy ret=$?
2098 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2099 993e2a1b 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2100 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
2101 993e2a1b 2020-07-23 stsp return 1
2102 993e2a1b 2020-07-23 stsp fi
2103 993e2a1b 2020-07-23 stsp
2104 993e2a1b 2020-07-23 stsp if [ -h $testroot/wt/alpha.link ]; then
2105 993e2a1b 2020-07-23 stsp echo "alpha.link is a symlink"
2106 993e2a1b 2020-07-23 stsp test_done "$testroot" "1"
2107 993e2a1b 2020-07-23 stsp return 1
2108 993e2a1b 2020-07-23 stsp fi
2109 993e2a1b 2020-07-23 stsp
2110 993e2a1b 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
2111 283102fc 2020-07-23 stsp > $testroot/content.expected
2112 993e2a1b 2020-07-23 stsp echo "beta" >> $testroot/content.expected
2113 993e2a1b 2020-07-23 stsp echo "3-way merge base: commit $commit_id1" \
2114 993e2a1b 2020-07-23 stsp >> $testroot/content.expected
2115 993e2a1b 2020-07-23 stsp echo "alpha" >> $testroot/content.expected
2116 993e2a1b 2020-07-23 stsp echo "=======" >> $testroot/content.expected
2117 993e2a1b 2020-07-23 stsp echo "gamma/delta" >> $testroot/content.expected
2118 993e2a1b 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
2119 993e2a1b 2020-07-23 stsp echo -n "" >> $testroot/content.expected
2120 993e2a1b 2020-07-23 stsp
2121 993e2a1b 2020-07-23 stsp cp $testroot/wt/alpha.link $testroot/content
2122 993e2a1b 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2123 49c543a6 2022-03-31 naddy ret=$?
2124 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2125 993e2a1b 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2126 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
2127 993e2a1b 2020-07-23 stsp return 1
2128 993e2a1b 2020-07-23 stsp fi
2129 993e2a1b 2020-07-23 stsp
2130 993e2a1b 2020-07-23 stsp if [ -h $testroot/wt/epsilon.link ]; then
2131 993e2a1b 2020-07-23 stsp echo "epsilon.link is a symlink"
2132 993e2a1b 2020-07-23 stsp test_done "$testroot" "1"
2133 993e2a1b 2020-07-23 stsp return 1
2134 993e2a1b 2020-07-23 stsp fi
2135 993e2a1b 2020-07-23 stsp
2136 993e2a1b 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
2137 283102fc 2020-07-23 stsp > $testroot/content.expected
2138 993e2a1b 2020-07-23 stsp echo "gamma" >> $testroot/content.expected
2139 993e2a1b 2020-07-23 stsp echo "3-way merge base: commit $commit_id1" \
2140 993e2a1b 2020-07-23 stsp >> $testroot/content.expected
2141 993e2a1b 2020-07-23 stsp echo "epsilon" >> $testroot/content.expected
2142 993e2a1b 2020-07-23 stsp echo "=======" >> $testroot/content.expected
2143 993e2a1b 2020-07-23 stsp echo "beta" >> $testroot/content.expected
2144 993e2a1b 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
2145 993e2a1b 2020-07-23 stsp echo -n "" >> $testroot/content.expected
2146 993e2a1b 2020-07-23 stsp
2147 993e2a1b 2020-07-23 stsp cp $testroot/wt/epsilon.link $testroot/content
2148 993e2a1b 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2149 49c543a6 2022-03-31 naddy ret=$?
2150 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2151 993e2a1b 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2152 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
2153 993e2a1b 2020-07-23 stsp return 1
2154 993e2a1b 2020-07-23 stsp fi
2155 993e2a1b 2020-07-23 stsp
2156 993e2a1b 2020-07-23 stsp if [ -h $testroot/wt/passwd.link ]; then
2157 993e2a1b 2020-07-23 stsp echo -n "passwd.link symlink points outside of work tree: " >&2
2158 993e2a1b 2020-07-23 stsp readlink $testroot/wt/passwd.link >&2
2159 993e2a1b 2020-07-23 stsp test_done "$testroot" "1"
2160 993e2a1b 2020-07-23 stsp return 1
2161 993e2a1b 2020-07-23 stsp fi
2162 993e2a1b 2020-07-23 stsp
2163 993e2a1b 2020-07-23 stsp echo -n "/etc/passwd" > $testroot/content.expected
2164 993e2a1b 2020-07-23 stsp cp $testroot/wt/passwd.link $testroot/content
2165 993e2a1b 2020-07-23 stsp
2166 993e2a1b 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2167 49c543a6 2022-03-31 naddy ret=$?
2168 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2169 993e2a1b 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2170 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
2171 993e2a1b 2020-07-23 stsp return 1
2172 993e2a1b 2020-07-23 stsp fi
2173 993e2a1b 2020-07-23 stsp
2174 993e2a1b 2020-07-23 stsp if [ -h $testroot/wt/epsilon/beta.link ]; then
2175 993e2a1b 2020-07-23 stsp echo "epsilon/beta.link is a symlink"
2176 993e2a1b 2020-07-23 stsp test_done "$testroot" "1"
2177 993e2a1b 2020-07-23 stsp return 1
2178 993e2a1b 2020-07-23 stsp fi
2179 993e2a1b 2020-07-23 stsp
2180 993e2a1b 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
2181 283102fc 2020-07-23 stsp > $testroot/content.expected
2182 993e2a1b 2020-07-23 stsp echo "../gamma/delta" >> $testroot/content.expected
2183 993e2a1b 2020-07-23 stsp echo "3-way merge base: commit $commit_id1" \
2184 993e2a1b 2020-07-23 stsp >> $testroot/content.expected
2185 993e2a1b 2020-07-23 stsp echo "../beta" >> $testroot/content.expected
2186 993e2a1b 2020-07-23 stsp echo "=======" >> $testroot/content.expected
2187 993e2a1b 2020-07-23 stsp echo "../gamma" >> $testroot/content.expected
2188 993e2a1b 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
2189 993e2a1b 2020-07-23 stsp echo -n "" >> $testroot/content.expected
2190 993e2a1b 2020-07-23 stsp
2191 993e2a1b 2020-07-23 stsp cp $testroot/wt/epsilon/beta.link $testroot/content
2192 993e2a1b 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2193 49c543a6 2022-03-31 naddy ret=$?
2194 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2195 993e2a1b 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2196 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
2197 993e2a1b 2020-07-23 stsp return 1
2198 993e2a1b 2020-07-23 stsp fi
2199 993e2a1b 2020-07-23 stsp
2200 993e2a1b 2020-07-23 stsp if [ -h $testroot/wt/nonexistent.link ]; then
2201 993e2a1b 2020-07-23 stsp echo -n "nonexistent.link still exists on disk: " >&2
2202 993e2a1b 2020-07-23 stsp readlink $testroot/wt/nonexistent.link >&2
2203 993e2a1b 2020-07-23 stsp test_done "$testroot" "1"
2204 993e2a1b 2020-07-23 stsp return 1
2205 993e2a1b 2020-07-23 stsp fi
2206 993e2a1b 2020-07-23 stsp
2207 993e2a1b 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
2208 283102fc 2020-07-23 stsp > $testroot/content.expected
2209 993e2a1b 2020-07-23 stsp echo "(symlink was deleted)" >> $testroot/content.expected
2210 993e2a1b 2020-07-23 stsp echo "=======" >> $testroot/content.expected
2211 993e2a1b 2020-07-23 stsp echo "nonexistent2" >> $testroot/content.expected
2212 993e2a1b 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
2213 993e2a1b 2020-07-23 stsp echo -n "" >> $testroot/content.expected
2214 993e2a1b 2020-07-23 stsp
2215 993e2a1b 2020-07-23 stsp cp $testroot/wt/nonexistent.link $testroot/content
2216 993e2a1b 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2217 49c543a6 2022-03-31 naddy ret=$?
2218 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2219 993e2a1b 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2220 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
2221 993e2a1b 2020-07-23 stsp return 1
2222 993e2a1b 2020-07-23 stsp fi
2223 993e2a1b 2020-07-23 stsp
2224 993e2a1b 2020-07-23 stsp if [ -h $testroot/wt/dotgotfoo.link ]; then
2225 993e2a1b 2020-07-23 stsp echo "dotgotfoo.link is a symlink"
2226 993e2a1b 2020-07-23 stsp test_done "$testroot" "1"
2227 993e2a1b 2020-07-23 stsp return 1
2228 993e2a1b 2020-07-23 stsp fi
2229 993e2a1b 2020-07-23 stsp
2230 3b9f0f87 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
2231 3b9f0f87 2020-07-23 stsp > $testroot/content.expected
2232 3b9f0f87 2020-07-23 stsp echo "this is regular file foo" >> $testroot/content.expected
2233 3b9f0f87 2020-07-23 stsp echo "=======" >> $testroot/content.expected
2234 3b9f0f87 2020-07-23 stsp echo -n ".got/bar" >> $testroot/content.expected
2235 3b9f0f87 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
2236 3b9f0f87 2020-07-23 stsp echo -n "" >> $testroot/content.expected
2237 3b9f0f87 2020-07-23 stsp
2238 993e2a1b 2020-07-23 stsp cp $testroot/wt/dotgotfoo.link $testroot/content
2239 993e2a1b 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2240 49c543a6 2022-03-31 naddy ret=$?
2241 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2242 993e2a1b 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2243 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
2244 993e2a1b 2020-07-23 stsp return 1
2245 993e2a1b 2020-07-23 stsp fi
2246 993e2a1b 2020-07-23 stsp
2247 993e2a1b 2020-07-23 stsp if [ -h $testroot/wt/dotgotbar.link ]; then
2248 993e2a1b 2020-07-23 stsp echo "dotgotbar.link is a symlink"
2249 993e2a1b 2020-07-23 stsp test_done "$testroot" "1"
2250 993e2a1b 2020-07-23 stsp return 1
2251 993e2a1b 2020-07-23 stsp fi
2252 3b9f0f87 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
2253 3b9f0f87 2020-07-23 stsp > $testroot/content.expected
2254 3b9f0f87 2020-07-23 stsp echo -n ".got/bar" >> $testroot/content.expected
2255 3b9f0f87 2020-07-23 stsp echo "=======" >> $testroot/content.expected
2256 3b9f0f87 2020-07-23 stsp echo "this is regular file bar" >> $testroot/content.expected
2257 3b9f0f87 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
2258 3b9f0f87 2020-07-23 stsp echo -n "" >> $testroot/content.expected
2259 3b9f0f87 2020-07-23 stsp
2260 993e2a1b 2020-07-23 stsp cp $testroot/wt/dotgotbar.link $testroot/content
2261 993e2a1b 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2262 49c543a6 2022-03-31 naddy ret=$?
2263 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2264 993e2a1b 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2265 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
2266 993e2a1b 2020-07-23 stsp return 1
2267 993e2a1b 2020-07-23 stsp fi
2268 993e2a1b 2020-07-23 stsp
2269 993e2a1b 2020-07-23 stsp if [ -h $testroot/wt/new.link ]; then
2270 993e2a1b 2020-07-23 stsp echo "new.link is a symlink"
2271 993e2a1b 2020-07-23 stsp test_done "$testroot" "1"
2272 993e2a1b 2020-07-23 stsp return 1
2273 993e2a1b 2020-07-23 stsp fi
2274 993e2a1b 2020-07-23 stsp
2275 993e2a1b 2020-07-23 stsp echo "<<<<<<< merged change: commit $commit_id2" \
2276 283102fc 2020-07-23 stsp > $testroot/content.expected
2277 993e2a1b 2020-07-23 stsp echo "alpha" >> $testroot/content.expected
2278 993e2a1b 2020-07-23 stsp echo "=======" >> $testroot/content.expected
2279 993e2a1b 2020-07-23 stsp echo "beta" >> $testroot/content.expected
2280 993e2a1b 2020-07-23 stsp echo '>>>>>>>' >> $testroot/content.expected
2281 993e2a1b 2020-07-23 stsp echo -n "" >> $testroot/content.expected
2282 993e2a1b 2020-07-23 stsp
2283 993e2a1b 2020-07-23 stsp cp $testroot/wt/new.link $testroot/content
2284 993e2a1b 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2285 49c543a6 2022-03-31 naddy ret=$?
2286 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2287 993e2a1b 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2288 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
2289 993e2a1b 2020-07-23 stsp return 1
2290 993e2a1b 2020-07-23 stsp fi
2291 993e2a1b 2020-07-23 stsp
2292 993e2a1b 2020-07-23 stsp echo "A dotgotfoo.link" > $testroot/stdout.expected
2293 993e2a1b 2020-07-23 stsp echo "M new.link" >> $testroot/stdout.expected
2294 993e2a1b 2020-07-23 stsp echo "D nonexistent.link" >> $testroot/stdout.expected
2295 993e2a1b 2020-07-23 stsp (cd $testroot/wt && got status > $testroot/stdout)
2296 84246752 2022-06-03 op ret=$?
2297 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2298 993e2a1b 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2299 993e2a1b 2020-07-23 stsp test_done "$testroot" "$ret"
2300 993e2a1b 2020-07-23 stsp return 1
2301 993e2a1b 2020-07-23 stsp fi
2302 993e2a1b 2020-07-23 stsp
2303 993e2a1b 2020-07-23 stsp test_done "$testroot" "0"
2304 993e2a1b 2020-07-23 stsp
2305 f35fa46a 2020-07-23 stsp }
2306 194cb7cb 2021-01-19 stsp
2307 194cb7cb 2021-01-19 stsp test_update_single_file() {
2308 194cb7cb 2021-01-19 stsp local testroot=`test_init update_single_file 1`
2309 194cb7cb 2021-01-19 stsp
2310 194cb7cb 2021-01-19 stsp echo c1 > $testroot/repo/c
2311 194cb7cb 2021-01-19 stsp (cd $testroot/repo && git add .)
2312 79775c2f 2021-01-19 stsp git_commit $testroot/repo -m "adding file c"
2313 194cb7cb 2021-01-19 stsp local commit_id1=`git_show_head $testroot/repo`
2314 194cb7cb 2021-01-19 stsp
2315 194cb7cb 2021-01-19 stsp echo a > $testroot/repo/a
2316 194cb7cb 2021-01-19 stsp echo b > $testroot/repo/b
2317 194cb7cb 2021-01-19 stsp echo c2 > $testroot/repo/c
2318 194cb7cb 2021-01-19 stsp (cd $testroot/repo && git add .)
2319 79775c2f 2021-01-19 stsp git_commit $testroot/repo -m "add files a and b, change c"
2320 194cb7cb 2021-01-19 stsp local commit_id2=`git_show_head $testroot/repo`
2321 f35fa46a 2020-07-23 stsp
2322 d51387a0 2021-01-19 stsp (cd $testroot/repo && git rm -qf c)
2323 d51387a0 2021-01-19 stsp git_commit $testroot/repo -m "remove file c"
2324 d51387a0 2021-01-19 stsp local commit_id3=`git_show_head $testroot/repo`
2325 d51387a0 2021-01-19 stsp
2326 d51387a0 2021-01-19 stsp got checkout -c $commit_id2 $testroot/repo $testroot/wt > /dev/null
2327 49c543a6 2022-03-31 naddy ret=$?
2328 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2329 194cb7cb 2021-01-19 stsp test_done "$testroot" "$ret"
2330 194cb7cb 2021-01-19 stsp return 1
2331 194cb7cb 2021-01-19 stsp fi
2332 194cb7cb 2021-01-19 stsp
2333 194cb7cb 2021-01-19 stsp echo "U c" > $testroot/stdout.expected
2334 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $commit_id1" \
2335 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
2336 194cb7cb 2021-01-19 stsp
2337 194cb7cb 2021-01-19 stsp (cd $testroot/wt && got update -c $commit_id1 c \
2338 194cb7cb 2021-01-19 stsp > $testroot/stdout)
2339 194cb7cb 2021-01-19 stsp
2340 194cb7cb 2021-01-19 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2341 49c543a6 2022-03-31 naddy ret=$?
2342 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2343 194cb7cb 2021-01-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
2344 194cb7cb 2021-01-19 stsp test_done "$testroot" "$ret"
2345 194cb7cb 2021-01-19 stsp return 1
2346 194cb7cb 2021-01-19 stsp fi
2347 194cb7cb 2021-01-19 stsp
2348 194cb7cb 2021-01-19 stsp echo c1 > $testroot/content.expected
2349 194cb7cb 2021-01-19 stsp cat $testroot/wt/c > $testroot/content
2350 194cb7cb 2021-01-19 stsp
2351 194cb7cb 2021-01-19 stsp cmp -s $testroot/content.expected $testroot/content
2352 49c543a6 2022-03-31 naddy ret=$?
2353 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2354 194cb7cb 2021-01-19 stsp diff -u $testroot/content.expected $testroot/content
2355 194cb7cb 2021-01-19 stsp test_done "$testroot" "$ret"
2356 194cb7cb 2021-01-19 stsp return 1
2357 194cb7cb 2021-01-19 stsp fi
2358 194cb7cb 2021-01-19 stsp
2359 194cb7cb 2021-01-19 stsp echo "U c" > $testroot/stdout.expected
2360 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $commit_id2" \
2361 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
2362 194cb7cb 2021-01-19 stsp
2363 d51387a0 2021-01-19 stsp (cd $testroot/wt && got update -c $commit_id2 c > $testroot/stdout)
2364 194cb7cb 2021-01-19 stsp
2365 194cb7cb 2021-01-19 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2366 49c543a6 2022-03-31 naddy ret=$?
2367 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2368 194cb7cb 2021-01-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
2369 194cb7cb 2021-01-19 stsp test_done "$testroot" "$ret"
2370 194cb7cb 2021-01-19 stsp return 1
2371 194cb7cb 2021-01-19 stsp fi
2372 194cb7cb 2021-01-19 stsp
2373 194cb7cb 2021-01-19 stsp echo c2 > $testroot/content.expected
2374 194cb7cb 2021-01-19 stsp cat $testroot/wt/c > $testroot/content
2375 194cb7cb 2021-01-19 stsp
2376 194cb7cb 2021-01-19 stsp cmp -s $testroot/content.expected $testroot/content
2377 49c543a6 2022-03-31 naddy ret=$?
2378 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2379 194cb7cb 2021-01-19 stsp diff -u $testroot/content.expected $testroot/content
2380 d51387a0 2021-01-19 stsp test_done "$testroot" "$ret"
2381 d51387a0 2021-01-19 stsp return 1
2382 194cb7cb 2021-01-19 stsp fi
2383 d51387a0 2021-01-19 stsp
2384 d51387a0 2021-01-19 stsp echo "D c" > $testroot/stdout.expected
2385 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $commit_id3" \
2386 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
2387 d51387a0 2021-01-19 stsp
2388 d51387a0 2021-01-19 stsp (cd $testroot/wt && got update -c $commit_id3 c \
2389 d51387a0 2021-01-19 stsp > $testroot/stdout 2> $testroot/stderr)
2390 d51387a0 2021-01-19 stsp
2391 d51387a0 2021-01-19 stsp echo "got: /c: no such entry found in tree" > $testroot/stderr.expected
2392 d51387a0 2021-01-19 stsp cmp -s $testroot/stderr.expected $testroot/stderr
2393 49c543a6 2022-03-31 naddy ret=$?
2394 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2395 d51387a0 2021-01-19 stsp diff -u $testroot/stderr.expected $testroot/stderr
2396 d51387a0 2021-01-19 stsp test_done "$testroot" "$ret"
2397 d51387a0 2021-01-19 stsp return 1
2398 d51387a0 2021-01-19 stsp fi
2399 d51387a0 2021-01-19 stsp
2400 d51387a0 2021-01-19 stsp echo -n > $testroot/stdout.expected
2401 d51387a0 2021-01-19 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2402 49c543a6 2022-03-31 naddy ret=$?
2403 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2404 d51387a0 2021-01-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
2405 d51387a0 2021-01-19 stsp test_done "$testroot" "$ret"
2406 d51387a0 2021-01-19 stsp return 1
2407 d51387a0 2021-01-19 stsp fi
2408 d51387a0 2021-01-19 stsp
2409 d51387a0 2021-01-19 stsp echo "D c" > $testroot/stdout.expected
2410 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $commit_id3" \
2411 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
2412 d51387a0 2021-01-19 stsp
2413 d51387a0 2021-01-19 stsp (cd $testroot/wt && got update -c $commit_id3 > $testroot/stdout)
2414 d51387a0 2021-01-19 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2415 49c543a6 2022-03-31 naddy ret=$?
2416 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2417 d51387a0 2021-01-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
2418 d51387a0 2021-01-19 stsp test_done "$testroot" "$ret"
2419 d51387a0 2021-01-19 stsp return 1
2420 d51387a0 2021-01-19 stsp fi
2421 d51387a0 2021-01-19 stsp
2422 d51387a0 2021-01-19 stsp if [ -e $testroot/wt/c ]; then
2423 d51387a0 2021-01-19 stsp echo "removed file c still exists on disk" >&2
2424 d51387a0 2021-01-19 stsp test_done "$testroot" "1"
2425 d51387a0 2021-01-19 stsp return 1
2426 d51387a0 2021-01-19 stsp fi
2427 d51387a0 2021-01-19 stsp
2428 d51387a0 2021-01-19 stsp test_done "$testroot" "0"
2429 d51387a0 2021-01-19 stsp return 0
2430 a769b60b 2021-06-27 stsp }
2431 a769b60b 2021-06-27 stsp
2432 a769b60b 2021-06-27 stsp test_update_file_skipped_due_to_conflict() {
2433 a769b60b 2021-06-27 stsp local testroot=`test_init update_file_skipped_due_to_conflict`
2434 a769b60b 2021-06-27 stsp local commit_id0=`git_show_head $testroot/repo`
2435 a769b60b 2021-06-27 stsp blob_id0=`get_blob_id $testroot/repo "" beta`
2436 a769b60b 2021-06-27 stsp
2437 a769b60b 2021-06-27 stsp echo "changed beta" > $testroot/repo/beta
2438 a769b60b 2021-06-27 stsp git_commit $testroot/repo -m "changed beta"
2439 a769b60b 2021-06-27 stsp local commit_id1=`git_show_head $testroot/repo`
2440 a769b60b 2021-06-27 stsp blob_id1=`get_blob_id $testroot/repo "" beta`
2441 a769b60b 2021-06-27 stsp
2442 a769b60b 2021-06-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2443 49c543a6 2022-03-31 naddy ret=$?
2444 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2445 a769b60b 2021-06-27 stsp test_done "$testroot" "$ret"
2446 a769b60b 2021-06-27 stsp return 1
2447 a769b60b 2021-06-27 stsp fi
2448 a769b60b 2021-06-27 stsp
2449 a769b60b 2021-06-27 stsp blob_id=`(cd $testroot/wt && got info beta | grep 'blob:' | \
2450 a769b60b 2021-06-27 stsp cut -d ':' -f 2 | tr -d ' ')`
2451 a769b60b 2021-06-27 stsp if [ "$blob_id" != "$blob_id1" ]; then
2452 a769b60b 2021-06-27 stsp echo "file beta has the wrong base blob ID" >&2
2453 a769b60b 2021-06-27 stsp test_done "$testroot" "1"
2454 a769b60b 2021-06-27 stsp return 1
2455 a769b60b 2021-06-27 stsp fi
2456 a769b60b 2021-06-27 stsp
2457 a769b60b 2021-06-27 stsp commit_id=`(cd $testroot/wt && got info beta | \
2458 a769b60b 2021-06-27 stsp grep 'based on commit:' | cut -d ':' -f 2 | tr -d ' ')`
2459 a769b60b 2021-06-27 stsp if [ "$commit_id" != "$commit_id1" ]; then
2460 a769b60b 2021-06-27 stsp echo "file beta has the wrong base commit ID" >&2
2461 a769b60b 2021-06-27 stsp test_done "$testroot" "1"
2462 a769b60b 2021-06-27 stsp return 1
2463 a769b60b 2021-06-27 stsp fi
2464 a769b60b 2021-06-27 stsp
2465 a769b60b 2021-06-27 stsp echo "modified beta" > $testroot/wt/beta
2466 a769b60b 2021-06-27 stsp
2467 a769b60b 2021-06-27 stsp (cd $testroot/wt && got update -c $commit_id0 > $testroot/stdout)
2468 a769b60b 2021-06-27 stsp
2469 a769b60b 2021-06-27 stsp echo "C beta" > $testroot/stdout.expected
2470 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $commit_id0" \
2471 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
2472 a769b60b 2021-06-27 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
2473 a769b60b 2021-06-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2474 49c543a6 2022-03-31 naddy ret=$?
2475 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2476 a769b60b 2021-06-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
2477 a769b60b 2021-06-27 stsp test_done "$testroot" "$ret"
2478 a769b60b 2021-06-27 stsp return 1
2479 a769b60b 2021-06-27 stsp fi
2480 a769b60b 2021-06-27 stsp
2481 a769b60b 2021-06-27 stsp echo "<<<<<<< merged change: commit $commit_id0" \
2482 a769b60b 2021-06-27 stsp > $testroot/content.expected
2483 a769b60b 2021-06-27 stsp echo "beta" >> $testroot/content.expected
2484 a769b60b 2021-06-27 stsp echo "||||||| 3-way merge base: commit $commit_id1" \
2485 a769b60b 2021-06-27 stsp >> $testroot/content.expected
2486 a769b60b 2021-06-27 stsp echo "changed beta" >> $testroot/content.expected
2487 a769b60b 2021-06-27 stsp echo "=======" >> $testroot/content.expected
2488 a769b60b 2021-06-27 stsp echo "modified beta" >> $testroot/content.expected
2489 a769b60b 2021-06-27 stsp echo ">>>>>>>" >> $testroot/content.expected
2490 a769b60b 2021-06-27 stsp
2491 a769b60b 2021-06-27 stsp cat $testroot/wt/beta > $testroot/content
2492 a769b60b 2021-06-27 stsp
2493 a769b60b 2021-06-27 stsp cmp -s $testroot/content.expected $testroot/content
2494 49c543a6 2022-03-31 naddy ret=$?
2495 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2496 a769b60b 2021-06-27 stsp diff -u $testroot/content.expected $testroot/content
2497 a769b60b 2021-06-27 stsp test_done "$testroot" "$ret"
2498 a769b60b 2021-06-27 stsp return 1
2499 a769b60b 2021-06-27 stsp fi
2500 a769b60b 2021-06-27 stsp
2501 a769b60b 2021-06-27 stsp blob_id=`(cd $testroot/wt && got info beta | grep 'blob:' | \
2502 a769b60b 2021-06-27 stsp cut -d ':' -f 2 | tr -d ' ')`
2503 a769b60b 2021-06-27 stsp if [ "$blob_id" != "$blob_id0" ]; then
2504 a769b60b 2021-06-27 stsp echo "file beta has the wrong base blob ID" >&2
2505 a769b60b 2021-06-27 stsp test_done "$testroot" "1"
2506 a769b60b 2021-06-27 stsp return 1
2507 a769b60b 2021-06-27 stsp fi
2508 a769b60b 2021-06-27 stsp
2509 a769b60b 2021-06-27 stsp commit_id=`(cd $testroot/wt && got info beta | \
2510 a769b60b 2021-06-27 stsp grep 'based on commit:' | cut -d ':' -f 2 | tr -d ' ')`
2511 a769b60b 2021-06-27 stsp if [ "$commit_id" != "$commit_id0" ]; then
2512 a769b60b 2021-06-27 stsp echo "file beta has the wrong base commit ID" >&2
2513 a769b60b 2021-06-27 stsp test_done "$testroot" "1"
2514 a769b60b 2021-06-27 stsp return 1
2515 a769b60b 2021-06-27 stsp fi
2516 a769b60b 2021-06-27 stsp
2517 a769b60b 2021-06-27 stsp # update to the latest commit again; this skips beta
2518 a769b60b 2021-06-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
2519 a769b60b 2021-06-27 stsp echo "# beta" > $testroot/stdout.expected
2520 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $commit_id1" \
2521 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
2522 a769b60b 2021-06-27 stsp echo "Files not updated because of existing merge conflicts: 1" \
2523 a769b60b 2021-06-27 stsp >> $testroot/stdout.expected
2524 a769b60b 2021-06-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2525 49c543a6 2022-03-31 naddy ret=$?
2526 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2527 a769b60b 2021-06-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
2528 a769b60b 2021-06-27 stsp test_done "$testroot" "$ret"
2529 a769b60b 2021-06-27 stsp return 1
2530 a769b60b 2021-06-27 stsp fi
2531 a769b60b 2021-06-27 stsp
2532 a769b60b 2021-06-27 stsp # blob ID of beta should not have changed
2533 a769b60b 2021-06-27 stsp blob_id=`(cd $testroot/wt && got info beta | grep 'blob:' | \
2534 a769b60b 2021-06-27 stsp cut -d ':' -f 2 | tr -d ' ')`
2535 a769b60b 2021-06-27 stsp if [ "$blob_id" != "$blob_id0" ]; then
2536 a769b60b 2021-06-27 stsp echo "file beta has the wrong base blob ID" >&2
2537 a769b60b 2021-06-27 stsp test_done "$testroot" "1"
2538 a769b60b 2021-06-27 stsp return 1
2539 a769b60b 2021-06-27 stsp fi
2540 a769b60b 2021-06-27 stsp
2541 a769b60b 2021-06-27 stsp # commit ID of beta should not have changed; There was a bug
2542 a769b60b 2021-06-27 stsp # here where the commit ID had been changed even though the
2543 a769b60b 2021-06-27 stsp # file was not updated.
2544 a769b60b 2021-06-27 stsp commit_id=`(cd $testroot/wt && got info beta | \
2545 a769b60b 2021-06-27 stsp grep 'based on commit:' | cut -d ':' -f 2 | tr -d ' ')`
2546 a769b60b 2021-06-27 stsp if [ "$commit_id" != "$commit_id0" ]; then
2547 a769b60b 2021-06-27 stsp echo "file beta has the wrong base commit ID: $commit_id" >&2
2548 a769b60b 2021-06-27 stsp test_done "$testroot" "1"
2549 a769b60b 2021-06-27 stsp return 1
2550 a769b60b 2021-06-27 stsp fi
2551 a769b60b 2021-06-27 stsp
2552 a769b60b 2021-06-27 stsp # beta is still conflicted and based on commit 0
2553 a769b60b 2021-06-27 stsp echo 'C beta' > $testroot/stdout.expected
2554 a769b60b 2021-06-27 stsp (cd $testroot/wt && got status > $testroot/stdout)
2555 a769b60b 2021-06-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2556 49c543a6 2022-03-31 naddy ret=$?
2557 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2558 a769b60b 2021-06-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
2559 a769b60b 2021-06-27 stsp test_done "$testroot" "$ret"
2560 a769b60b 2021-06-27 stsp return 1
2561 a769b60b 2021-06-27 stsp fi
2562 a769b60b 2021-06-27 stsp
2563 a769b60b 2021-06-27 stsp # resolve the conflict via revert
2564 a769b60b 2021-06-27 stsp (cd $testroot/wt && got revert beta >/dev/null)
2565 a769b60b 2021-06-27 stsp
2566 a769b60b 2021-06-27 stsp # beta now matches its base blob which is still from commit 0
2567 a769b60b 2021-06-27 stsp echo "beta" > $testroot/content.expected
2568 a769b60b 2021-06-27 stsp cat $testroot/wt/beta > $testroot/content
2569 a769b60b 2021-06-27 stsp cmp -s $testroot/content.expected $testroot/content
2570 49c543a6 2022-03-31 naddy ret=$?
2571 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2572 a769b60b 2021-06-27 stsp diff -u $testroot/content.expected $testroot/content
2573 a769b60b 2021-06-27 stsp test_done "$testroot" "$ret"
2574 a769b60b 2021-06-27 stsp return 1
2575 a769b60b 2021-06-27 stsp fi
2576 a769b60b 2021-06-27 stsp
2577 a769b60b 2021-06-27 stsp # updating to the latest commit should now update beta
2578 a769b60b 2021-06-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
2579 a769b60b 2021-06-27 stsp echo "U beta" > $testroot/stdout.expected
2580 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $commit_id1" \
2581 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
2582 2c41dce7 2021-06-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2583 49c543a6 2022-03-31 naddy ret=$?
2584 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2585 2c41dce7 2021-06-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
2586 2c41dce7 2021-06-27 stsp test_done "$testroot" "$ret"
2587 2c41dce7 2021-06-27 stsp return 1
2588 2c41dce7 2021-06-27 stsp fi
2589 2c41dce7 2021-06-27 stsp
2590 2c41dce7 2021-06-27 stsp blob_id=`(cd $testroot/wt && got info beta | grep 'blob:' | \
2591 2c41dce7 2021-06-27 stsp cut -d ':' -f 2 | tr -d ' ')`
2592 2c41dce7 2021-06-27 stsp if [ "$blob_id" != "$blob_id1" ]; then
2593 2c41dce7 2021-06-27 stsp echo "file beta has the wrong base blob ID" >&2
2594 2c41dce7 2021-06-27 stsp test_done "$testroot" "1"
2595 2c41dce7 2021-06-27 stsp return 1
2596 2c41dce7 2021-06-27 stsp fi
2597 2c41dce7 2021-06-27 stsp
2598 2c41dce7 2021-06-27 stsp commit_id=`(cd $testroot/wt && got info beta | \
2599 2c41dce7 2021-06-27 stsp grep 'based on commit:' | cut -d ':' -f 2 | tr -d ' ')`
2600 2c41dce7 2021-06-27 stsp if [ "$commit_id" != "$commit_id1" ]; then
2601 2c41dce7 2021-06-27 stsp echo "file beta has the wrong base commit ID: $commit_id" >&2
2602 2c41dce7 2021-06-27 stsp test_done "$testroot" "1"
2603 2c41dce7 2021-06-27 stsp return 1
2604 2c41dce7 2021-06-27 stsp fi
2605 2c41dce7 2021-06-27 stsp
2606 2c41dce7 2021-06-27 stsp echo "changed beta" > $testroot/content.expected
2607 2c41dce7 2021-06-27 stsp cat $testroot/wt/beta > $testroot/content
2608 2c41dce7 2021-06-27 stsp cmp -s $testroot/content.expected $testroot/content
2609 49c543a6 2022-03-31 naddy ret=$?
2610 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2611 2c41dce7 2021-06-27 stsp diff -u $testroot/content.expected $testroot/content
2612 2c41dce7 2021-06-27 stsp fi
2613 2c41dce7 2021-06-27 stsp test_done "$testroot" "$ret"
2614 2c41dce7 2021-06-27 stsp }
2615 2c41dce7 2021-06-27 stsp
2616 2c41dce7 2021-06-27 stsp test_update_file_skipped_due_to_obstruction() {
2617 2c41dce7 2021-06-27 stsp local testroot=`test_init update_file_skipped_due_to_obstruction`
2618 2c41dce7 2021-06-27 stsp local commit_id0=`git_show_head $testroot/repo`
2619 2c41dce7 2021-06-27 stsp blob_id0=`get_blob_id $testroot/repo "" beta`
2620 2c41dce7 2021-06-27 stsp
2621 2c41dce7 2021-06-27 stsp echo "changed beta" > $testroot/repo/beta
2622 f6764181 2021-09-24 stsp echo "new file" > $testroot/repo/new
2623 f6764181 2021-09-24 stsp (cd $testroot/repo && git add new)
2624 2c41dce7 2021-06-27 stsp git_commit $testroot/repo -m "changed beta"
2625 2c41dce7 2021-06-27 stsp local commit_id1=`git_show_head $testroot/repo`
2626 2c41dce7 2021-06-27 stsp blob_id1=`get_blob_id $testroot/repo "" beta`
2627 2c41dce7 2021-06-27 stsp
2628 2c41dce7 2021-06-27 stsp got checkout -c $commit_id0 $testroot/repo $testroot/wt > /dev/null
2629 49c543a6 2022-03-31 naddy ret=$?
2630 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2631 2c41dce7 2021-06-27 stsp test_done "$testroot" "$ret"
2632 2c41dce7 2021-06-27 stsp return 1
2633 2c41dce7 2021-06-27 stsp fi
2634 2c41dce7 2021-06-27 stsp
2635 2c41dce7 2021-06-27 stsp blob_id=`(cd $testroot/wt && got info beta | grep 'blob:' | \
2636 2c41dce7 2021-06-27 stsp cut -d ':' -f 2 | tr -d ' ')`
2637 2c41dce7 2021-06-27 stsp if [ "$blob_id" != "$blob_id0" ]; then
2638 2c41dce7 2021-06-27 stsp echo "file beta has the wrong base blob ID" >&2
2639 2c41dce7 2021-06-27 stsp test_done "$testroot" "1"
2640 2c41dce7 2021-06-27 stsp return 1
2641 2c41dce7 2021-06-27 stsp fi
2642 2c41dce7 2021-06-27 stsp
2643 2c41dce7 2021-06-27 stsp commit_id=`(cd $testroot/wt && got info beta | \
2644 2c41dce7 2021-06-27 stsp grep 'based on commit:' | cut -d ':' -f 2 | tr -d ' ')`
2645 2c41dce7 2021-06-27 stsp if [ "$commit_id" != "$commit_id0" ]; then
2646 2c41dce7 2021-06-27 stsp echo "file beta has the wrong base commit ID" >&2
2647 2c41dce7 2021-06-27 stsp test_done "$testroot" "1"
2648 2c41dce7 2021-06-27 stsp return 1
2649 2c41dce7 2021-06-27 stsp fi
2650 2c41dce7 2021-06-27 stsp
2651 2c41dce7 2021-06-27 stsp rm $testroot/wt/beta
2652 2c41dce7 2021-06-27 stsp mkdir -p $testroot/wt/beta/psi
2653 f6764181 2021-09-24 stsp mkdir -p $testroot/wt/new
2654 2c41dce7 2021-06-27 stsp
2655 f6764181 2021-09-24 stsp # update to the latest commit; this skips beta and the new file
2656 2c41dce7 2021-06-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
2657 49c543a6 2022-03-31 naddy ret=$?
2658 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2659 f6764181 2021-09-24 stsp echo "update failed unexpectedly" >&2
2660 f6764181 2021-09-24 stsp test_done "$testroot" "1"
2661 f6764181 2021-09-24 stsp return 1
2662 f6764181 2021-09-24 stsp fi
2663 2c41dce7 2021-06-27 stsp
2664 2c41dce7 2021-06-27 stsp echo "~ beta" > $testroot/stdout.expected
2665 f6764181 2021-09-24 stsp echo "~ new" >> $testroot/stdout.expected
2666 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $commit_id1" \
2667 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
2668 f6764181 2021-09-24 stsp echo "File paths obstructed by a non-regular file: 2" \
2669 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
2670 a769b60b 2021-06-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2671 49c543a6 2022-03-31 naddy ret=$?
2672 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2673 a769b60b 2021-06-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
2674 a769b60b 2021-06-27 stsp test_done "$testroot" "$ret"
2675 a769b60b 2021-06-27 stsp return 1
2676 a769b60b 2021-06-27 stsp fi
2677 a769b60b 2021-06-27 stsp
2678 a769b60b 2021-06-27 stsp blob_id=`(cd $testroot/wt && got info beta | grep 'blob:' | \
2679 a769b60b 2021-06-27 stsp cut -d ':' -f 2 | tr -d ' ')`
2680 2c41dce7 2021-06-27 stsp if [ "$blob_id" != "$blob_id0" ]; then
2681 2c41dce7 2021-06-27 stsp echo "file beta has the wrong base blob ID" >&2
2682 2c41dce7 2021-06-27 stsp test_done "$testroot" "1"
2683 2c41dce7 2021-06-27 stsp return 1
2684 2c41dce7 2021-06-27 stsp fi
2685 2c41dce7 2021-06-27 stsp
2686 2c41dce7 2021-06-27 stsp commit_id=`(cd $testroot/wt && got info beta | \
2687 2c41dce7 2021-06-27 stsp grep 'based on commit:' | cut -d ':' -f 2 | tr -d ' ')`
2688 2c41dce7 2021-06-27 stsp if [ "$commit_id" != "$commit_id0" ]; then
2689 2c41dce7 2021-06-27 stsp echo "file beta has the wrong base commit ID" >&2
2690 2c41dce7 2021-06-27 stsp test_done "$testroot" "1"
2691 2c41dce7 2021-06-27 stsp return 1
2692 2c41dce7 2021-06-27 stsp fi
2693 2c41dce7 2021-06-27 stsp
2694 2c41dce7 2021-06-27 stsp # remove the directory which obstructs file beta
2695 2c41dce7 2021-06-27 stsp rm -r $testroot/wt/beta
2696 2c41dce7 2021-06-27 stsp
2697 2c41dce7 2021-06-27 stsp # updating to the latest commit should now update beta
2698 2c41dce7 2021-06-27 stsp (cd $testroot/wt && got update > $testroot/stdout)
2699 2c41dce7 2021-06-27 stsp echo "! beta" > $testroot/stdout.expected
2700 f6764181 2021-09-24 stsp echo "~ new" >> $testroot/stdout.expected
2701 4f3c844b 2021-09-14 stsp echo "Updated to refs/heads/master: $commit_id1" \
2702 4f3c844b 2021-09-14 stsp >> $testroot/stdout.expected
2703 f6764181 2021-09-24 stsp echo "File paths obstructed by a non-regular file: 1" \
2704 f6764181 2021-09-24 stsp >> $testroot/stdout.expected
2705 2c41dce7 2021-06-27 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2706 49c543a6 2022-03-31 naddy ret=$?
2707 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2708 2c41dce7 2021-06-27 stsp diff -u $testroot/stdout.expected $testroot/stdout
2709 2c41dce7 2021-06-27 stsp test_done "$testroot" "$ret"
2710 2c41dce7 2021-06-27 stsp return 1
2711 2c41dce7 2021-06-27 stsp fi
2712 2c41dce7 2021-06-27 stsp
2713 2c41dce7 2021-06-27 stsp blob_id=`(cd $testroot/wt && got info beta | grep 'blob:' | \
2714 2c41dce7 2021-06-27 stsp cut -d ':' -f 2 | tr -d ' ')`
2715 a769b60b 2021-06-27 stsp if [ "$blob_id" != "$blob_id1" ]; then
2716 a769b60b 2021-06-27 stsp echo "file beta has the wrong base blob ID" >&2
2717 a769b60b 2021-06-27 stsp test_done "$testroot" "1"
2718 a769b60b 2021-06-27 stsp return 1
2719 a769b60b 2021-06-27 stsp fi
2720 a769b60b 2021-06-27 stsp
2721 a769b60b 2021-06-27 stsp commit_id=`(cd $testroot/wt && got info beta | \
2722 a769b60b 2021-06-27 stsp grep 'based on commit:' | cut -d ':' -f 2 | tr -d ' ')`
2723 a769b60b 2021-06-27 stsp if [ "$commit_id" != "$commit_id1" ]; then
2724 a769b60b 2021-06-27 stsp echo "file beta has the wrong base commit ID: $commit_id" >&2
2725 a769b60b 2021-06-27 stsp test_done "$testroot" "1"
2726 a769b60b 2021-06-27 stsp return 1
2727 a769b60b 2021-06-27 stsp fi
2728 a769b60b 2021-06-27 stsp
2729 a769b60b 2021-06-27 stsp echo "changed beta" > $testroot/content.expected
2730 a769b60b 2021-06-27 stsp cat $testroot/wt/beta > $testroot/content
2731 a769b60b 2021-06-27 stsp cmp -s $testroot/content.expected $testroot/content
2732 49c543a6 2022-03-31 naddy ret=$?
2733 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2734 a769b60b 2021-06-27 stsp diff -u $testroot/content.expected $testroot/content
2735 a769b60b 2021-06-27 stsp fi
2736 a769b60b 2021-06-27 stsp test_done "$testroot" "$ret"
2737 194cb7cb 2021-01-19 stsp }
2738 67c65ed7 2021-09-14 tracey
2739 67c65ed7 2021-09-14 tracey test_update_quiet() {
2740 67c65ed7 2021-09-14 tracey local testroot=`test_init update_quiet`
2741 67c65ed7 2021-09-14 tracey
2742 67c65ed7 2021-09-14 tracey got checkout $testroot/repo $testroot/wt > /dev/null
2743 49c543a6 2022-03-31 naddy ret=$?
2744 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2745 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
2746 67c65ed7 2021-09-14 tracey return 1
2747 67c65ed7 2021-09-14 tracey fi
2748 67c65ed7 2021-09-14 tracey
2749 67c65ed7 2021-09-14 tracey echo "modified alpha" > $testroot/repo/alpha
2750 67c65ed7 2021-09-14 tracey git_commit $testroot/repo -m "modified alpha"
2751 67c65ed7 2021-09-14 tracey
2752 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
2753 67c65ed7 2021-09-14 tracey git_show_head $testroot/repo >> $testroot/stdout.expected
2754 67c65ed7 2021-09-14 tracey echo >> $testroot/stdout.expected
2755 67c65ed7 2021-09-14 tracey
2756 67c65ed7 2021-09-14 tracey (cd $testroot/wt && got update -q > $testroot/stdout)
2757 67c65ed7 2021-09-14 tracey
2758 67c65ed7 2021-09-14 tracey cmp -s $testroot/stdout.expected $testroot/stdout
2759 49c543a6 2022-03-31 naddy ret=$?
2760 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2761 67c65ed7 2021-09-14 tracey diff -u $testroot/stdout.expected $testroot/stdout
2762 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
2763 67c65ed7 2021-09-14 tracey return 1
2764 67c65ed7 2021-09-14 tracey fi
2765 194cb7cb 2021-01-19 stsp
2766 67c65ed7 2021-09-14 tracey echo "modified alpha" > $testroot/content.expected
2767 67c65ed7 2021-09-14 tracey cat $testroot/wt/alpha > $testroot/content
2768 194cb7cb 2021-01-19 stsp
2769 67c65ed7 2021-09-14 tracey cmp -s $testroot/content.expected $testroot/content
2770 49c543a6 2022-03-31 naddy ret=$?
2771 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2772 67c65ed7 2021-09-14 tracey diff -u $testroot/content.expected $testroot/content
2773 67c65ed7 2021-09-14 tracey fi
2774 67c65ed7 2021-09-14 tracey test_done "$testroot" "$ret"
2775 0e039681 2021-11-15 stsp }
2776 0e039681 2021-11-15 stsp
2777 0e039681 2021-11-15 stsp test_update_binary_file() {
2778 0e039681 2021-11-15 stsp local testroot=`test_init update_binary_file`
2779 0e039681 2021-11-15 stsp local commit_id0=`git_show_head $testroot/repo`
2780 0e039681 2021-11-15 stsp
2781 0e039681 2021-11-15 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2782 49c543a6 2022-03-31 naddy ret=$?
2783 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2784 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2785 0e039681 2021-11-15 stsp return 1
2786 0e039681 2021-11-15 stsp fi
2787 0e039681 2021-11-15 stsp
2788 0e039681 2021-11-15 stsp cp /bin/ls $testroot/wt/foo
2789 0e039681 2021-11-15 stsp chmod 755 $testroot/wt/foo
2790 0e039681 2021-11-15 stsp (cd $testroot/wt && got add foo >/dev/null)
2791 0e039681 2021-11-15 stsp (cd $testroot/wt && got commit -m 'add binary file' > /dev/null)
2792 0e039681 2021-11-15 stsp local commit_id1=`git_show_head $testroot/repo`
2793 0e039681 2021-11-15 stsp
2794 0e039681 2021-11-15 stsp cp /bin/cat $testroot/wt/foo
2795 0e039681 2021-11-15 stsp chmod 755 $testroot/wt/foo
2796 0e039681 2021-11-15 stsp (cd $testroot/wt && got commit -m 'change binary file' > /dev/null)
2797 0e039681 2021-11-15 stsp local commit_id2=`git_show_head $testroot/repo`
2798 0e039681 2021-11-15 stsp
2799 0e039681 2021-11-15 stsp cp /bin/cp $testroot/wt/foo
2800 0e039681 2021-11-15 stsp chmod 755 $testroot/wt/foo
2801 0e039681 2021-11-15 stsp (cd $testroot/wt && got commit -m 'change binary file' > /dev/null)
2802 0e039681 2021-11-15 stsp local commit_id3=`git_show_head $testroot/repo`
2803 0e039681 2021-11-15 stsp
2804 0e039681 2021-11-15 stsp (cd $testroot/wt && got rm foo >/dev/null)
2805 0e039681 2021-11-15 stsp (cd $testroot/wt && got commit -m 'remove binary file' > /dev/null)
2806 0e039681 2021-11-15 stsp local commit_id4=`git_show_head $testroot/repo`
2807 0e039681 2021-11-15 stsp
2808 0e039681 2021-11-15 stsp # backdate the work tree to make it usable for updating
2809 0e039681 2021-11-15 stsp (cd $testroot/wt && got up -c $commit_id0 > /dev/null)
2810 0e039681 2021-11-15 stsp
2811 0e039681 2021-11-15 stsp # update which adds a binary file
2812 0e039681 2021-11-15 stsp (cd $testroot/wt && got up -c $commit_id1 > $testroot/stdout)
2813 0e039681 2021-11-15 stsp
2814 0e039681 2021-11-15 stsp echo "A foo" > $testroot/stdout.expected
2815 0e039681 2021-11-15 stsp echo -n "Updated to refs/heads/master: $commit_id1" \
2816 0e039681 2021-11-15 stsp >> $testroot/stdout.expected
2817 0e039681 2021-11-15 stsp echo >> $testroot/stdout.expected
2818 0e039681 2021-11-15 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2819 49c543a6 2022-03-31 naddy ret=$?
2820 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2821 0e039681 2021-11-15 stsp diff -u $testroot/stdout.expected $testroot/stdout
2822 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2823 0e039681 2021-11-15 stsp return 1
2824 0e039681 2021-11-15 stsp fi
2825 0e039681 2021-11-15 stsp
2826 0e039681 2021-11-15 stsp cp /bin/ls $testroot/content.expected
2827 0e039681 2021-11-15 stsp chmod 755 $testroot/content.expected
2828 0e039681 2021-11-15 stsp cat $testroot/wt/foo > $testroot/content
2829 0e039681 2021-11-15 stsp
2830 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
2831 49c543a6 2022-03-31 naddy ret=$?
2832 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2833 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
2834 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2835 0e039681 2021-11-15 stsp return 1
2836 0e039681 2021-11-15 stsp fi
2837 0e039681 2021-11-15 stsp
2838 0e039681 2021-11-15 stsp # update which adds a conflicting binary file
2839 0e039681 2021-11-15 stsp (cd $testroot/wt && got up -c $commit_id0 > /dev/null)
2840 0e039681 2021-11-15 stsp cp /bin/cat $testroot/wt/foo
2841 0e039681 2021-11-15 stsp chmod 755 $testroot/wt/foo
2842 0e039681 2021-11-15 stsp (cd $testroot/wt && got add foo > /dev/null)
2843 0e039681 2021-11-15 stsp (cd $testroot/wt && got up -c $commit_id1 > $testroot/stdout)
2844 0e039681 2021-11-15 stsp
2845 0e039681 2021-11-15 stsp echo "C foo" > $testroot/stdout.expected
2846 0e039681 2021-11-15 stsp echo "Updated to refs/heads/master: $commit_id1" \
2847 0e039681 2021-11-15 stsp >> $testroot/stdout.expected
2848 0e039681 2021-11-15 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
2849 0e039681 2021-11-15 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2850 49c543a6 2022-03-31 naddy ret=$?
2851 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2852 0e039681 2021-11-15 stsp diff -u $testroot/stdout.expected $testroot/stdout
2853 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2854 0e039681 2021-11-15 stsp return 1
2855 0e039681 2021-11-15 stsp fi
2856 0e039681 2021-11-15 stsp
2857 0e039681 2021-11-15 stsp echo "Binary files differ and cannot be merged automatically:" \
2858 0e039681 2021-11-15 stsp > $testroot/content.expected
2859 0e039681 2021-11-15 stsp echo "<<<<<<< merged change: commit $commit_id1" \
2860 0e039681 2021-11-15 stsp >> $testroot/content.expected
2861 0e039681 2021-11-15 stsp echo -n "file " >> $testroot/content.expected
2862 0e039681 2021-11-15 stsp ls $testroot/wt/foo-1-* >> $testroot/content.expected
2863 0e039681 2021-11-15 stsp echo '=======' >> $testroot/content.expected
2864 0e039681 2021-11-15 stsp echo -n "file " >> $testroot/content.expected
2865 0e039681 2021-11-15 stsp ls $testroot/wt/foo-2-* >> $testroot/content.expected
2866 0e039681 2021-11-15 stsp echo ">>>>>>>" >> $testroot/content.expected
2867 0e039681 2021-11-15 stsp cat $testroot/wt/foo > $testroot/content
2868 0e039681 2021-11-15 stsp
2869 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
2870 49c543a6 2022-03-31 naddy ret=$?
2871 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2872 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
2873 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2874 0e039681 2021-11-15 stsp return 1
2875 0e039681 2021-11-15 stsp fi
2876 0e039681 2021-11-15 stsp
2877 0e039681 2021-11-15 stsp cp /bin/ls $testroot/content.expected
2878 0e039681 2021-11-15 stsp chmod 755 $testroot/content.expected
2879 0e039681 2021-11-15 stsp cat $testroot/wt/foo-1-* > $testroot/content
2880 0e039681 2021-11-15 stsp
2881 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
2882 49c543a6 2022-03-31 naddy ret=$?
2883 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2884 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
2885 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2886 0e039681 2021-11-15 stsp return 1
2887 0e039681 2021-11-15 stsp fi
2888 0e039681 2021-11-15 stsp
2889 0e039681 2021-11-15 stsp cp /bin/cat $testroot/content.expected
2890 0e039681 2021-11-15 stsp chmod 755 $testroot/content.expected
2891 0e039681 2021-11-15 stsp cat $testroot/wt/foo-2-* > $testroot/content
2892 0e039681 2021-11-15 stsp
2893 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
2894 49c543a6 2022-03-31 naddy ret=$?
2895 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2896 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
2897 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2898 0e039681 2021-11-15 stsp return 1
2899 0e039681 2021-11-15 stsp fi
2900 0e039681 2021-11-15 stsp
2901 0e039681 2021-11-15 stsp # tidy up
2902 0e039681 2021-11-15 stsp (cd $testroot/wt && got revert -R . >/dev/null)
2903 0e039681 2021-11-15 stsp rm $testroot/wt/foo-1-* $testroot/wt/foo-2-*
2904 0e039681 2021-11-15 stsp (cd $testroot/wt && got up -c $commit_id1 > /dev/null)
2905 0e039681 2021-11-15 stsp
2906 0e039681 2021-11-15 stsp # update which changes a binary file
2907 0e039681 2021-11-15 stsp (cd $testroot/wt && got up -c $commit_id2 > $testroot/stdout)
2908 0e039681 2021-11-15 stsp
2909 0e039681 2021-11-15 stsp echo "U foo" > $testroot/stdout.expected
2910 0e039681 2021-11-15 stsp echo -n "Updated to refs/heads/master: $commit_id2" \
2911 0e039681 2021-11-15 stsp >> $testroot/stdout.expected
2912 0e039681 2021-11-15 stsp echo >> $testroot/stdout.expected
2913 0e039681 2021-11-15 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2914 49c543a6 2022-03-31 naddy ret=$?
2915 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2916 0e039681 2021-11-15 stsp diff -u $testroot/stdout.expected $testroot/stdout
2917 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2918 0e039681 2021-11-15 stsp return 1
2919 0e039681 2021-11-15 stsp fi
2920 0e039681 2021-11-15 stsp
2921 0e039681 2021-11-15 stsp cp /bin/cat $testroot/content.expected
2922 0e039681 2021-11-15 stsp chmod 755 $testroot/content.expected
2923 0e039681 2021-11-15 stsp cat $testroot/wt/foo > $testroot/content
2924 0e039681 2021-11-15 stsp
2925 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
2926 49c543a6 2022-03-31 naddy ret=$?
2927 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2928 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
2929 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2930 0e039681 2021-11-15 stsp return 1
2931 0e039681 2021-11-15 stsp fi
2932 0e039681 2021-11-15 stsp
2933 0e039681 2021-11-15 stsp # update which changes a locally modified binary file
2934 0e039681 2021-11-15 stsp cp /bin/ls $testroot/wt/foo
2935 0e039681 2021-11-15 stsp chmod 755 $testroot/wt/foo
2936 0e039681 2021-11-15 stsp (cd $testroot/wt && got up -c $commit_id3 > $testroot/stdout)
2937 0e039681 2021-11-15 stsp
2938 0e039681 2021-11-15 stsp echo "C foo" > $testroot/stdout.expected
2939 0e039681 2021-11-15 stsp echo -n "Updated to refs/heads/master: $commit_id3" \
2940 0e039681 2021-11-15 stsp >> $testroot/stdout.expected
2941 0e039681 2021-11-15 stsp echo >> $testroot/stdout.expected
2942 0e039681 2021-11-15 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
2943 0e039681 2021-11-15 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2944 49c543a6 2022-03-31 naddy ret=$?
2945 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2946 0e039681 2021-11-15 stsp diff -u $testroot/stdout.expected $testroot/stdout
2947 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2948 0e039681 2021-11-15 stsp return 1
2949 0e039681 2021-11-15 stsp fi
2950 0e039681 2021-11-15 stsp
2951 0e039681 2021-11-15 stsp echo "Binary files differ and cannot be merged automatically:" \
2952 0e039681 2021-11-15 stsp > $testroot/content.expected
2953 0e039681 2021-11-15 stsp echo "<<<<<<< merged change: commit $commit_id3" \
2954 0e039681 2021-11-15 stsp >> $testroot/content.expected
2955 0e039681 2021-11-15 stsp echo -n "file " >> $testroot/content.expected
2956 0e039681 2021-11-15 stsp ls $testroot/wt/foo-1-* >> $testroot/content.expected
2957 0e039681 2021-11-15 stsp echo "||||||| 3-way merge base: commit $commit_id2" \
2958 0e039681 2021-11-15 stsp >> $testroot/content.expected
2959 0e039681 2021-11-15 stsp echo -n "file " >> $testroot/content.expected
2960 0e039681 2021-11-15 stsp ls $testroot/wt/foo-orig-* >> $testroot/content.expected
2961 0e039681 2021-11-15 stsp echo '=======' >> $testroot/content.expected
2962 0e039681 2021-11-15 stsp echo -n "file " >> $testroot/content.expected
2963 0e039681 2021-11-15 stsp ls $testroot/wt/foo-2-* >> $testroot/content.expected
2964 0e039681 2021-11-15 stsp echo ">>>>>>>" >> $testroot/content.expected
2965 0e039681 2021-11-15 stsp cat $testroot/wt/foo > $testroot/content
2966 0e039681 2021-11-15 stsp
2967 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
2968 49c543a6 2022-03-31 naddy ret=$?
2969 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2970 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
2971 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2972 0e039681 2021-11-15 stsp return 1
2973 0e039681 2021-11-15 stsp fi
2974 0e039681 2021-11-15 stsp
2975 0e039681 2021-11-15 stsp cp /bin/cp $testroot/content.expected
2976 0e039681 2021-11-15 stsp chmod 755 $testroot/content.expected
2977 0e039681 2021-11-15 stsp cp $testroot/wt/foo-1-* $testroot/content
2978 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
2979 49c543a6 2022-03-31 naddy ret=$?
2980 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2981 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
2982 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2983 0e039681 2021-11-15 stsp return 1
2984 0e039681 2021-11-15 stsp fi
2985 0e039681 2021-11-15 stsp
2986 0e039681 2021-11-15 stsp cp /bin/ls $testroot/content.expected
2987 0e039681 2021-11-15 stsp chmod 755 $testroot/content.expected
2988 0e039681 2021-11-15 stsp cp $testroot/wt/foo-2-* $testroot/content
2989 0e039681 2021-11-15 stsp cmp -s $testroot/content.expected $testroot/content
2990 49c543a6 2022-03-31 naddy ret=$?
2991 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2992 0e039681 2021-11-15 stsp diff -u $testroot/content.expected $testroot/content
2993 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
2994 0e039681 2021-11-15 stsp return 1
2995 0e039681 2021-11-15 stsp fi
2996 0e039681 2021-11-15 stsp
2997 0e039681 2021-11-15 stsp (cd $testroot/wt && got status > $testroot/stdout)
2998 d952957d 2023-02-19 mark echo 'C foo' > $testroot/stdout.expected
2999 0e039681 2021-11-15 stsp echo -n '? ' >> $testroot/stdout.expected
3000 0e039681 2021-11-15 stsp (cd $testroot/wt && ls foo-1-* >> $testroot/stdout.expected)
3001 0e039681 2021-11-15 stsp echo -n '? ' >> $testroot/stdout.expected
3002 0e039681 2021-11-15 stsp (cd $testroot/wt && ls foo-2-* >> $testroot/stdout.expected)
3003 0e039681 2021-11-15 stsp echo -n '? ' >> $testroot/stdout.expected
3004 0e039681 2021-11-15 stsp (cd $testroot/wt && ls foo-orig-* >> $testroot/stdout.expected)
3005 0e039681 2021-11-15 stsp cmp -s $testroot/stdout.expected $testroot/stdout
3006 49c543a6 2022-03-31 naddy ret=$?
3007 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
3008 0e039681 2021-11-15 stsp diff -u $testroot/stdout.expected $testroot/stdout
3009 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
3010 0e039681 2021-11-15 stsp return 1
3011 0e039681 2021-11-15 stsp fi
3012 0e039681 2021-11-15 stsp
3013 0e039681 2021-11-15 stsp # tidy up
3014 0e039681 2021-11-15 stsp (cd $testroot/wt && got revert -R . > /dev/null)
3015 0e039681 2021-11-15 stsp rm $testroot/wt/foo-orig-* $testroot/wt/foo-1-* $testroot/wt/foo-2-*
3016 0e039681 2021-11-15 stsp
3017 0e039681 2021-11-15 stsp # update which deletes a binary file
3018 0e039681 2021-11-15 stsp (cd $testroot/wt && got up -c $commit_id4 > $testroot/stdout)
3019 0e039681 2021-11-15 stsp echo "D foo" > $testroot/stdout.expected
3020 0e039681 2021-11-15 stsp echo -n "Updated to refs/heads/master: $commit_id4" \
3021 0e039681 2021-11-15 stsp >> $testroot/stdout.expected
3022 0e039681 2021-11-15 stsp echo >> $testroot/stdout.expected
3023 0e039681 2021-11-15 stsp cmp -s $testroot/stdout.expected $testroot/stdout
3024 49c543a6 2022-03-31 naddy ret=$?
3025 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
3026 0e039681 2021-11-15 stsp diff -u $testroot/stdout.expected $testroot/stdout
3027 0e039681 2021-11-15 stsp test_done "$testroot" "$ret"
3028 0e039681 2021-11-15 stsp fi
3029 0e039681 2021-11-15 stsp
3030 0e039681 2021-11-15 stsp if [ -e $testroot/wt/foo ]; then
3031 0e039681 2021-11-15 stsp echo "removed file foo still exists on disk" >&2
3032 0e039681 2021-11-15 stsp test_done "$testroot" "1"
3033 0e039681 2021-11-15 stsp return 1
3034 0e039681 2021-11-15 stsp fi
3035 0e039681 2021-11-15 stsp test_done "$testroot" "0"
3036 67c65ed7 2021-09-14 tracey }
3037 b2b3fce1 2022-10-29 op
3038 b2b3fce1 2022-10-29 op test_update_umask() {
3039 b2b3fce1 2022-10-29 op local testroot=`test_init update_binary_file`
3040 b2b3fce1 2022-10-29 op
3041 b2b3fce1 2022-10-29 op got checkout "$testroot/repo" "$testroot/wt" >/dev/null
3042 b2b3fce1 2022-10-29 op ret=$?
3043 b2b3fce1 2022-10-29 op if [ $ret -ne 0 ]; then
3044 b2b3fce1 2022-10-29 op test_done "$testroot" "$ret"
3045 b2b3fce1 2022-10-29 op return 1
3046 b2b3fce1 2022-10-29 op fi
3047 b2b3fce1 2022-10-29 op
3048 b2b3fce1 2022-10-29 op rm "$testroot/wt/alpha"
3049 b2b3fce1 2022-10-29 op
3050 b2b3fce1 2022-10-29 op # using a subshell to avoid clobbering global umask
3051 b2b3fce1 2022-10-29 op (umask 022 && cd "$testroot/wt" && got update alpha) \
3052 b2b3fce1 2022-10-29 op >/dev/null 2>/dev/null
3053 b2b3fce1 2022-10-29 op ret=$?
3054 b2b3fce1 2022-10-29 op if [ $ret -ne 0 ]; then
3055 b2b3fce1 2022-10-29 op test_done "$testroot" $ret
3056 b2b3fce1 2022-10-29 op return 1
3057 b2b3fce1 2022-10-29 op fi
3058 67c65ed7 2021-09-14 tracey
3059 b2b3fce1 2022-10-29 op if ! ls -l "$testroot/wt/alpha" | grep -q ^-rw-r--r--; then
3060 b2b3fce1 2022-10-29 op echo "alpha is not 0644" >&2
3061 b2b3fce1 2022-10-29 op test_done "$testroot" 1
3062 b2b3fce1 2022-10-29 op return 1
3063 b2b3fce1 2022-10-29 op fi
3064 b2b3fce1 2022-10-29 op
3065 b2b3fce1 2022-10-29 op rm "$testroot/wt/alpha"
3066 b2b3fce1 2022-10-29 op
3067 b2b3fce1 2022-10-29 op # using a subshell to avoid clobbering global umask
3068 b2b3fce1 2022-10-29 op (umask 044 && cd "$testroot/wt" && got update alpha) \
3069 b2b3fce1 2022-10-29 op >/dev/null 2>/dev/null
3070 b2b3fce1 2022-10-29 op ret=$?
3071 b2b3fce1 2022-10-29 op if [ $ret -ne 0 ]; then
3072 b2b3fce1 2022-10-29 op test_done "$testroot" $ret
3073 b2b3fce1 2022-10-29 op return 1
3074 b2b3fce1 2022-10-29 op fi
3075 b2b3fce1 2022-10-29 op
3076 b2b3fce1 2022-10-29 op if ! ls -l "$testroot/wt/alpha" | grep -q ^-rw-------; then
3077 b2b3fce1 2022-10-29 op echo "alpha is not 0600" >&2
3078 b2b3fce1 2022-10-29 op test_done "$testroot" 1
3079 b2b3fce1 2022-10-29 op return 1
3080 b2b3fce1 2022-10-29 op fi
3081 b2b3fce1 2022-10-29 op
3082 b2b3fce1 2022-10-29 op rm "$testroot/wt/alpha"
3083 b2b3fce1 2022-10-29 op
3084 b2b3fce1 2022-10-29 op # using a subshell to avoid clobbering global umask
3085 b2b3fce1 2022-10-29 op (umask 222 && cd "$testroot/wt" && got update alpha) \
3086 b2b3fce1 2022-10-29 op >/dev/null 2>/dev/null
3087 b2b3fce1 2022-10-29 op ret=$?
3088 b2b3fce1 2022-10-29 op if [ $ret -ne 0 ]; then
3089 b2b3fce1 2022-10-29 op test_done "$testroot" $ret
3090 b2b3fce1 2022-10-29 op return 1
3091 b2b3fce1 2022-10-29 op fi
3092 b2b3fce1 2022-10-29 op
3093 b2b3fce1 2022-10-29 op if ! ls -l "$testroot/wt/alpha" | grep -q ^-r--r--r--; then
3094 b2b3fce1 2022-10-29 op echo "alpha is not 0444" >&2
3095 b2b3fce1 2022-10-29 op test_done "$testroot" 1
3096 b2b3fce1 2022-10-29 op return 1;
3097 b2b3fce1 2022-10-29 op fi
3098 b2b3fce1 2022-10-29 op
3099 b2b3fce1 2022-10-29 op test_done "$testroot" 0
3100 b2b3fce1 2022-10-29 op }
3101 b2b3fce1 2022-10-29 op
3102 7fb414ae 2020-08-08 stsp test_parseargs "$@"
3103 c84d8c75 2019-01-02 stsp run_test test_update_basic
3104 3b4d3732 2019-01-02 stsp run_test test_update_adds_file
3105 512f0d0e 2019-01-02 stsp run_test test_update_deletes_file
3106 f5c49f82 2019-01-06 stsp run_test test_update_deletes_dir
3107 5cc266ba 2019-01-06 stsp run_test test_update_deletes_dir_with_path_prefix
3108 90285c3b 2019-01-08 stsp run_test test_update_deletes_dir_recursively
3109 4482e97b 2019-01-08 stsp run_test test_update_sibling_dirs_with_common_prefix
3110 50952927 2019-01-12 stsp run_test test_update_dir_with_dot_sibling
3111 46cee7a3 2019-01-12 stsp run_test test_update_moves_files_upwards
3112 bd4792ec 2019-01-13 stsp run_test test_update_moves_files_to_new_dir
3113 4a1ddfc2 2019-01-12 stsp run_test test_update_creates_missing_parent
3114 bd4792ec 2019-01-13 stsp run_test test_update_creates_missing_parent_with_subdir
3115 21908da4 2019-01-13 stsp run_test test_update_file_in_subsubdir
3116 c3b9af18 2023-02-26 naddy run_test test_update_changes_file_to_dir
3117 6353ad76 2019-02-08 stsp run_test test_update_merges_file_edits
3118 68ed9ba5 2019-02-10 stsp run_test test_update_keeps_xbit
3119 ba8a0d4d 2019-02-10 stsp run_test test_update_clears_xbit
3120 a378724f 2019-02-10 stsp run_test test_update_restores_missing_file
3121 085d5bcf 2019-03-27 stsp run_test test_update_conflict_wt_add_vs_repo_add
3122 085d5bcf 2019-03-27 stsp run_test test_update_conflict_wt_edit_vs_repo_rm
3123 13d9040b 2019-03-27 stsp run_test test_update_conflict_wt_rm_vs_repo_edit
3124 66b11bf5 2019-03-27 stsp run_test test_update_conflict_wt_rm_vs_repo_rm
3125 c4cdcb68 2019-04-03 stsp run_test test_update_partial
3126 c4cdcb68 2019-04-03 stsp run_test test_update_partial_add
3127 c4cdcb68 2019-04-03 stsp run_test test_update_partial_rm
3128 c4cdcb68 2019-04-03 stsp run_test test_update_partial_dir
3129 d5bea539 2019-05-13 stsp run_test test_update_moved_branch_ref
3130 024e9686 2019-05-14 stsp run_test test_update_to_another_branch
3131 a367ff0f 2019-05-14 stsp run_test test_update_to_commit_on_wrong_branch
3132 c932eeeb 2019-05-22 stsp run_test test_update_bumps_base_commit_id
3133 303e2782 2019-08-09 stsp run_test test_update_tag
3134 523b8417 2019-10-19 stsp run_test test_update_toggles_xbit
3135 5036ab18 2020-04-18 stsp run_test test_update_preserves_conflicted_file
3136 e7303626 2020-05-14 stsp run_test test_update_modified_submodules
3137 e7303626 2020-05-14 stsp run_test test_update_adds_submodule
3138 e7303626 2020-05-14 stsp run_test test_update_conflict_wt_file_vs_repo_submodule
3139 f35fa46a 2020-07-23 stsp run_test test_update_adds_symlink
3140 993e2a1b 2020-07-23 stsp run_test test_update_deletes_symlink
3141 993e2a1b 2020-07-23 stsp run_test test_update_symlink_conflicts
3142 194cb7cb 2021-01-19 stsp run_test test_update_single_file
3143 a769b60b 2021-06-27 stsp run_test test_update_file_skipped_due_to_conflict
3144 2c41dce7 2021-06-27 stsp run_test test_update_file_skipped_due_to_obstruction
3145 67c65ed7 2021-09-14 tracey run_test test_update_quiet
3146 0e039681 2021-11-15 stsp run_test test_update_binary_file
3147 b2b3fce1 2022-10-29 op run_test test_update_umask