aboutsummaryrefslogtreecommitdiff
path: root/tests/test/script/builtin/rm.test
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-09-03 16:37:32 +0200
committerKaren Arutyunov <karen@codesynthesis.com>2018-09-04 16:29:59 +0300
commit5007870b52aa549971824959a55ad3bb886f09e0 (patch)
treeb0ef7f24c0b9ece2ed23f3c1792f16da324e4171 /tests/test/script/builtin/rm.test
parent09d60452a80d14d9b8bf3a9395860b50683fa1e8 (diff)
Rename .test/test{} to .testscript/testscript{}
Diffstat (limited to 'tests/test/script/builtin/rm.test')
-rw-r--r--tests/test/script/builtin/rm.test119
1 files changed, 0 insertions, 119 deletions
diff --git a/tests/test/script/builtin/rm.test b/tests/test/script/builtin/rm.test
deleted file mode 100644
index 3679ff1..0000000
--- a/tests/test/script/builtin/rm.test
+++ /dev/null
@@ -1,119 +0,0 @@
-# file : tests/test/script/builtin/rm.test
-# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
-# license : MIT; see accompanying LICENSE file
-
-.include ../common.test
-
-: no-args
-:
-{
- : fail
- :
- : Removing with no arguments fails.
- :
- $c <'rm 2>"rm: missing file" == 1' && $b
-
- : force
- :
- : Removing with no arguments succeeds with -f option.
- :
- $c <'rm -f' && $b
-}
-
-: file
-:
-{
- : exists
- :
- : Removing existing file succeeds.
- :
- $c <<EOI && $b
- touch a &!a;
- rm a
- EOI
-
- : not-exists
- :
- {
- : fail
- :
- : Removing non-existing file fails.
- :
- $c <<EOI && $b
- rm a 2>>/~%EOE% == 1
- %rm: unable to remove '.+/file/not-exists/fail/test/1/a': .+%
- EOE
- EOI
-
- : force
- :
- : Removing non-existing file succeeds with -f option.
- :
- $c <'rm -f a' && $b
- }
-}
-
-: dir
-:
-{
- : default
- :
- : Removing directory fails by default.
- :
- $c <<EOI && $b
- mkdir a;
- rm a 2>"rm: '$normalize([path] $~/a)' is a directory" == 1
- EOI
-
- : recursive
- :
- : Removing directory succeeds with -r option.
- :
- $c <<EOI && $b
- mkdir -p a/b &!a &!a/b;
- rm -r a
- EOI
-
- : scope
- :
- : Removing scope directory fails.
- :
- $c <<EOI && $b
- rm -r ./ 2>"rm: '([string] $~)' contains test working directory '$~'" == 1
- EOI
-}
-
-: path
-:
-{
- : empty
- :
- : Removing an empty path fails.
- :
- $c <<EOI && $b
- rm '' 2>"rm: invalid path ''" == 1
- EOI
-
- : outside-scope
- :
- : Need to use a path that unlikely exists (not to remove something useful).
- :
- {
- : fail
- :
- : Removing path outside the testscript working directory fails.
- :
- $c <<EOI && $b
- rm ../../a/b/c 2>>/~%EOE% == 1
- %rm: '.+/path/outside-scope/fail/a/b/c' is out of working directory '.+/path/outside-scope/fail/test'%
- EOE
- EOI
-
- : force
- :
- : Removing path outside the testscript working directory succeeds with -f
- : option.
- :
- $c <'rm -f ../../a/b/c' && $b
- }
-}