aboutsummaryrefslogtreecommitdiff
path: root/tests/test_resources
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_resources')
-rw-r--r--tests/test_resources/application_config.json94
-rw-r--r--tests/test_resources/application_config.json.license3
-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
-rw-r--r--tests/test_resources/hello_world.json53
-rw-r--r--tests/test_resources/hello_world.json.license3
-rwxr-xr-xtests/test_resources/scripts/test_backend_run8
-rw-r--r--tests/test_resources/scripts/test_backend_run_script.sh8
-rw-r--r--tests/test_resources/various/applications/application_with_empty_config/backend-config.json1
-rw-r--r--tests/test_resources/various/applications/application_with_empty_config/backend-config.json.license3
-rw-r--r--tests/test_resources/various/applications/application_with_valid_config/backend-config.json37
-rw-r--r--tests/test_resources/various/applications/application_with_valid_config/backend-config.json.license3
-rw-r--r--tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json2
-rw-r--r--tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json.license3
-rw-r--r--tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json32
-rw-r--r--tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json.license3
-rw-r--r--tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json37
-rw-r--r--tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json.license3
-rw-r--r--tests/test_resources/various/systems/system_with_empty_config/backend-config.json1
-rw-r--r--tests/test_resources/various/systems/system_with_empty_config/backend-config.json.license3
-rw-r--r--tests/test_resources/various/systems/system_with_valid_config/backend-config.json12
-rw-r--r--tests/test_resources/various/systems/system_with_valid_config/backend-config.json.license3
-rw-r--r--tests/test_resources/vela/sample_vela.ini47
44 files changed, 767 insertions, 0 deletions
diff --git a/tests/test_resources/application_config.json b/tests/test_resources/application_config.json
new file mode 100644
index 0000000..8c5d2b5
--- /dev/null
+++ b/tests/test_resources/application_config.json
@@ -0,0 +1,94 @@
+[
+ {
+ "name": "application_1",
+ "description": "application number one",
+ "supported_systems": [
+ "system_1",
+ "system_2"
+ ],
+ "commands": {
+ "clean": [
+ "clean_cmd_11"
+ ],
+ "build": [
+ "build_cmd_11"
+ ],
+ "run": [
+ "run_cmd_11"
+ ],
+ "post_run": [
+ "post_run_cmd_11"
+ ]
+ },
+ "user_params": {
+ "run": [
+ {
+ "name": "run_param_11",
+ "values": [],
+ "description": "run param number one"
+ }
+ ],
+ "build": [
+ {
+ "name": "build_param_11",
+ "values": [],
+ "description": "build param number one"
+ },
+ {
+ "name": "build_param_12",
+ "values": [],
+ "description": "build param number two"
+ },
+ {
+ "name": "build_param_13",
+ "values": [
+ "value_1"
+ ],
+ "description": "build param number three with some value"
+ }
+ ]
+ }
+ },
+ {
+ "name": "application_2",
+ "description": "application number two",
+ "supported_systems": [
+ "system_2"
+ ],
+ "commands": {
+ "clean": [
+ "clean_cmd_21"
+ ],
+ "build": [
+ "build_cmd_21",
+ "build_cmd_22"
+ ],
+ "run": [
+ "run_cmd_21"
+ ],
+ "post_run": [
+ "post_run_cmd_21"
+ ]
+ },
+ "user_params": {
+ "build": [
+ {
+ "name": "build_param_21",
+ "values": [],
+ "description": "build param number one"
+ },
+ {
+ "name": "build_param_22",
+ "values": [],
+ "description": "build param number two"
+ },
+ {
+ "name": "build_param_23",
+ "values": [],
+ "description": "build param number three"
+ }
+ ],
+ "run": []
+ }
+ }
+]
diff --git a/tests/test_resources/application_config.json.license b/tests/test_resources/application_config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/application_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/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
diff --git a/tests/test_resources/hello_world.json b/tests/test_resources/hello_world.json
new file mode 100644
index 0000000..99e9439
--- /dev/null
+++ b/tests/test_resources/hello_world.json
@@ -0,0 +1,53 @@
+[
+ {
+ "name": "Hello world",
+ "description": "Dummy application that displays 'Hello world!'",
+ "supported_systems": [
+ "Dummy System"
+ ],
+ "deploy_data": [
+ [
+ "src",
+ "/tmp/"
+ ],
+ [
+ "README",
+ "/tmp/README.md"
+ ]
+ ],
+ "commands": {
+ "clean": [],
+ "build": [],
+ "run": [
+ "echo 'Hello world!'",
+ "ls -l /tmp"
+ ],
+ "post_run": []
+ },
+ "user_params": {
+ "run": [
+ {
+ "name": "--choice-param",
+ "values": [
+ "dummy_value_1",
+ "dummy_value_2"
+ ],
+ "default_value": "dummy_value_1",
+ "description": "Choice param"
+ },
+ {
+ "name": "--open-param",
+ "values": [],
+ "default_value": "dummy_value_4",
+ "description": "Open param"
+ },
+ {
+ "name": "--enable-flag",
+ "default_value": "dummy_value_4",
+ "description": "Flag param"
+ }
+ ],
+ "build": []
+ }
+ }
+]
diff --git a/tests/test_resources/hello_world.json.license b/tests/test_resources/hello_world.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/hello_world.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/scripts/test_backend_run b/tests/test_resources/scripts/test_backend_run
new file mode 100755
index 0000000..548f577
--- /dev/null
+++ b/tests/test_resources/scripts/test_backend_run
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+# SPDX-License-Identifier: Apache-2.0
+
+echo "Hello from script"
+>&2 echo "Oops!"
+sleep 100
diff --git a/tests/test_resources/scripts/test_backend_run_script.sh b/tests/test_resources/scripts/test_backend_run_script.sh
new file mode 100644
index 0000000..548f577
--- /dev/null
+++ b/tests/test_resources/scripts/test_backend_run_script.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+# SPDX-License-Identifier: Apache-2.0
+
+echo "Hello from script"
+>&2 echo "Oops!"
+sleep 100
diff --git a/tests/test_resources/various/applications/application_with_empty_config/backend-config.json b/tests/test_resources/various/applications/application_with_empty_config/backend-config.json
new file mode 100644
index 0000000..fe51488
--- /dev/null
+++ b/tests/test_resources/various/applications/application_with_empty_config/backend-config.json
@@ -0,0 +1 @@
+[]
diff --git a/tests/test_resources/various/applications/application_with_empty_config/backend-config.json.license b/tests/test_resources/various/applications/application_with_empty_config/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/various/applications/application_with_empty_config/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/various/applications/application_with_valid_config/backend-config.json b/tests/test_resources/various/applications/application_with_valid_config/backend-config.json
new file mode 100644
index 0000000..a457d9b
--- /dev/null
+++ b/tests/test_resources/various/applications/application_with_valid_config/backend-config.json
@@ -0,0 +1,37 @@
+[
+ {
+ "name": "test_application",
+ "description": "This is test_application",
+ "variables": {
+ "build_dir": "build"
+ },
+ "supported_systems": [
+ {
+ "name": "System 4"
+ }
+ ],
+ "commands": {
+ "build": [
+ "cp ../hello_app.txt ."
+ ],
+ "run": [
+ "{application.variables:build_dir}/hello_app.txt"
+ ]
+ },
+ "user_params": {
+ "build": [
+ {
+ "name": "--app",
+ "description": "Sample command param",
+ "values": [
+ "application1",
+ "application2",
+ "application3"
+ ],
+ "default_value": "application1"
+ }
+ ],
+ "run": []
+ }
+ }
+]
diff --git a/tests/test_resources/various/applications/application_with_valid_config/backend-config.json.license b/tests/test_resources/various/applications/application_with_valid_config/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/various/applications/application_with_valid_config/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/various/applications/application_with_wrong_config1/backend-config.json b/tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json
new file mode 100644
index 0000000..724b31b
--- /dev/null
+++ b/tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json
@@ -0,0 +1,2 @@
+This is not valid json file
+{
diff --git a/tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json.license b/tests/test_resources/various/applications/application_with_wrong_config1/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/various/applications/application_with_wrong_config1/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/various/applications/application_with_wrong_config2/backend-config.json b/tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json
new file mode 100644
index 0000000..b64e6f8
--- /dev/null
+++ b/tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json
@@ -0,0 +1,32 @@
+[
+ {
+ "name": "test_application",
+ "description": "This is test_application",
+ "variables": {
+ "build_dir": "build"
+ },
+ "commands": {
+ "build": [
+ "cp ../hello_app.txt ."
+ ],
+ "run": [
+ "{application.variables:build_dir}/hello_app.txt"
+ ]
+ },
+ "user_params": {
+ "build": [
+ {
+ "name": "--app",
+ "description": "Sample command param",
+ "values": [
+ "application1",
+ "application2",
+ "application3"
+ ],
+ "default_value": "application1"
+ }
+ ],
+ "run": []
+ }
+ }
+]
diff --git a/tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json.license b/tests/test_resources/various/applications/application_with_wrong_config2/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/various/applications/application_with_wrong_config2/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/various/applications/application_with_wrong_config3/backend-config.json b/tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json
new file mode 100644
index 0000000..4a70cdd
--- /dev/null
+++ b/tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json
@@ -0,0 +1,37 @@
+[
+ {
+ "name": "test_application",
+ "description": "This is test_application",
+ "variables": {
+ "build_dir": "build"
+ },
+ "supported_systems": [
+ {
+ "anme": "System 4"
+ }
+ ],
+ "commands": {
+ "build": [
+ "cp ../hello_app.txt ."
+ ],
+ "run": [
+ "{application.variables:build_dir}/hello_app.txt"
+ ]
+ },
+ "user_params": {
+ "build": [
+ {
+ "name": "--app",
+ "description": "Sample command param",
+ "values": [
+ "application1",
+ "application2",
+ "application3"
+ ],
+ "default_value": "application1"
+ }
+ ],
+ "run": []
+ }
+ }
+]
diff --git a/tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json.license b/tests/test_resources/various/applications/application_with_wrong_config3/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/various/applications/application_with_wrong_config3/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/various/systems/system_with_empty_config/backend-config.json b/tests/test_resources/various/systems/system_with_empty_config/backend-config.json
new file mode 100644
index 0000000..fe51488
--- /dev/null
+++ b/tests/test_resources/various/systems/system_with_empty_config/backend-config.json
@@ -0,0 +1 @@
+[]
diff --git a/tests/test_resources/various/systems/system_with_empty_config/backend-config.json.license b/tests/test_resources/various/systems/system_with_empty_config/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/various/systems/system_with_empty_config/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/various/systems/system_with_valid_config/backend-config.json b/tests/test_resources/various/systems/system_with_valid_config/backend-config.json
new file mode 100644
index 0000000..83c3025
--- /dev/null
+++ b/tests/test_resources/various/systems/system_with_valid_config/backend-config.json
@@ -0,0 +1,12 @@
+[
+ {
+ "name": "Test system",
+ "description": "This is a test system",
+ "commands": {
+ "run": []
+ },
+ "user_params": {
+ "run": []
+ }
+ }
+]
diff --git a/tests/test_resources/various/systems/system_with_valid_config/backend-config.json.license b/tests/test_resources/various/systems/system_with_valid_config/backend-config.json.license
new file mode 100644
index 0000000..9b83bfc
--- /dev/null
+++ b/tests/test_resources/various/systems/system_with_valid_config/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/vela/sample_vela.ini b/tests/test_resources/vela/sample_vela.ini
new file mode 100644
index 0000000..c992458
--- /dev/null
+++ b/tests/test_resources/vela/sample_vela.ini
@@ -0,0 +1,47 @@
+; SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+; SPDX-License-Identifier: Apache-2.0
+; Ethos-U55 High-End Embedded: SRAM (4 GB/s) and Flash (0.5 GB/s)
+[System_Config.Ethos_U55_High_End_Embedded]
+core_clock=500e6
+axi0_port=Sram
+axi1_port=OffChipFlash
+Sram_clock_scale=1.0
+Sram_burst_length=32
+Sram_read_latency=32
+Sram_write_latency=32
+OffChipFlash_clock_scale=0.125
+OffChipFlash_burst_length=128
+OffChipFlash_read_latency=64
+OffChipFlash_write_latency=64
+
+; Ethos-U65 High-End: SRAM (16 GB/s) and DRAM (3.75 GB/s)
+[System_Config.Ethos_U65_High_End]
+core_clock=1e9
+axi0_port=Sram
+axi1_port=Dram
+Sram_clock_scale=1.0
+Sram_burst_length=32
+Sram_read_latency=32
+Sram_write_latency=32
+Dram_clock_scale=0.234375
+Dram_burst_length=128
+Dram_read_latency=500
+Dram_write_latency=250
+
+; -----------------------------------------------------------------------------
+; Memory Mode
+
+; Shared SRAM: the SRAM is shared between the Ethos-U and the Cortex-M software
+; The non-SRAM memory is assumed to be read-only
+[Memory_Mode.Shared_Sram]
+const_mem_area=Axi1
+arena_mem_area=Axi0
+cache_mem_area=Axi0
+
+; The SRAM (384KB) is only for use by the Ethos-U
+; The non-SRAM memory is assumed to be read-writeable
+[Memory_Mode.Dedicated_Sram]
+const_mem_area=Axi1
+arena_mem_area=Axi1
+cache_mem_area=Axi0
+arena_cache_size=393216