aboutsummaryrefslogtreecommitdiff
path: root/tests/test_resources/backends
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_resources/backends')
-rw-r--r--tests/test_resources/backends/applications/application1/backend-config.json29
-rw-r--r--tests/test_resources/backends/applications/application1/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/applications/application2/backend-config.json29
-rw-r--r--tests/test_resources/backends/applications/application2/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/applications/application3/readme.txt4
-rw-r--r--tests/test_resources/backends/applications/application4/backend-config.json35
-rw-r--r--tests/test_resources/backends/applications/application4/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/applications/application4/hello_app.txt4
-rw-r--r--tests/test_resources/backends/applications/application5/backend-config.json134
-rw-r--r--tests/test_resources/backends/applications/application5/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/applications/application6/backend-config.json41
-rw-r--r--tests/test_resources/backends/applications/application6/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/applications/readme.txt4
-rw-r--r--tests/test_resources/backends/systems/system1/backend-config.json24
-rw-r--r--tests/test_resources/backends/systems/system1/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/systems/system1/system_artifact/dummy.txt2
-rw-r--r--tests/test_resources/backends/systems/system2/backend-config.json24
-rw-r--r--tests/test_resources/backends/systems/system2/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/systems/system3/readme.txt4
-rw-r--r--tests/test_resources/backends/systems/system4/backend-config.json17
-rw-r--r--tests/test_resources/backends/systems/system4/backend-config.json.license3
-rw-r--r--tests/test_resources/backends/systems/system6/backend-config.json30
-rw-r--r--tests/test_resources/backends/systems/system6/backend-config.json.license3
23 files changed, 408 insertions, 0 deletions
diff --git a/tests/test_resources/backends/applications/application1/backend-config.json b/tests/test_resources/backends/applications/application1/backend-config.json
new file mode 100644
index 0000000..96d5420
--- /dev/null
+++ b/tests/test_resources/backends/applications/application1/backend-config.json
@@ -0,0 +1,29 @@
+[
+ {
+ "name": "application_1",
+ "description": "This is application 1",
+ "supported_systems": [
+ {
+ "name": "System 1"
+ }
+ ],
+ "commands": {
+ "clean": [
+ "echo 'clean'"
+ ],
+ "build": [
+ "echo 'build'"
+ ],
+ "run": [
+ "echo 'run'"
+ ],
+ "post_run": [
+ "echo 'post_run'"
+ ]
+ },
+ "user_params": {
+ "build": [],
+ "run": []
+ }
+ }
+]
diff --git a/tests/test_resources/backends/applications/application1/backend-config.json.license b/tests/test_resources/backends/applications/application1/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/backends/applications/application1/backend-config.json.license
@@ -0,0 +1,3 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+
+SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/applications/application2/backend-config.json b/tests/test_resources/backends/applications/application2/backend-config.json
new file mode 100644
index 0000000..3a3969a
--- /dev/null
+++ b/tests/test_resources/backends/applications/application2/backend-config.json
@@ -0,0 +1,29 @@
+[
+ {
+ "name": "application_2",
+ "description": "This is application 2",
+ "supported_systems": [
+ {
+ "name": "System 2"
+ }
+ ],
+ "commands": {
+ "clean": [
+ "echo 'clean'"
+ ],
+ "build": [
+ "echo 'build'"
+ ],
+ "run": [
+ "echo 'run'"
+ ],
+ "post_run": [
+ "echo 'post_run'"
+ ]
+ },
+ "user_params": {
+ "build": [],
+ "run": []
+ }
+ }
+]
diff --git a/tests/test_resources/backends/applications/application2/backend-config.json.license b/tests/test_resources/backends/applications/application2/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/backends/applications/application2/backend-config.json.license
@@ -0,0 +1,3 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+
+SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/applications/application3/readme.txt b/tests/test_resources/backends/applications/application3/readme.txt
new file mode 100644
index 0000000..8c72c05
--- /dev/null
+++ b/tests/test_resources/backends/applications/application3/readme.txt
@@ -0,0 +1,4 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+SPDX-License-Identifier: Apache-2.0
+
+This application does not have json configuration file
diff --git a/tests/test_resources/backends/applications/application4/backend-config.json b/tests/test_resources/backends/applications/application4/backend-config.json
new file mode 100644
index 0000000..d4362be
--- /dev/null
+++ b/tests/test_resources/backends/applications/application4/backend-config.json
@@ -0,0 +1,35 @@
+[
+ {
+ "name": "application_4",
+ "description": "This is application 4",
+ "variables": {
+ "build_dir": "build"
+ },
+ "supported_systems": [
+ {
+ "name": "System 4"
+ }
+ ],
+ "commands": {
+ "run": [
+ "cp {application.config_dir}/hello_app.txt {system.config_dir}",
+ "echo '{user_params:0}' > {system.config_dir}/params.txt",
+ "cat hello_app.txt"
+ ]
+ },
+ "user_params": {
+ "run": [
+ {
+ "name": "--app",
+ "description": "Sample command param",
+ "values": [
+ "application1",
+ "application2",
+ "application3"
+ ],
+ "default_value": "application1"
+ }
+ ]
+ }
+ }
+]
diff --git a/tests/test_resources/backends/applications/application4/backend-config.json.license b/tests/test_resources/backends/applications/application4/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/backends/applications/application4/backend-config.json.license
@@ -0,0 +1,3 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+
+SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/applications/application4/hello_app.txt b/tests/test_resources/backends/applications/application4/hello_app.txt
new file mode 100644
index 0000000..2ec0d1d
--- /dev/null
+++ b/tests/test_resources/backends/applications/application4/hello_app.txt
@@ -0,0 +1,4 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+SPDX-License-Identifier: Apache-2.0
+
+Hello from APP!
diff --git a/tests/test_resources/backends/applications/application5/backend-config.json b/tests/test_resources/backends/applications/application5/backend-config.json
new file mode 100644
index 0000000..219494c
--- /dev/null
+++ b/tests/test_resources/backends/applications/application5/backend-config.json
@@ -0,0 +1,134 @@
+[
+ {
+ "name": "application_5",
+ "description": "This is application 5",
+ "supported_systems": [
+ {
+ "name": "System 1"
+ },
+ {
+ "name": "System 2"
+ }
+ ],
+ "variables": {
+ "var1": "value1",
+ "var2": "value2"
+ },
+ "commands": {
+ "build": [
+ "default build command"
+ ],
+ "run": [
+ "default run command"
+ ]
+ },
+ "user_params": {
+ "build": [],
+ "run": []
+ }
+ },
+ {
+ "name": "application_5A",
+ "description": "This is application 5A",
+ "supported_systems": [
+ {
+ "name": "System 1",
+ "variables": {
+ "var1": "new value1"
+ }
+ },
+ {
+ "name": "System 2",
+ "variables": {
+ "var2": "new value2"
+ },
+ "commands": {
+ "run": [
+ "run command on system 2"
+ ]
+ }
+ }
+ ],
+ "variables": {
+ "var1": "value1",
+ "var2": "value2"
+ },
+ "commands": {
+ "build": [
+ "default build command"
+ ],
+ "run": [
+ "default run command"
+ ]
+ },
+ "user_params": {
+ "build": [],
+ "run": []
+ }
+ },
+ {
+ "name": "application_5B",
+ "description": "This is application 5B",
+ "supported_systems": [
+ {
+ "name": "System 1",
+ "variables": {
+ "var1": "value for var1 System1",
+ "var2": "value for var2 System1"
+ }
+ },
+ {
+ "name": "System 2",
+ "variables": {
+ "var1": "value for var1 System2",
+ "var2": "value for var2 System2"
+ },
+ "commands": {
+ "run": [
+ "run command on system 2"
+ ]
+ },
+ "user_params": {
+ "run": []
+ }
+ }
+ ],
+ "commands": {
+ "build": [
+ "default build command with {variables:var1}"
+ ],
+ "run": [
+ "default run command with {variables:var2}"
+ ]
+ },
+ "user_params": {
+ "build": [
+ {
+ "name": "--param",
+ "description": "Sample command param",
+ "values": [
+ "value1",
+ "value2",
+ "value3"
+ ],
+ "default_value": "value1",
+ "alias": "param1"
+ }
+ ],
+ "run": [],
+ "non_used_command": [
+ {
+ "name": "--not-used",
+ "description": "Not used param anywhere",
+ "values": [
+ "value1",
+ "value2",
+ "value3"
+ ],
+ "default_value": "value1",
+ "alias": "param1"
+ }
+ ]
+ }
+ }
+]
diff --git a/tests/test_resources/backends/applications/application5/backend-config.json.license b/tests/test_resources/backends/applications/application5/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/backends/applications/application5/backend-config.json.license
@@ -0,0 +1,3 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+
+SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/applications/application6/backend-config.json b/tests/test_resources/backends/applications/application6/backend-config.json
new file mode 100644
index 0000000..81afebd
--- /dev/null
+++ b/tests/test_resources/backends/applications/application6/backend-config.json
@@ -0,0 +1,41 @@
+[
+ {
+ "name": "application_6",
+ "description": "This is application 6",
+ "supported_systems": [
+ {
+ "name": "System 6"
+ }
+ ],
+ "commands": {
+ "clean": [
+ "echo 'clean'"
+ ],
+ "build": [
+ "echo 'build'"
+ ],
+ "run": [
+ "echo 'run {user_params:param1}'"
+ ],
+ "post_run": [
+ "echo 'post_run'"
+ ]
+ },
+ "user_params": {
+ "build": [],
+ "run": [
+ {
+ "name": "--param1",
+ "description": "Test parameter",
+ "values": [
+ "value1",
+ "value2",
+ "value3"
+ ],
+ "default_value": "value3",
+ "alias": "param1"
+ }
+ ]
+ }
+ }
+]
diff --git a/tests/test_resources/backends/applications/application6/backend-config.json.license b/tests/test_resources/backends/applications/application6/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/backends/applications/application6/backend-config.json.license
@@ -0,0 +1,3 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+
+SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/applications/readme.txt b/tests/test_resources/backends/applications/readme.txt
new file mode 100644
index 0000000..a1f8209
--- /dev/null
+++ b/tests/test_resources/backends/applications/readme.txt
@@ -0,0 +1,4 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+SPDX-License-Identifier: Apache-2.0
+
+Dummy file for test purposes
diff --git a/tests/test_resources/backends/systems/system1/backend-config.json b/tests/test_resources/backends/systems/system1/backend-config.json
new file mode 100644
index 0000000..4454695
--- /dev/null
+++ b/tests/test_resources/backends/systems/system1/backend-config.json
@@ -0,0 +1,24 @@
+[
+ {
+ "name": "System 1",
+ "description": "This is system 1",
+ "commands": {
+ "clean": [
+ "echo 'clean'"
+ ],
+ "build": [
+ "echo 'build'"
+ ],
+ "run": [
+ "echo 'run'"
+ ],
+ "post_run": [
+ "echo 'post_run'"
+ ]
+ },
+ "user_params": {
+ "build": [],
+ "run": []
+ }
+ }
+]
diff --git a/tests/test_resources/backends/systems/system1/backend-config.json.license b/tests/test_resources/backends/systems/system1/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/backends/systems/system1/backend-config.json.license
@@ -0,0 +1,3 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+
+SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/systems/system1/system_artifact/dummy.txt b/tests/test_resources/backends/systems/system1/system_artifact/dummy.txt
new file mode 100644
index 0000000..487e9d8
--- /dev/null
+++ b/tests/test_resources/backends/systems/system1/system_artifact/dummy.txt
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/systems/system2/backend-config.json b/tests/test_resources/backends/systems/system2/backend-config.json
new file mode 100644
index 0000000..3359d3d
--- /dev/null
+++ b/tests/test_resources/backends/systems/system2/backend-config.json
@@ -0,0 +1,24 @@
+[
+ {
+ "name": "System 2",
+ "description": "This is system 2",
+ "commands": {
+ "clean": [
+ "echo 'clean'"
+ ],
+ "build": [
+ "echo 'build'"
+ ],
+ "run": [
+ "echo 'run'"
+ ],
+ "post_run": [
+ "echo 'post_run'"
+ ]
+ },
+ "user_params": {
+ "build": [],
+ "run": []
+ }
+ }
+]
diff --git a/tests/test_resources/backends/systems/system2/backend-config.json.license b/tests/test_resources/backends/systems/system2/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/backends/systems/system2/backend-config.json.license
@@ -0,0 +1,3 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+
+SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/systems/system3/readme.txt b/tests/test_resources/backends/systems/system3/readme.txt
new file mode 100644
index 0000000..aba5a9c
--- /dev/null
+++ b/tests/test_resources/backends/systems/system3/readme.txt
@@ -0,0 +1,4 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+SPDX-License-Identifier: Apache-2.0
+
+This system does not have the json configuration file
diff --git a/tests/test_resources/backends/systems/system4/backend-config.json b/tests/test_resources/backends/systems/system4/backend-config.json
new file mode 100644
index 0000000..7701c05
--- /dev/null
+++ b/tests/test_resources/backends/systems/system4/backend-config.json
@@ -0,0 +1,17 @@
+[
+ {
+ "name": "System 4",
+ "description": "This is system 4",
+ "commands": {
+ "run": [
+ "echo {application.name}",
+ "{application.commands.run:0}",
+ "{application.commands.run:1}",
+ "{application.commands.run:2}"
+ ]
+ },
+ "user_params": {
+ "run": []
+ }
+ }
+]
diff --git a/tests/test_resources/backends/systems/system4/backend-config.json.license b/tests/test_resources/backends/systems/system4/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/backends/systems/system4/backend-config.json.license
@@ -0,0 +1,3 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+
+SPDX-License-Identifier: Apache-2.0
diff --git a/tests/test_resources/backends/systems/system6/backend-config.json b/tests/test_resources/backends/systems/system6/backend-config.json
new file mode 100644
index 0000000..5180799
--- /dev/null
+++ b/tests/test_resources/backends/systems/system6/backend-config.json
@@ -0,0 +1,30 @@
+[
+ {
+ "name": "System 6",
+ "description": "This is system 6",
+ "variables": {
+ "var1": "{user_params:sys-param1}"
+ },
+ "commands": {
+ "run": [
+ "echo {application.name}",
+ "{application.commands.run:0}"
+ ]
+ },
+ "user_params": {
+ "run": [
+ {
+ "name": "--sys-param1",
+ "description": "Test parameter",
+ "values": [
+ "value1",
+ "value2",
+ "value3"
+ ],
+ "default_value": "value1",
+ "alias": "sys-param1"
+ }
+ ]
+ }
+ }
+]
diff --git a/tests/test_resources/backends/systems/system6/backend-config.json.license b/tests/test_resources/backends/systems/system6/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/backends/systems/system6/backend-config.json.license
@@ -0,0 +1,3 @@
+SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+
+SPDX-License-Identifier: Apache-2.0