summaryrefslogtreecommitdiff
path: root/test/end-to-end/built-in-rules
diff options
context:
space:
mode:
authorPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-08-10 12:02:52 +0200
committerPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-08-10 14:05:00 +0200
commit588d61a178874fe48a32ebba87a278169b8d3636 (patch)
treecd5ded2fee0f94574d9a4339cd2d4390a03044a1 /test/end-to-end/built-in-rules
parentf9626c99d092774e362c0e8ac19589c7155d4923 (diff)
downloadjustbuild-588d61a178874fe48a32ebba87a278169b8d3636.tar.gz
test: Add checks for the 'symlink' built-in rule
Diffstat (limited to 'test/end-to-end/built-in-rules')
-rw-r--r--test/end-to-end/built-in-rules/TARGETS8
-rwxr-xr-xtest/end-to-end/built-in-rules/symlink_config.sh55
2 files changed, 62 insertions, 1 deletions
diff --git a/test/end-to-end/built-in-rules/TARGETS b/test/end-to-end/built-in-rules/TARGETS
index e4322e15..f37849ae 100644
--- a/test/end-to-end/built-in-rules/TARGETS
+++ b/test/end-to-end/built-in-rules/TARGETS
@@ -16,9 +16,15 @@
, "test": ["tree.sh"]
, "deps": [["end-to-end", "tool-under-test"]]
}
+, "symlink_config":
+ { "type": ["@", "rules", "shell/test", "script"]
+ , "name": ["symlink_config"]
+ , "test": ["symlink_config.sh"]
+ , "deps": [["end-to-end", "tool-under-test"]]
+ }
, "TESTS":
{ "type": "install"
, "tainted": ["test"]
- , "deps": ["generic_out_dirs", "filegen_config", "tree"]
+ , "deps": ["generic_out_dirs", "filegen_config", "tree", "symlink_config"]
}
}
diff --git a/test/end-to-end/built-in-rules/symlink_config.sh b/test/end-to-end/built-in-rules/symlink_config.sh
new file mode 100755
index 00000000..2af9240f
--- /dev/null
+++ b/test/end-to-end/built-in-rules/symlink_config.sh
@@ -0,0 +1,55 @@
+#!/bin/bash
+# Copyright 2022 Huawei Cloud Computing Technology Co., Ltd.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+set -e
+
+readonly LBRDIR="$TMPDIR/local-build-root"
+
+touch ROOT
+
+cat <<'EOF' > TARGETS
+{ "":
+ { "type": "symlink"
+ , "name": "read-runfiles"
+ , "data":
+ { "type": "join"
+ , "separator": ";"
+ , "$1": {"type": "runfiles", "dep": "uses config"}
+ }
+ , "deps": ["uses config"]
+ }
+, "uses config":
+ { "type": "symlink"
+ , "arguments_config": ["NAME"]
+ , "name": {"type": "var", "name": "NAME", "default": "null"}
+ , "data": "irrelevant"
+ }
+}
+EOF
+
+bin/tool-under-test analyse -D '{"NAME": "here/../be/../dragons"}' \
+ --local-build-root "$LBRDIR" --dump-targets targets.json --dump-blobs blobs.json 2>&1
+echo
+echo "Blobs"
+cat blobs.json
+[ $(jq '. == ["here/../be/../dragons"]' blobs.json) = "true" ]
+echo
+
+echo "Targets"
+cat targets.json
+[ $(jq '."@"."".""."" == [{"NAME": "here/../be/../dragons"}]' targets.json) = "true" ]
+
+echo OK