Skip to content

Commit

Permalink
Add prototype appliance test definition for integration testing
Browse files Browse the repository at this point in the history
Signed-off-by: Stevan Radaković <[email protected]>
  • Loading branch information
stevanradakovic committed Dec 5, 2024
1 parent 978d12e commit 3555b54
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
17 changes: 17 additions & 0 deletions automated/linux/torizon/integration-tests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/sh

. ../../lib/sh-test-lib

gitlab_token=""
# source the secrets file to get the gitlab_token env var
. ../../../../../../secrets > /dev/null 2>&1
install_deps "git curl python3-pip"
curl -X GET http://localhost:8000/api/v01/

get_test_program "https://gitlab-ci-token:${gitlab_token}@gitlab.com/LinaroLtd/lava/appliance/baklava-integration.git" "baklava-integration" "main"

pip3 install -r requirements.txt

robot --pythonpath . --variable remote:True test/ > output.txt

ls -la
22 changes: 22 additions & 0 deletions automated/linux/torizon/integration-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
metadata:
name: integration-tests
format: "Lava-Test Test Definition 1.0"
description: "Run appliance integration tests in LAVA."
maintainer:
- [email protected]
os:
- debian
- ubuntu
devices:
- qemu
scope:
- functional

params:
SKIP_INSTALL: "false"

run:
steps:
- cd ./automated/linux/torizon/
- ./integration-tests.sh
- ../../utils/send-to-lava.sh ./output.txt

0 comments on commit 3555b54

Please sign in to comment.