Welcome to the OSCAR Test Suite. This repository provides an automated testing suite built with the Robot Framework to validate and monitor the health and functionality of the OSCAR clusters.
Before running the tests, ensure you have the following tools installed:
To install the required dependencies:
pip install -r requirements.txt
oscar-cli
is a Go-based tool and must be installed separately.
You can install it by following the documentation.
The test suite uses environment variables to store sensitive information such as endpoints and credentials.
Create a .env.yaml
file according to the template shown in env-template.yaml
The following information is required:
OSCAR_ENDPOINT
: The endpoint of the OSCAR cluster (e.g. https://mycluster.oscar.grycap.net)OSCAR_METRICS
: The endpoint of the OSCAR metrics.OSCAR_DASHBOARD
: The endpoint of the OSCAR UI (dashboard).EGI_AAI_URL
: The base URL of the EGI AAI (Authentication and Authorisation Infrastructure) server.- For the production server, use
https://aai.egi.eu
. - For the demo server, use
https://aai-demo.egi.eu
.
- For the production server, use
REFRESH_TOKEN
: The OIDC token used to automate the execution of the test suite. In order to get a Refresh Token, head to the Check-in Token Portal or Demo Check-in Token Portal, click Authorise and then Create Refresh Token button to generate a new token.EGI_VO
: The virtual organization used to test the OSCAR cluster.
To execute the test cases, simply run the following command:
Run the tests:
robot -V variables/.env.yaml -d robot_results/ tests/
.env.yaml
: Your YAML file containing the necessary environment variables.robot_results
: The directory where the output results of the tests will be stored.tests
: The directory containing the test cases.
This executes all the defined tests. You can also execute a single test suite with:
robot -V variables/.env.yaml -d robot_results/ tests/api/service-lifecycle.robot
After running the tests, you’ll get detailed logs and reports in the:
- Report:
report.html
– A high-level test summary - Log:
log.html
– Detailed execution log for debugging
You can run the test suite inside a Docker container for better portability and reproducibility.
You can either build your own image or use the prebuilt image from GitHub Container Registry (GHCR).
Option 1: Build the Docker image locally
docker build -t oscar-tests:latest .
Option 2: Use the prebuilt image from GHCR
Use the oscar-tests image from GHCR.
These images contain all the necessary dependencies to run the tests (except oscar-cli
, see note below).
To run all the test suites:
docker run \
-e ROBOT_OPTIONS="--variablefile variables/.env.yaml --pythonpath ." \
-v "$PWD":/opt/robotframework/tests:Z \
--workdir /opt/robotframework/tests \
ghcr.io/grycap/oscar-tests:latest
💡 If you built the image locally, replace the image name with
oscar-tests:latest
.
To run a specific test suite:
docker run \
-e ROBOT_OPTIONS="--variablefile variables/.env.yaml --pythonpath ." \
-v "$PWD":/opt/robotframework/tests:Z \
--workdir /opt/robotframework/tests \
ghcr.io/grycap/oscar-tests:latest \
robot tests/<path-to-suite>
Replace <path-to-suite>
with the desired test file.
⚠️ Note:oscar-cli
binary is not included in the Docker image. If you're runningoscar-cli.robot
, you must manually install it in the container before running the tests.
You can find more information about the docker options used in this image in the base image documentation here.
Feel free to open issues, create pull requests, or improve the documentation.
This project is licensed under the Apache 2.0 License. See the LICENSE file for details.
For any questions or support, reach out via:
- GitHub Issues: Create a New Issue
Happy testing! 🎉