3 # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
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.
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.
20 local testroot
=`test_init rm_basic`
22 got checkout
$testroot/repo
$testroot/wt
> /dev
/null
24 if [ "$ret" != "0" ]; then
25 test_done
"$testroot" "$ret"
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
35 if [ "$ret" != "0" ]; then
36 diff -u $testroot/stdout.expected
$testroot/stdout
37 test_done
"$testroot" "$ret"
41 (cd $testroot/wt
&& got status
> $testroot/stdout
)
43 cmp -s $testroot/stdout.expected
$testroot/stdout
45 if [ "$ret" != "0" ]; then
46 diff -u $testroot/stdout.expected
$testroot/stdout
47 test_done
"$testroot" "$ret"
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"
59 test_done
"$testroot" "0"
62 test_rm_with_local_mods
() {
63 local testroot
=`test_init rm_with_local_mods`
65 got checkout
$testroot/repo
$testroot/wt
> /dev
/null
67 if [ "$ret" != "0" ]; then
68 test_done
"$testroot" "$ret"
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
79 if [ "$ret" != "0" ]; then
80 diff -u $testroot/stderr.expected
$testroot/stderr
81 test_done
"$testroot" "$ret"
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
90 if [ "$ret" != "0" ]; then
91 diff -u $testroot/stdout.expected
$testroot/stdout
94 if [ -e $testroot/wt
/beta
]; then
95 echo "removed file beta still exists on disk" >&2
96 test_done
"$testroot" "1"
100 test_done
"$testroot" "$ret"
104 local testroot
=`test_init double_rm`
106 got checkout
$testroot/repo
$testroot/wt
> /dev
/null
108 if [ "$ret" != "0" ]; then
109 test_done
"$testroot" "$ret"
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 \
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"
126 echo -n > $testroot/stdout.expected
127 cmp -s $testroot/stdout.expected
$testroot/stdout
129 if [ "$ret" != "0" ]; then
130 diff -u $testroot/stdout.expected
$testroot/stdout
131 test_done
"$testroot" "$ret"
135 test_done
"$testroot" "0"
138 test_rm_and_add_elsewhere
() {
139 local testroot
=`test_init rm_and_add_elsewhere`
141 got checkout
$testroot/repo
$testroot/wt
> /dev
/null
143 if [ "$ret" != "0" ]; then
144 test_done
"$testroot" "$ret"
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
156 if [ "$ret" != "0" ]; then
157 diff -u $testroot/stdout.expected
$testroot/stdout
158 test_done
"$testroot" "$ret"
162 echo 'D alpha' > $testroot/stdout.expected
163 (cd $testroot/wt
&& got
rm alpha
> $testroot/stdout
)
165 cmp -s $testroot/stdout.expected
$testroot/stdout
167 if [ "$ret" != "0" ]; then
168 diff -u $testroot/stdout.expected
$testroot/stdout
169 test_done
"$testroot" "$ret"
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
178 if [ "$ret" != "0" ]; then
179 diff -u $testroot/stdout.expected
$testroot/stdout
180 test_done
"$testroot" "$ret"
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
190 if [ "$ret" != "0" ]; then
191 diff -u $testroot/stdout.expected
$testroot/stdout
193 test_done
"$testroot" "$ret"
196 test_rm_directory
() {
197 local testroot
=`test_init rm_directory`
199 got checkout
$testroot/repo
$testroot/wt
> /dev
/null
201 if [ "$ret" != "0" ]; then
202 test_done
"$testroot" "$ret"
206 (cd $testroot/wt
&& got
rm .
> $testroot/stdout
2> $testroot/stderr
)
208 echo "got: removing directories requires -R option" \
209 > $testroot/stderr.expected
210 cmp -s $testroot/stderr.expected
$testroot/stderr
212 if [ "$ret" != "0" ]; then
213 diff -u $testroot/stderr.expected
$testroot/stderr
214 test_done
"$testroot" "$ret"
218 echo -n > $testroot/stdout.expected
219 cmp -s $testroot/stdout.expected
$testroot/stdout
221 if [ "$ret" != "0" ]; then
222 diff -u $testroot/stdout.expected
$testroot/stdout
223 test_done
"$testroot" "$ret"
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
236 if [ "$ret" != "0" ]; then
237 diff -u $testroot/stdout.expected
$testroot/stdout
238 test_done
"$testroot" "$ret"
242 (cd $testroot/wt
&& ls -l |
sed '/^total/d' > $testroot/stdout
)
244 echo -n '' > $testroot/stdout.expected
246 cmp -s $testroot/stdout.expected
$testroot/stdout
248 if [ "$ret" != "0" ]; then
249 diff -u $testroot/stdout.expected
$testroot/stdout
250 test_done
"$testroot" "$ret"
254 (cd $testroot/wt
&& ls -l |
sed '/^total/d' > $testroot/stdout
)
256 echo -n '' > $testroot/stdout.expected
258 cmp -s $testroot/stdout.expected
$testroot/stdout
260 if [ "$ret" != "0" ]; then
261 diff -u $testroot/stdout.expected
$testroot/stdout
262 test_done
"$testroot" "$ret"
266 test_done
"$testroot" "$ret"
269 test_rm_directory_keep_files
() {
270 local testroot
=`test_init rm_directory_keep_files`
272 got checkout
$testroot/repo
$testroot/wt
> /dev
/null
274 if [ "$ret" != "0" ]; then
275 test_done
"$testroot" "$ret"
279 (cd $testroot/wt
&& got
rm .
> $testroot/stdout
2> $testroot/stderr
)
281 echo "got: removing directories requires -R option" \
282 > $testroot/stderr.expected
283 cmp -s $testroot/stderr.expected
$testroot/stderr
285 if [ "$ret" != "0" ]; then
286 diff -u $testroot/stderr.expected
$testroot/stderr
287 test_done
"$testroot" "$ret"
291 echo -n > $testroot/stdout.expected
292 cmp -s $testroot/stdout.expected
$testroot/stdout
294 if [ "$ret" != "0" ]; then
295 diff -u $testroot/stdout.expected
$testroot/stdout
296 test_done
"$testroot" "$ret"
300 (cd $testroot/wt
&& got
rm -k -R .
> $testroot/stdout
)
302 echo 'D alpha' > $testroot/stdout.expected
303 echo 'D beta' >> $testroot/stdout.expected
304 echo 'D epsilon/zeta' >> $testroot/stdout.expected
305 echo 'D gamma/delta' >> $testroot/stdout.expected
307 cmp -s $testroot/stdout.expected
$testroot/stdout
309 if [ "$ret" != "0" ]; then
310 diff -u $testroot/stdout.expected
$testroot/stdout
311 test_done
"$testroot" "$ret"
315 (cd $testroot/wt
&& got st .
> $testroot/stdout
)
317 echo 'D alpha' > $testroot/stdout.expected
318 echo 'D beta' >> $testroot/stdout.expected
319 echo 'D epsilon/zeta' >> $testroot/stdout.expected
320 echo 'D gamma/delta' >> $testroot/stdout.expected
322 cmp -s $testroot/stdout.expected
$testroot/stdout
324 if [ "$ret" != "0" ]; then
325 diff -u $testroot/stdout.expected
$testroot/stdout
326 test_done
"$testroot" "$ret"
330 (cd $testroot/wt
&& got commit
-m "keep" > /dev
/null
)
331 (cd $testroot/wt
&& got st .
> $testroot/stdout
)
333 echo '? alpha' > $testroot/stdout.expected
334 echo '? beta' >> $testroot/stdout.expected
335 echo '? epsilon/zeta' >> $testroot/stdout.expected
336 echo '? gamma/delta' >> $testroot/stdout.expected
338 cmp -s $testroot/stdout.expected
$testroot/stdout
340 if [ "$ret" != "0" ]; then
341 diff -u $testroot/stdout.expected
$testroot/stdout
342 test_done
"$testroot" "$ret"
346 test_done
"$testroot" "$ret"
350 local testroot
=`test_init rm_subtree`
352 got checkout
$testroot/repo
$testroot/wt
> /dev
/null
354 if [ "$ret" != "0" ]; then
355 test_done
"$testroot" "$ret"
359 mkdir
-p $testroot/wt
/epsilon
/foo
/bar
/baz
360 mkdir
-p $testroot/wt
/epsilon
/foo
/bar
/bax
361 echo "new file" > $testroot/wt
/epsilon
/foo
/a.o
362 echo "new file" > $testroot/wt
/epsilon
/foo
/a.o
363 echo "new file" > $testroot/wt
/epsilon
/foo
/bar
/b.o
364 echo "new file" > $testroot/wt
/epsilon
/foo
/bar
/b.d
365 echo "new file" > $testroot/wt
/epsilon
/foo
/bar
/baz
/f.o
366 echo "new file" > $testroot/wt
/epsilon
/foo
/bar
/baz
/f.d
367 echo "new file" > $testroot/wt
/epsilon
/foo
/bar
/baz
/c.o
368 echo "new file" > $testroot/wt
/epsilon
/foo
/bar
/baz
/c.d
369 echo "new file" > $testroot/wt
/epsilon
/foo
/bar
/bax
/e.o
370 echo "new file" > $testroot/wt
/epsilon
/foo
/bar
/bax
/e.d
371 echo "new file" > $testroot/wt
/epsilon
/foo
/bar
/bax
/x.o
372 echo "new file" > $testroot/wt
/epsilon
/foo
/bar
/bax
/x.d
373 (cd $testroot/wt
&& got add
-R epsilon
>/dev
/null
)
374 (cd $testroot/wt
&& got commit
-m "add subtree" >/dev
/null
)
376 # now delete and revert the entire subtree
377 (cd $testroot/wt
&& got
rm -R epsilon
/foo
>/dev
/null
)
379 if [ -d $testroot/wt
/epsilon
/foo
]; then
380 echo "removed dir epsilon/foo still exists on disk" >&2
381 test_done
"$testroot" "1"
385 echo "D epsilon/foo/a.o" > $testroot/stdout.expected
386 echo "D epsilon/foo/bar/b.d" >> $testroot/stdout.expected
387 echo "D epsilon/foo/bar/b.o" >> $testroot/stdout.expected
388 echo "D epsilon/foo/bar/bax/e.d" >> $testroot/stdout.expected
389 echo "D epsilon/foo/bar/bax/e.o" >> $testroot/stdout.expected
390 echo "D epsilon/foo/bar/bax/x.d" >> $testroot/stdout.expected
391 echo "D epsilon/foo/bar/bax/x.o" >> $testroot/stdout.expected
392 echo "D epsilon/foo/bar/baz/c.d" >> $testroot/stdout.expected
393 echo "D epsilon/foo/bar/baz/c.o" >> $testroot/stdout.expected
394 echo "D epsilon/foo/bar/baz/f.d" >> $testroot/stdout.expected
395 echo "D epsilon/foo/bar/baz/f.o" >> $testroot/stdout.expected
397 (cd $testroot/wt
&& got status
> $testroot/stdout
)
399 cmp -s $testroot/stdout.expected
$testroot/stdout
401 if [ "$ret" != "0" ]; then
402 diff -u $testroot/stdout.expected
$testroot/stdout
404 test_done
"$testroot" "$ret"
408 local testroot
=`test_init rm_symlink`
410 (cd $testroot/repo
&& ln -s alpha alpha.link
)
411 (cd $testroot/repo
&& ln -s epsilon epsilon.link
)
412 (cd $testroot/repo
&& ln -s /etc
/passwd passwd.link
)
413 (cd $testroot/repo
&& ln -s ..
/beta epsilon
/beta.link
)
414 (cd $testroot/repo
&& ln -s nonexistent nonexistent.link
)
415 (cd $testroot/repo
&& git add .
)
416 git_commit
$testroot/repo
-m "add symlinks"
418 got checkout
$testroot/repo
$testroot/wt
> /dev
/null
420 if [ "$ret" != "0" ]; then
421 test_done
"$testroot" "$ret"
425 echo 'D alpha.link' > $testroot/stdout.expected
426 echo 'D epsilon.link' >> $testroot/stdout.expected
427 echo 'D passwd.link' >> $testroot/stdout.expected
428 echo 'D epsilon/beta.link' >> $testroot/stdout.expected
429 echo 'D nonexistent.link' >> $testroot/stdout.expected
430 (cd $testroot/wt
&& got
rm alpha.link epsilon.link passwd.link \
431 epsilon
/beta.link nonexistent.link
> $testroot/stdout
)
433 cmp -s $testroot/stdout.expected
$testroot/stdout
435 if [ "$ret" != "0" ]; then
436 diff -u $testroot/stdout.expected
$testroot/stdout
438 test_done
"$testroot" "$ret"
441 test_rm_status_code
() {
442 local testroot
=`test_init rm_status_code`
444 got checkout
$testroot/repo
$testroot/wt
> /dev
/null
446 if [ "$ret" != "0" ]; then
447 test_done
"$testroot" "$ret"
451 echo "modified beta" > $testroot/wt
/beta
453 echo "got: invalid status code 'x'" > $testroot/stderr.expected
454 (cd $testroot/wt
&& got
rm -s Mx beta
2>$testroot/stderr
)
456 cmp -s $testroot/stderr.expected
$testroot/stderr
458 if [ "$ret" != "0" ]; then
459 diff -u $testroot/stderr.expected
$testroot/stderr
460 test_done
"$testroot" "$ret"
464 rm $testroot/wt
/epsilon
/zeta
# put file into 'missing' status
466 echo 'D epsilon/zeta' > $testroot/stdout.expected
467 (cd $testroot/wt
&& got
rm -R -s '!' .
>$testroot/stdout
)
469 cmp -s $testroot/stdout.expected
$testroot/stdout
471 if [ "$ret" != "0" ]; then
472 diff -u $testroot/stdout.expected
$testroot/stdout
475 if [ ! -e $testroot/wt
/beta
]; then
476 echo "file beta was unexpectedly removed from disk" >&2
477 test_done
"$testroot" "1"
481 # put file into 'missing' status again
482 (cd $testroot/wt
&& got revert epsilon
/zeta
> /dev
/null
)
483 rm $testroot/wt
/epsilon
/zeta
485 echo 'D beta' > $testroot/stdout.expected
486 echo 'D epsilon/zeta' >> $testroot/stdout.expected
487 (cd $testroot/wt
&& got
rm -R -s 'M!' .
>$testroot/stdout
)
489 cmp -s $testroot/stdout.expected
$testroot/stdout
491 if [ "$ret" != "0" ]; then
492 diff -u $testroot/stdout.expected
$testroot/stdout
493 test_done
"$testroot" "1"
497 if [ -e $testroot/wt
/beta
]; then
498 echo "removed file beta still exists on disk" >&2
499 test_done
"$testroot" "1"
503 echo 'D beta' > $testroot/stdout.expected
504 echo 'D epsilon/zeta' >> $testroot/stdout.expected
505 (cd $testroot/wt
&& got status
> $testroot/stdout
)
506 cmp -s $testroot/stdout.expected
$testroot/stdout
508 if [ "$ret" != "0" ]; then
509 diff -u $testroot/stdout.expected
$testroot/stdout
510 test_done
"$testroot" "1"
514 test_done
"$testroot" "$ret"
519 run_test test_rm_basic
520 run_test test_rm_with_local_mods
521 run_test test_double_rm
522 run_test test_rm_and_add_elsewhere
523 run_test test_rm_directory
524 run_test test_rm_directory_keep_files
525 run_test test_rm_subtree
526 run_test test_rm_symlink
527 run_test test_rm_status_code