omero-test-infra
provides simplified integration testing
for projects that are built on OMERO.server or OMERO.web.
Any repository that relies on an existing OMERO installation can depend on this directory whether for testing in CI system or locally.
The are a number of examples which are run regularly by CI.
The directory MUST BE located at .omero
at the top-level of
your source code. This can be achieved most simply by:
git clone https://github.com/openmicroscopy/omero-test-infra .omero
but adding the repository as a submodule or downloading a zip file is also permissible.
.omero/compose up
will start a basic OMERO stack including
PostgreSQL, OMERO.server, and OMERO.web using the current
production docker images. The definition of the stack is available
in docker-compose.yml
with a number of environment variables
being specified in .env
.
All docker compose environment variables like COMPOSE_FILE
will be
respected, except for COMPOSE_PROJECT_NAME
which has special handling
via the PROJECT
environment variable.
To run a full build and install the desire applications, it is recommended to use
where NAME is app
, cli
, lib
or scripts
. The special srv
command will build the parent directory as a replacement for the
OMERO.server container.
It is also possible to combine several application e.g.
but each of the applications must pass when it is run alone as well.
These commands should be invoked by the script
step in the project's
omero_plugin.yml
file. Set any environment variables as necessary.
If none of the commands above work for your scenario, there are a number of extension mechanisms that you can make use of.
Finally, if none of these options cover what you need, please contact us via GitHub issues to suggest a new stage command.
Each command runs a number of subcommands or tasks which can be
overridden by placing an executable file of the same name in an
.omeroci
directory beside the .omero
directory.
app-deps
installs dependencies for appsapp-srv
gives apps a chance to modify the serverpy-check
runs standard Python quality toolspy-common
runs standard Python package build stepspy-setup
builds and install the Python packageapp-config
configures the appapp-build
finally builds app and runs integration testsYou can also define a custom environment:
env
will be sourced before any commands are runThe .env defines a number of variables that can optionally be passed to docker instances if specified in the docker compile file. By setting these values in your calling environment or updating the .env file, you can influence the behavior of omero-test-infra. Of particular use are:
ROOTPASS
and POSTGRES_PASSWORD
for securing your installation*_IMAGE
for choosing other bases Docker images*_PORT
for mapping local ports to the services, e.g. "OMERO_SERVER_PORT=4064:"
would be a common choice if you aren't already using the port 4064Other environment arguments that omero-test-infra uses:
DOCKER_ARGS
will be passed to docker run ... test
to allow
mounting additional directories or exposing ports. (Deprecated)docker-compose.yml
is the main compose file in use by most tasks.Some of the other scripts in this repository are generally useful for interacting with the services started by omero-test-infra:
wait-on-login
periodically attempts to login to OMERO.serverpersist.sh
generates tarballs of the contents of the
OMERO.server and PostgreSQL containers to disk as well as
restores from these tar balls.download.sh
downloads and unpacks a zip file containing
persisted tarballs.When developing a plugin it can be useful to run part of the OMERO-test-infra
scripts instead of recreating the full docker infrastructure each time.
A special dev
command is available to modify an existing running server.
Examine the docker
script for available commands.
For example:
Start a particular server with NOCLEAN=true
:
NOCLEAN=true .omero/docker cli
or start an independent server:
.omero/docker dev start_up
Update the plugin with local changes:
.omero/docker dev install
Run the linter, install, run tests
.omero/docker dev run py check
.omero/docker dev run py setup
.omero/docker dev run --user cli build
Remember, you may need to set some environment variables to ensure your plugin
is discovered and tested correctly. See docker
.
You can also obtain a bash
shell in the server:
.omero/docker dev sh
If you run with:
NOCLEAN=true .omero/docker app
then you can inspect the docker containers. For example:
.omero/compose exec web bash
You can find more examples by searching for "ome/omero-test-infra filename:omero_plugin.yml" on GitHub.com.