A pytest plugin for simplifying Open Datacube database tests.
Anyone writing applications using an ODC Database needs to be able to test their code. This requires an ODC Database containing a known set of data.
There's two challenges here:
- ODC requires a PostgreSQL server accessible anywhere test are run, which can be challenging to set up.
- The database should be reset every time a test is run, to make it possible to repeatedly run tests.
This package provides reusable pytest fixtures, to make it easy to write test code against an ODC Database. It handles starting and stopping a temporary PostgreSQL server using Docker, initialising it for ODC use, and loading/wiping sets of test data on a per test module basis.
-
Install the ODC Test Plugin into your Python environment.
pip install pytest-odc
-
Create at least one each of an ODC Metadata Type, Product and Dataset YAML files. These will be loaded into an ODC Database before your test code runs.
-
Create a pytest file using this template:
""" Template pytest module for testing ODC Code """ import pytest # UPDATE: these lists with the data you want loaded into your database # Each string is for a file, relative to this python module. METADATA_TYPES = ["metadata/eo3_metadata.yaml",] PRODUCTS = ["products/ga_ls8c_ard_3.odc-product.yaml",] DATASETS = ["datasets/ga_ls8c_ard_3-sample.yaml",] # Use the 'auto_odc_db' fixture to populate the database with sample data. pytestmark = pytest.mark.usefixtures("auto_odc_db") def test_my_odc_code(odc_db: "datacube.Datacube"): ### REPLACE: with your own test code my_datasets = odc_db.find_datasets(product='ga_ls8c_ard_3') assert len(my_datasets) == 3
-
Run your new tests.
pytest tests/
The four provided pytest fixtures compose together to ensure an ODC Database is available and preloaded with test data for each test module.
This fixture either:
- Runs a temporary PostgreSQL server using Docker
- Or checks that a test PostgreSQL server is already available via the
ODC_TEST_DB_URL
environment variable.
This fixture provides a datacube.Datacube()
object configured to connect to the temporary test database.
It can be added to the parameters for a test for getting access to the temporary database.
This fixture creates all the ODC Database tables.
This fixture should be used as a pytestmark autoload
, marking the test module as having variables named METADATA_TYPES
, PRODUCTS
and DATASETS
being lists of files to load into the test database.
Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.
Distributed under the terms of the Apache Software License 2.0 license, "pytest-odc" is free and open source software
If you encounter any problems, please file an issue along with a detailed description.
rm -rf dist/
python -m build
twine upload --repository testpypi dist/*
twine upload dist/*