aboutsummaryrefslogtreecommitdiff
path: root/tests/function
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-06-22 20:06:01 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-06-26 13:46:57 +0300
commitf65377448e74fc7e575e4df258fb0a48a09e39cc (patch)
tree1339f77be0b16a46c5e7d500feec037021bfb3d8 /tests/function
parente755de789e146beea66bf6a4b55685034502df41 (diff)
Add support for $path_search() and $path_match()
Diffstat (limited to 'tests/function')
-rw-r--r--tests/function/filesystem/buildfile5
-rw-r--r--tests/function/filesystem/testscript155
2 files changed, 160 insertions, 0 deletions
diff --git a/tests/function/filesystem/buildfile b/tests/function/filesystem/buildfile
new file mode 100644
index 0000000..ade9a68
--- /dev/null
+++ b/tests/function/filesystem/buildfile
@@ -0,0 +1,5 @@
+# file : tests/function/filesystem/buildfile
+# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# license : MIT; see accompanying LICENSE file
+
+./: test{testscript} $b
diff --git a/tests/function/filesystem/testscript b/tests/function/filesystem/testscript
new file mode 100644
index 0000000..5c8a9a6
--- /dev/null
+++ b/tests/function/filesystem/testscript
@@ -0,0 +1,155 @@
+# file : tests/function/filesystem/testscript
+# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# license : MIT; see accompanying LICENSE file
+
+.include ../../common.test
+
+: path-search
+:
+{
+ +mkdir -p a/b
+
+ : pattern-path
+ :
+ : Test overloads for pattern being of the path type.
+ :
+ {
+ : start-abs-dir
+ :
+ $* <'print $path_search([path] "b**/", [dir_path] $src_base/../../a)' >/'b/'
+
+ : start-relative-dir
+ :
+ $* <'print $path_search([path] "b**/", [dir_path] ../../a)' 2>>~%EOE% != 0
+ %error: start directory '.+' is relative%
+ % info: pattern '.+' is relative%
+ EOE
+
+ : start-untyped
+ :
+ $* <'print $path_search([path] "b**/", $src_base/../../a)' >/'b/'
+
+ : start-multiple-names
+ :
+ $* <'print $path_search([path] "b**/", a b)' 2>>EOE != 0
+ error: invalid argument: invalid dir_path value: multiple names
+ EOE
+ }
+
+ : pattern-untyped
+ :
+ : Test overloads for pattern being untyped.
+ :
+ {
+ : start-dir
+ :
+ $* <'print $path_search("b**/", [dir_path] $src_base/../../a)' >/'b/'
+
+ : start-untyped
+ :
+ $* <'print $path_search("b**/", $src_base/../../a)' >/'b/'
+
+ : abs-pattern
+ :
+ if ($test.target == $build.host)
+ {
+ touch b;
+ $* <'print $path_search("$src_base/b*")' >>/"EOO"
+ $out_base/test/$@/b
+ EOO
+ }
+ }
+
+ : pattern-multiple-names
+ :
+ {
+ : dir
+ :
+ touch b;
+ $* <'print $path_search(a b, $src_base)' 2>>EOE != 0
+ error: invalid argument: invalid path value: multiple names
+ EOE
+ }
+}
+
+: path-match
+:
+{
+ : string
+ :
+ : Test overloads for at least one of the first two arguments being of the
+ : string type.
+ :
+ {
+ : string-string
+ :
+ $* <'print $path_match([string] "b*", [string] "b")' >'true'
+
+ : string-untyped
+ :
+ $* <'print $path_match([string] "b*", "b")' >'true'
+
+ : untyped-string
+ :
+ $* <'print $path_match("b*", [string] "b")' >'true'
+
+ : string-path
+ :
+ $* <'print $path_match([string] "b*", [path] "b")' 2>>~/EOE/ != 0
+ <stdin>:1:8: error: unmatched call to path_match(string, path)
+ /.{11}
+ EOE
+ }
+
+ : path
+ :
+ : Test overloads for at least one of the first two arguments being of the
+ : path type.
+ :
+ {
+ : path-path
+ :
+ $* <'print $path_match([path] "b**", [path] "a/b")' >'true'
+
+ : path-path-untyped
+ :
+ $* <'print $path_match([path] "b**", [path] "a/b", "$src_base")' >'true'
+
+ : path-untyped
+ :
+ $* <'print $path_match([path] "b**", "a/b")' >'true'
+
+ : path-untyped-dir
+ :
+ $* <'print $path_match([path] "b**", "a/b", $src_base)' >'true'
+
+ : untyped-path
+ :
+ $* <'print $path_match("b**", [path] "a/b")' >'true'
+ }
+
+ : untyped
+ :
+ : Test overloads for the first two arguments being untyped.
+ :
+ {
+ : converted-to-strings
+ :
+ $* <'print $path_match("b**", "b")' >'true'
+
+ : converted-to-paths-due-to
+ {
+ : pattern
+ :
+ $* <'print $path_match("b**/", "a/b/")' >'true'
+
+ : entry
+ :
+ $* <'print $path_match("b**", "a/b")' >'true'
+
+ : start-dir
+ :
+ $* <'print $path_match("s***/", "", "$src_base")' >'true'
+ }
+ }
+}