aboutsummaryrefslogtreecommitdiff
path: root/tests/test/script/runner/output.testscript
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/runner/output.testscript
parent09d60452a80d14d9b8bf3a9395860b50683fa1e8 (diff)
Rename .test/test{} to .testscript/testscript{}
Diffstat (limited to 'tests/test/script/runner/output.testscript')
-rw-r--r--tests/test/script/runner/output.testscript87
1 files changed, 87 insertions, 0 deletions
diff --git a/tests/test/script/runner/output.testscript b/tests/test/script/runner/output.testscript
new file mode 100644
index 0000000..ec9ff92
--- /dev/null
+++ b/tests/test/script/runner/output.testscript
@@ -0,0 +1,87 @@
+# file : tests/test/script/runner/output.testscript
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+# license : MIT; see accompanying LICENSE file
+
+# Some of the tests below (*/script-wd, before/*) are probably more appropriate
+# for tests/test/script/script-integration/testscript. Nevertheless let's not
+# spread the feature tests among several places.
+#
+
+.include ../common.testscript
+
+: after
+:
+{
+ : keep
+ :
+ {
+ : cleanup
+ :
+ $c <'touch a' && $b config.test.output=keep;
+ test -f test/1/a
+
+ : teardown
+ :
+ $c <<EOI && $b config.test.output=keep;
+ +touch a &!a
+ -rm a
+ EOI
+ test -f test/a
+
+ : script-wd
+ :
+ : There is no working directory created for a empty script, so add a dummy
+ : assignment here.
+ :
+ $c <'a=b' && $b config.test.output=keep;
+ test -d test
+ }
+
+ : clean
+ :
+ {
+ : cleanup
+ :
+ $c <'touch a' && $b config.test.output=clean;
+ test -f test/1/a == 1
+
+ : teardown
+ :
+ $c <<EOI && $b config.test.output=clean;
+ +touch a &!a
+ -rm a
+ EOI
+ test -f test/a == 1
+
+ : script-wd
+ :
+ : There is no working directory created for a empty script, so add a dummy
+ : assignment here.
+ :
+ $c <'a=b' && $b config.test.output=clean;
+ test -d test == 1
+ }
+}
+
+: before
+:
+{
+ : fail
+ :
+ mkdir test &!test/;
+ $c <'true' && $b config.test.output=fail@clean 2>>/EOE != 0
+ error: working directory test/ exists at the beginning of the test
+ EOE
+
+ : warn
+ :
+ mkdir test &!test/;
+ $c <'true' && $b config.test.output=warn@clean 2>>/EOE
+ warning: working directory test/ exists at the beginning of the test
+ EOE
+
+ : clean
+ :
+ mkdir test &!test/;
+ $c <'true' && $b config.test.output=clean@clean
+}