This repository contains several Maven projects used to test ToroDB projects that are general enough to be useful on third party software, so they have been released under Apache 2.0 licese to make it easier to use on any enviroment.
The projects contained on this repository are:
testing-core
: which contains some utilities used by other projects.core-junit5
: which contains some utilities to create JUnit 5 tests.docker-core
: which contains some utilities to instanciate Docker containers.sql-docker
: which contains interfaces to generalize Docker containers that can be used to run SQL databases.postgres-docker
: which contains classes that can be used to run PostgreSQL on a Docker container.postgres-junit-5
: which contains JUnit5 extensions and annotations to automatically run a PostgreSQL instance each time a test or test case is executed.mongodb-docker
: which contains classes that can be used to run MongoDB on Docker containers. Single mongod, replica sets and sharded topologies are provided out of the box.mongodb-junit-5
: which contains JUnit5 extensions and annotations to automatically run MongoDB instances, replica sets or shard each time a test or test case is executed.
This utilities are built with Maven. Released artifacts are hosted on Maven Central and snapshot artifacts on Nexus Repository Management. You may build the source code by running "mvn package" on the root directory.
Currently the project is on beta version, there are no released versions and the code is on the devel branch. Please use consider it the main branch of this repository until the first release is done.
Clone the official Oracle docker-images repository:
git clone https://github.com/oracle/docker-images
Download Oracle XE 11.2.0.1 for Linux,
copy the zip into docker-images/OracleDatabase/dockerfiles/11.2.0.1
and run following commands:
cd docker-images/OracleDatabase/dockerfiles
bash buildDockerImage.sh -x -v 11.2.0.2
To generate the fast startup instance use following commands:
docker run -d --name oracle-database -p 0.0.0.0::1521 \
-e ORACLE_PWD=test -e ORACLE_PDB=test -e ORACLE_CHARACTERSET=UTF-8 \
--shm-size=1g oracle/database:11.2.0.2-xe bash -x /u01/app/oracle/runOracle.sh
while ! docker exec oracle-database grep -q "DATABASE IS READY TO USE!"; do sleep 1; done
docker exec oracle-database su -p oracle -c 'echo "SHUTDOWN"|sqlplus / as sysdba'
docker exec oracle-database tar cz -C "$ORACLE_BASE" -f oradata.tar.gz oradata
docker commit oracle-database oracle/database:11.2.0.2-xe-fast
You can get the driver from: http://www.oracle.com/technetwork/database/features/jdbc/index-091264.html And install it in your local repository with maven:
mvn install:install-file -Dfile=<path-to-file> -DgroupId=oracle \
-DartifactId=oracle-jdbc-driver -Dversion=12c-release2 -Dpackaging=jar