aboutsummaryrefslogtreecommitdiff
path: root/tests/rmdir.test
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2014-09-20 13:09:14 -0500
committerRob Landley <rob@landley.net>2014-09-20 13:09:14 -0500
commit387edf547eb09b27ca6d49772eb048d729f09cf4 (patch)
tree59d482f33735690cab6d90723393afa1e2c8dce5 /tests/rmdir.test
parentd3df423a6cde0c6282658ff628574771d3824d71 (diff)
downloadtoybox-387edf547eb09b27ca6d49772eb048d729f09cf4.tar.gz
Move testsuite out of scripts/test into its own top level tests directory, and make ctrl-c kill "make test" more reliably.
Diffstat (limited to 'tests/rmdir.test')
-rwxr-xr-xtests/rmdir.test55
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/rmdir.test b/tests/rmdir.test
new file mode 100755
index 00000000..a7b027e0
--- /dev/null
+++ b/tests/rmdir.test
@@ -0,0 +1,55 @@
+#!/bin/bash
+
+[ -f testing.sh ] && . testing.sh
+
+#testing "name" "command" "result" "infile" "stdin"
+
+mkdir one
+testing "rmdir" "rmdir one && [ ! -d one ] && echo yes" "yes\n" "" ""
+
+touch walrus
+testing "rmdir file" \
+ "rmdir walrus 2> /dev/null || [ -f walrus ] && echo yes" "yes\n" "" ""
+
+mkdir one two
+testing "rmdir one two" \
+ "rmdir one two 2> /dev/null && [ ! -d one ] && [ ! -d two ] && echo yes" \
+ "yes\n" "" ""
+
+mkdir one two three
+testing "rmdir one missing two file three" \
+ "rmdir one missing two walrus three 2> /dev/null || [ ! -d three ] && echo yes" \
+ "yes\n" "" ""
+rm walrus
+
+mkdir one
+chmod 000 one
+testing "rmdir mode 000" "rmdir one && [ ! -d one ] && echo yes" "yes\n" "" ""
+
+mkdir temp
+touch temp/thing
+testing "rmdir non-empty" \
+ "rmdir temp 2>/dev/null || [ -d temp ] && echo yes" "yes\n" "" ""
+testing "rmdir -p dir/file" \
+ "rmdir -p temp/thing 2>/dev/null || [ -f temp/thing ] && echo yes" \
+ "yes\n" "" ""
+
+mkdir -p temp/one/two/three
+testing "rmdir -p part of path" \
+ "rmdir -p temp/one/two/three 2>/dev/null || [ -d temp ] && [ ! -e temp/one ] && echo yes" \
+ "yes\n" "" ""
+rm -rf temp
+
+
+mkdir -p one/two/three
+testing "rmdir -p one/two/three" \
+ "rmdir -p one/two/three && [ ! -e one ] && echo yes" "yes\n" "" ""
+
+mkdir -p one/two/three
+testing "rmdir -p one/two/three/" \
+ "rmdir -p one/two/three/ && [ ! -e one ] && echo yes" "yes\n" "" ""
+
+#mkdir -p one/two/three
+#chmod 000 one/two/three one/two one
+#testing "rmdir -p one/two/three" \
+# "rmdir -p one/two/three && [ ! -e one ] && echo yes" "yes\n" "" ""