Blob


1 #!/bin/sh
2 #
3 # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 #
5 # Permission to use, copy, modify, and distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
8 #
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 . ./common.sh
19 function test_rm_basic {
20 local testroot=`test_init rm_basic`
22 got checkout $testroot/repo $testroot/wt > /dev/null
23 ret="$?"
24 if [ "$ret" != "0" ]; then
25 test_done "$testroot" "$ret"
26 return 1
27 fi
29 echo 'D alpha' > $testroot/stdout.expected
30 echo 'D beta' >> $testroot/stdout.expected
31 (cd $testroot/wt && got rm alpha beta > $testroot/stdout)
33 cmp -s $testroot/stdout.expected $testroot/stdout
34 ret="$?"
35 if [ "$ret" != "0" ]; then
36 diff -u $testroot/stdout.expected $testroot/stdout
37 test_done "$testroot" "$ret"
38 return 1
39 fi
41 (cd $testroot/wt && got status > $testroot/stdout)
43 cmp -s $testroot/stdout.expected $testroot/stdout
44 ret="$?"
45 if [ "$ret" != "0" ]; then
46 diff -u $testroot/stdout.expected $testroot/stdout
47 test_done "$testroot" "$ret"
48 return 1
49 fi
51 for f in alpha beta; do
52 if [ -e $testroot/wt/$f ]; then
53 echo "removed file $f still exists on disk" >&2
54 test_done "$testroot" "1"
55 return 1
56 fi
57 done
59 test_done "$testroot" "0"
60 }
62 function test_rm_with_local_mods {
63 local testroot=`test_init rm_with_local_mods`
65 got checkout $testroot/repo $testroot/wt > /dev/null
66 ret="$?"
67 if [ "$ret" != "0" ]; then
68 test_done "$testroot" "$ret"
69 return 1
70 fi
72 echo "modified beta" > $testroot/wt/beta
73 echo 'got: beta: file contains modifications' \
74 > $testroot/stderr.expected
75 (cd $testroot/wt && got rm beta 2>$testroot/stderr)
77 cmp -s $testroot/stderr.expected $testroot/stderr
78 ret="$?"
79 if [ "$ret" != "0" ]; then
80 diff -u $testroot/stderr.expected $testroot/stderr
81 test_done "$testroot" "$ret"
82 return 1
83 fi
85 echo 'D beta' > $testroot/stdout.expected
86 (cd $testroot/wt && got rm -f beta > $testroot/stdout)
88 cmp -s $testroot/stdout.expected $testroot/stdout
89 ret="$?"
90 if [ "$ret" != "0" ]; then
91 diff -u $testroot/stdout.expected $testroot/stdout
92 fi
94 if [ -e $testroot/wt/beta ]; then
95 echo "removed file beta still exists on disk" >&2
96 test_done "$testroot" "1"
97 return 1
98 fi
100 test_done "$testroot" "$ret"
103 function test_double_rm {
104 local testroot=`test_init double_rm`
106 got checkout $testroot/repo $testroot/wt > /dev/null
107 ret="$?"
108 if [ "$ret" != "0" ]; then
109 test_done "$testroot" "$ret"
110 return 1
111 fi
113 (cd $testroot/wt && got rm beta > /dev/null)
115 for fflag in "" "-f"; do
116 echo -n > $testroot/stderr.expected
117 (cd $testroot/wt && got rm $fflag beta > $testroot/stdout \
118 2> $testroot/stderr)
119 ret="$?"
120 if [ "$ret" != "0" ]; then
121 echo "got rm command failed unexpectedly" >&2
122 diff -u $testroot/stderr.expected $testroot/stderr
123 test_done "$testroot" "$ret"
124 return 1
125 fi
126 echo -n > $testroot/stdout.expected
127 cmp -s $testroot/stdout.expected $testroot/stdout
128 ret="$?"
129 if [ "$ret" != "0" ]; then
130 diff -u $testroot/stdout.expected $testroot/stdout
131 test_done "$testroot" "$ret"
132 return 1
133 fi
134 done
135 test_done "$testroot" "0"
138 function test_rm_and_add_elsewhere {
139 local testroot=`test_init rm_and_add_elsewhere`
141 got checkout $testroot/repo $testroot/wt > /dev/null
142 ret="$?"
143 if [ "$ret" != "0" ]; then
144 test_done "$testroot" "$ret"
145 return 1
146 fi
148 (cd $testroot/wt && mv alpha epsilon/)
150 (cd $testroot/wt && got status > $testroot/stdout)
152 echo '! alpha' > $testroot/stdout.expected
153 echo '? epsilon/alpha' >> $testroot/stdout.expected
154 cmp -s $testroot/stdout.expected $testroot/stdout
155 ret="$?"
156 if [ "$ret" != "0" ]; then
157 diff -u $testroot/stdout.expected $testroot/stdout
158 test_done "$testroot" "$ret"
159 return 1
160 fi
162 echo 'D alpha' > $testroot/stdout.expected
163 (cd $testroot/wt && got rm alpha > $testroot/stdout)
165 cmp -s $testroot/stdout.expected $testroot/stdout
166 ret="$?"
167 if [ "$ret" != "0" ]; then
168 diff -u $testroot/stdout.expected $testroot/stdout
169 test_done "$testroot" "$ret"
170 return 1
171 fi
173 echo 'A epsilon/alpha' > $testroot/stdout.expected
174 (cd $testroot/wt && got add epsilon/alpha > $testroot/stdout)
176 cmp -s $testroot/stdout.expected $testroot/stdout
177 ret="$?"
178 if [ "$ret" != "0" ]; then
179 diff -u $testroot/stdout.expected $testroot/stdout
180 test_done "$testroot" "$ret"
181 return 1
182 fi
184 (cd $testroot/wt && got status > $testroot/stdout)
186 echo 'D alpha' > $testroot/stdout.expected
187 echo 'A epsilon/alpha' >> $testroot/stdout.expected
188 cmp -s $testroot/stdout.expected $testroot/stdout
189 ret="$?"
190 if [ "$ret" != "0" ]; then
191 diff -u $testroot/stdout.expected $testroot/stdout
192 fi
193 test_done "$testroot" "$ret"
196 function test_rm_directory {
197 local testroot=`test_init rm_directory`
199 got checkout $testroot/repo $testroot/wt > /dev/null
200 ret="$?"
201 if [ "$ret" != "0" ]; then
202 test_done "$testroot" "$ret"
203 return 1
204 fi
206 (cd $testroot/wt && got rm . > $testroot/stdout 2> $testroot/stderr)
207 ret="$?"
208 echo "got: removing directories requires -R option" \
209 > $testroot/stderr.expected
210 cmp -s $testroot/stderr.expected $testroot/stderr
211 ret="$?"
212 if [ "$ret" != "0" ]; then
213 diff -u $testroot/stderr.expected $testroot/stderr
214 test_done "$testroot" "$ret"
215 return 1
216 fi
218 echo -n > $testroot/stdout.expected
219 cmp -s $testroot/stdout.expected $testroot/stdout
220 ret="$?"
221 if [ "$ret" != "0" ]; then
222 diff -u $testroot/stdout.expected $testroot/stdout
223 test_done "$testroot" "$ret"
224 return 1
225 fi
227 (cd $testroot/wt && got rm -R . > $testroot/stdout)
229 echo 'D alpha' > $testroot/stdout.expected
230 echo 'D beta' >> $testroot/stdout.expected
231 echo 'D epsilon/zeta' >> $testroot/stdout.expected
232 echo 'D gamma/delta' >> $testroot/stdout.expected
234 cmp -s $testroot/stdout.expected $testroot/stdout
235 ret="$?"
236 if [ "$ret" != "0" ]; then
237 diff -u $testroot/stdout.expected $testroot/stdout
238 test_done "$testroot" "$ret"
239 return 1
240 fi
242 test_done "$testroot" "$ret"
245 function test_rm_directory_keep_files {
246 local testroot=`test_init rm_directory`
248 got checkout $testroot/repo $testroot/wt > /dev/null
249 ret="$?"
250 if [ "$ret" != "0" ]; then
251 test_done "$testroot" "$ret"
252 return 1
253 fi
255 (cd $testroot/wt && got rm . > $testroot/stdout 2> $testroot/stderr)
256 ret="$?"
257 echo "got: removing directories requires -R option" \
258 > $testroot/stderr.expected
259 cmp -s $testroot/stderr.expected $testroot/stderr
260 ret="$?"
261 if [ "$ret" != "0" ]; then
262 diff -u $testroot/stderr.expected $testroot/stderr
263 test_done "$testroot" "$ret"
264 return 1
265 fi
267 echo -n > $testroot/stdout.expected
268 cmp -s $testroot/stdout.expected $testroot/stdout
269 ret="$?"
270 if [ "$ret" != "0" ]; then
271 diff -u $testroot/stdout.expected $testroot/stdout
272 test_done "$testroot" "$ret"
273 return 1
274 fi
276 (cd $testroot/wt && got rm -k -R . > $testroot/stdout)
278 echo 'D alpha' > $testroot/stdout.expected
279 echo 'D beta' >> $testroot/stdout.expected
280 echo 'D epsilon/zeta' >> $testroot/stdout.expected
281 echo 'D gamma/delta' >> $testroot/stdout.expected
283 cmp -s $testroot/stdout.expected $testroot/stdout
284 ret="$?"
285 if [ "$ret" != "0" ]; then
286 diff -u $testroot/stdout.expected $testroot/stdout
287 test_done "$testroot" "$ret"
288 return 1
289 fi
291 (cd $testroot/wt && got st . > $testroot/stdout)
293 echo 'D alpha' > $testroot/stdout.expected
294 echo 'D beta' >> $testroot/stdout.expected
295 echo 'D epsilon/zeta' >> $testroot/stdout.expected
296 echo 'D gamma/delta' >> $testroot/stdout.expected
298 cmp -s $testroot/stdout.expected $testroot/stdout
299 ret="$?"
300 if [ "$ret" != "0" ]; then
301 diff -u $testroot/stdout.expected $testroot/stdout
302 test_done "$testroot" "$ret"
303 return 1
304 fi
306 (cd $testroot/wt && got commit -m "keep" > /dev/null)
307 (cd $testroot/wt && got st . > $testroot/stdout)
309 echo '? alpha' > $testroot/stdout.expected
310 echo '? beta' >> $testroot/stdout.expected
311 echo '? epsilon/zeta' >> $testroot/stdout.expected
312 echo '? gamma/delta' >> $testroot/stdout.expected
314 cmp -s $testroot/stdout.expected $testroot/stdout
315 ret="$?"
316 if [ "$ret" != "0" ]; then
317 diff -u $testroot/stdout.expected $testroot/stdout
318 test_done "$testroot" "$ret"
319 return 1
320 fi
322 test_done "$testroot" "$ret"
325 run_test test_rm_basic
326 run_test test_rm_with_local_mods
327 run_test test_double_rm
328 run_test test_rm_and_add_elsewhere
329 run_test test_rm_directory
330 run_test test_rm_directory_keep_files