The EMPAIA App Test Suite (EATS)
Project description
EMPAIA App Test Suite (EATS)
Requirements
- The EMPAIA App Test Suite requires Python 3.8.
- Supported Operating Systems are Linux, Windows and MacOS
- for Windows the EATS requires the usage of WSL 2 (Windows Subsystem for Linux) with Docker for Windows
Installation
There are different possibilities to install the EMPAIA App Test Suite depending on your intended use:
- Installation as App Developer
- Latest stable release
- Latest test release
- Build and installation as EATS Developer
Installation as App Developer - Latest stable release
Installation via pip
from Python Package Index (PyPI).
# create virtual environment (recommended)
python3 -m venv .venv
source .venv/bin/activate
# install with pip
pip install empaia-app-test-suite
Installation as App Developer - Latest test release
Installation via pip
from Python Package Index Test Repository (Test.PyPI).
# create virtual environment (recommended)
python3 -m venv .venv
source .venv/bin/activate
# install with pip from test.pypi.org
pip install -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ empaia-app-test-suite
Build and installation as EATS Developer
Clone the EATS source code repository.
This module uses submodules, i.e. references to other git repositories. Add --recurse-submodule
to your clone command to also get all submodules, e.g.
git clone --recurse-submodule https://gitlab.com/empaia/integration/empaia-app-test-suite.git
cd empaia-app-test-suite
### also after changing branch
git submodule update --init --recursive
Build the EATS CLI app and install all needed dependencies:
# create virtual environment (recommended)
python3 -m venv .venv
source .venv/bin/activate
# build / install EATS and dependencies
poetry install
Run EATS
Run the EATS CLI app with
eats
To force pull and build services and submodules:
eats services up ./wsi-mount-points.json --build --pull
Usage
For detailed instructions take a look at the App Developer Documentation
Define absolute paths to directories containing WSIs in a ./wsi-mount-points.json
file as follows:
{
"/absolute/local/path/to/wsis/dir1": "/absolute/container/mount/dir1/",
"/absolute/local/path/to/wsis/dir2": "/absolute/container/mount/dir2/"
}
Start all backend services in Docker containers using the eats services up
command. WSI directories are mounted into the WSI Service container. Only WSIs contained in one of the specified directories can be used as a job input.
eats services up ./wsi-mount-points.json
You can perform health checks of running backend services.
eats services health
Register your app with its <docker-image-name>
(can be fully qualified docker registry url, e.g. registry.gitlab.com/empaia/integration/sample-apps/org-empaia-vendor_name-tutorial_app_01:v1
). Also provide the path to your ead.json
. If your app required configuration parameters, use the --config-file
flag to specify the path to you configuration.json
.
eats apps register <path-to-ead.json> <docker-image-name> > app.env
# or with configuration
eats apps register <path-to-ead.json> <docker-image-name> --config-file <path-to-configuration.json> > app.env
# export the app id for later use
export $(xargs <app.env)
echo $APP_ID
Use the APP_ID together with your JSON files for your data inputs in a job-inputs
directory to register ar new job.
eats jobs register $APP_ID <path-to-job-inputs> --v1 > job.env
The generated job.env
file contains the EMPAIA_JOB_ID
, EMPAIA_TOKEN
, and EMPAIA_APP_API
environment variables, that are handed to your app during the eats jobs run
step.
eats jobs run ./job.env
The job ID can be retrieved from the job.env
file to be used in other commands.
export $(xargs <job.env)
echo $EMPAIA_JOB_ID
Regularly check the jobs status until it is COMPLETED
.
eats jobs status ${EMPAIA_JOB_ID}
The job ID is used as the container name. It can be used to retrieved docker logs.
docker logs ${EMPAIA_JOB_ID}
Open localhost:8888/wbc
in a Browser to review job results using the Workbench Client 1.0.
In addition, the job results can be exported to JSON files in a job-outputs
directory.
eats jobs export ${EMPAIA_JOB_ID} ./job-outputs
If a job is taking too long or is stuck, the job can be aborted.
eats jobs abort ${EMPAIA_JOB_ID}
To inspect backend service logs the docker logs
command can used directly. The names of all service containers can be retrieved using the eats services list
command.
eats services list # print list of service names
docker logs ${SERVICE_NAME}
It is possible to register and run multiple jobs without restart backend services. The services can be stopped, if they are not needed anymore. All created data is available when the services are started again.
eats services down
To erase all created data use eats services down -v
to remove all created docker volumes or docker volume rm
directly.
eats services down -v
# or
docker volume rm $(eats services volumes)
Executing Your App without Job Execution Service
The command eats jobs run $EMPAIA_JOB_ID <job.env-file>
sends a request to the Job Execution Service, which start your containerized app. Debugging your app this way can be tedious and time consuming. To speed up the debugging process, you can also start your app natively:
- Start services as usual.
eats services up ./wsi-mount-points.json
- Register app as usual, receiving the
APP_ID
eats apps register <path-to-ead.json> <docker-image-name> --config-file <path-to-configuration.json> > app.env
export $(xargs <app.env)
echo $APP_ID
- Register job and export to
job.env
, e.g.
eats jobs register $APP_ID <eats-inputs-folder> --v1 > job.env
export $(xargs <job.env)
echo $EMPAIA_JOB_ID
- Overwrite the
EMPAIA_APP_API
value withlocalhost:<NGINX-PORT>/app-api
(the exposed port of the NGINX proxy server is8888
by default):
export EMPAIA_APP_API=http://localhost:8888/app-api
- Set job to status
RUNNING
(without actually running it):
eats jobs set-running $EMPAIA_JOB_ID
- Run your app, e.g.:
python3 <path-to-app.py>
- Make changes to your app.py and GO TO 3.
For EATS Developers
Code Checks
Check your code before committing.
- always format code with
black
andisort
- check code quality using
pycodestyle
andpylint
black
formatting should resolve most issues forpycodestyle
isort .
black empaia_app_test_suite tests check_version.py
pycodestyle empaia_app_test_suite tests check_version.py
pylint empaia_app_test_suite tests check_version.py
Tests
Create ./wsi-mount-points.json
:
{
"/path/to/testdata/Aperio/": "/data",
"/path/to/testdata/Fluorescence OME-Tif/": "/data2"
}
eats services up ./wsi-mount-points.json --build --pull
# run cli command tests
pytest tests/commands --maxfail=1 -s -v
# run sample apps tests
pytest tests/sample_apps_tests --maxfail=1 -s -v
If a test from tests/sample_apps
fails, use docker logs <servicename>
for debugging.
Test GPU support
eats services up ./wsi-mount-points.json --build --pull --gpu-driver nvidia
# run cli command test
pytest tests/gpu_support_test
If docker is locally installed with support for CUDA and a supported GPU is available on the host system the test must succeed. If the test fails please check if docker is correctly installed.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for empaia-app-test-suite-2.0.21.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1416457e00ec38c353db0014f192ea593ba8655c3860f235196b465f395dc390 |
|
MD5 | 6883bb1dd40d9a8b3c660c40369b0dd7 |
|
BLAKE2b-256 | 25835c2b91289c83c45efc1df6c4a17291136fd3ecd0f0b6d853d02b22b6527d |
Hashes for empaia_app_test_suite-2.0.21-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c08c6f1c1c2ebd7df6e86beabe1f736c0c6dd7f7409c1ed54b38b2dc56bb908d |
|
MD5 | b97c8596efcdba374e5de29d275818d3 |
|
BLAKE2b-256 | 9210d8b5a90fc1faccdea7d8bf1746891b4690c8e40291bc12670b22f382405d |