Skip to content

chinedu117/opencdms-test-data

 
 

Repository files navigation

OpenCDMS test database

See data/opencdms/ for the initial shared test database.

Installation guide

This test data is mearnt to be installed into your pyopencdms for development purposes. To install this package add it to the requirements_dev.txt file in the pyopencdms project like so:

requirements_dev.txt

opencdms-test-data@git+https://github.com/opencdms/opencdms-test-data.git@main

Prerequisites

To be able to launch the different databases, it requires that you have:

  1. Docker and docker-compose installed in your machine.
  2. Service ports of the different database available.

CLI commands

This project exposes cli commands for launching the different databases.

  1. opencdms-test-data startdb : Starts all the database containers.
  2. opencdms-test-data stopdb: Stops all containers
  3. opencdms-test-data startdb --containers containerName,AnotherContainerName: Starts one or more number of specified containers

Available containers and service ports

        "postgres": 5432,
        "mariadb": 3306,
        "opencdmsdb": 35432,
        "postgresql": 25432,
        "mysql": 23306,
        "oracle": 21521,
        "clide": 35433,
        "climsoft-4.1.1": 33308,
        "mch-english": 33306,
        "midas": 31521,        
        "wmdr": 35434,
        "surface": 45432

OpenCDMS supported systems

This repository contains data and information for testing OpenCDMS and supported systems.

There are three ways to test OpenCDMS with a database:

  1. Testing with original database technologies (complex)

    This involves installing a database system like MariaDB, MySQL, Oracle or PostgreSQL and installing the CDMSs original database schema (see SQL DDL files in the schemas directory).

    To simplify this approach, we have created a docker-compose.yml file in the root of the project. This docker-compose.yml file includes a few different types of containers/services for different use cases.

    There are following services in the docker-compose.yml file:


    1. opencdms-db: This is an empty TimescaleDB/PostGIS instance for deploying schemas for multiple supported CDMSs. This is currently empty.

    1. postgresql: This is a PostgreSQL instance containing schemas for CDMSs that use PostgreSQL. Among the supported CDMSs, CliDE and WMDR use PostgreSQL.
    2. mysql: This is a MySQL instance containing schemas for CDMSs that use MySQL. Among supported CDMSs, Climsoft and MCH use MySQL.
    3. oracle: This is an Oracle Express Edition instance containing schemas from CDMSs that use Oracle. Among supported CDMSs, Midas uses Oracle.

    1. clide: This is a PostgreSQL 13 instance containing the CliDE schema which is comparable to how CliDE is used in production.
    2. climsoft-4.1.1: This is a MariaDB 10.1 instance containing the Climsoft schema for version 4.1.1 which is comparable to how Climsoft is used in production.
    3. mch-english: This is a MySQL 5.1.17 instance containing the MCH (English) schema which is comparable to how MCH is used in production.
    4. midas: This is an Oracle Express Edition instance containing schemas from Midas which is comparable to how Midas is used in production.
    5. wmdr: This is a TimescaleDB/PostGIS instance containing WMDR schema which is comparable to how WMDR is used in production.

    Service Groups

    These services are divided into 3 groups depending on how they are used:

    • Group 1 - An OpenCDMS database - opencdms-db is meant to be used for any CDMS that is supported by OpenCDMS. A public release of pyopencdms package should be able to handle any operation for any supported CDMS using this instance only.
    • Group 2 - A Postgres/MySQL/Oracle-specific database - postgresql, mysql, oracle should be used when you want to use the same database technology that is used by respective CDMS in production. We have created Dockerfiles for these services in docker/groups with instructions to create the same table structure for respective CDMSs as used in production.
    • Group 3 - A CDMS-specific database - clide, climsoft-4.1.1, mch-english, midas, wmdr are the dedicated instances for respective CDMS. If you want to instantiate a specific CDMS, you should use one of these services.

    Port Mapping

    Port numbers have a group number (see above) prepended to the default port number. This allows developers to quickly identify which group the database server belongs to and also avoids clashes with any existing database servers running on the default ports.

    Service Port
    opencdms-db 15432
    postgresql 25432
    mysql 23306
    oracle 21521
    clide 35432
    climsoft-4.1.1 33308
    mch-english 33306
    midas 31521
    wmdr 35433
  2. Testing with a single database technology (standard)

    The pyopencdms library allows developers to initialise data models for any of the supported systems in any of the supported database systems (allowing developers to install and use a single database system). Using a different underlying database technology will most likely prevent you from using SQL to perform operations like restore commands, but otherwise interaction can be achieved through the pyopencdms Python API.

  3. Testing with SQLite / SpatiaLite (easy)

    The final option does not require you to install any database system and instead uses the lightweight SQLite option. By default, when automated unit tests run a temporary in-memory SQLite database is used. Developers do not need to install any database software.

Data sets

See individual directories with the data directory for data license information.

About

✅ OpenCDMS test data

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PLpgSQL 95.9%
  • Python 4.0%
  • Other 0.1%