diff options
Diffstat (limited to 'unit-tests/test/script/parser/include.testscript')
-rw-r--r-- | unit-tests/test/script/parser/include.testscript | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/unit-tests/test/script/parser/include.testscript b/unit-tests/test/script/parser/include.testscript new file mode 100644 index 0000000..5e31f0d --- /dev/null +++ b/unit-tests/test/script/parser/include.testscript @@ -0,0 +1,104 @@ +# file : unit-tests/test/script/parser/include.testscript +# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file + +: none +: +$* <<EOI +.include +.include --once +EOI + +: empty +: +touch foo.testscript; +$* <<EOI +.include foo.testscript +.include --once foo.testscript +EOI + +: one +: +cat <"cmd" >=foo.testscript; +$* <<EOI >>EOO +.include foo.testscript +EOI +cmd +EOO + +: multiple +: +cat <"cmd foo" >=foo.testscript; +cat <"cmd bar" >=bar.testscript; +$* <<EOI >>EOO +.include foo.testscript bar.testscript +EOI +cmd foo +cmd bar +EOO + +: once +: +cat <"cmd" >=foo.testscript; +$* <<EOI >>EOO +.include foo.testscript +x +.include --once foo.testscript +.include --once bar/../foo.testscript +y +.include ../once/foo.testscript +EOI +cmd +x +y +cmd +EOO + +: group-id +: +cat <<EOI >=foo.testscript; +{ + x = b +} +EOI +$* -s -i <<EOI >>EOO +x = a +.include foo.testscript +EOI +{ + { # 2-foo-1 + } +} +EOO + +: test-id +: +cat <<EOI >=foo.testscript; +cmd +EOI +$* -s -i <<EOI >>EOO +x = a +.include foo.testscript +EOI +{ + { # 2-foo-1 + cmd + } +} +EOO + +: invalid-path +: +$* <<EOI 2>>EOE != 0 +.include "" +EOI +testscript:1:2: error: invalid testscript include path '' +EOE + +: unable-open +: +$* <<EOI 2>>~/EOE/ != 0 +.include foo.testscript +EOI +/testscript:1:2: error: unable to read testscript foo.testscript: .+/ +EOE |