This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Build and Test Project
Alexander Kiel edited this page Jan 6, 2021
·
5 revisions
Prerequisite: Java 11, Maven 3.6, Docker
mvn install
Prerequisite: Java 11, Maven 3.6, PostgreSQL 11
- Build the entire project from the root directory of the repository
mvn install
- Install PostgreSQL 11 (localhost:5432)
- Add DB User liquibase_user
CREATE USER liquibase_user WITH LOGIN NOSUPERUSER INHERIT CREATEDB CREATEROLE NOREPLICATION PASSWORD 'fLp6ZSd5QrMAkGZMjxqXjmcWrTfa3Dn8fA57h92Y';
- Create Databases fhir and bpe with owner liquibase_user
CREATE DATABASE bpe OWNER liquibase_user; CREATE DATABASE fhir OWNER liquibase_user;
- Start org.highmed.dsf.fhir.FhirJettyServerHttps from your IDE with execution folder: .../highmed-dsf/dsf-fhir/dsf-fhir-server-jetty
- Start org.highmed.dsf.bpe.BpeJettyServerHttps from your IDE with execition folder: .../highmed-dsf/dsf-bpe/dsf-bpe-server-jetty
- To access the FHIR endpoint (https://localhost:8001/fhir/...) and BPE rest interface (https://localhost:8002/bpe/...) via WebBrowser install .../highmed-dsf/dsf-tools/dsf-tools-test-data-generator/cert/Webbrowser_Test_User/Webbrowser_Test_User_certificate.p12 (Password: password) in your browsers certifiate store. The p12 file includes a client certificate for "Webbrowser Test User" and the "Test CA" certificate. All private-keys and certificates including the Test CA are generated during the maven build and are private to your machine. Make sure to protect the CA private-key at .../highmed-dsf/dsf-tools/dsf-tools-test-data-generator/cert/ca/testca_private-key.pem from third-party access if you have installed the Test CA certificate in your certificate store.
Prerequisite: Java 11, Maven 3.6, Docker 18
- Build the entire project from the root directory of this repository
mvn install
- Build docker images
- Windows: in the .../dsf-docker-test-setup folder execute
docker-build.bat
- Unix/Linux: in the .../dsf-docker-test-setup folder execute
docker-build.sh
- Windows: in the .../dsf-docker-test-setup folder execute
- Start docker containers
- To start the FHIR server execute in the .../dsf-docker-test-setup/fhir folder
dev: docker-compose up prod: docker-compose -f docker-compose.yml -f docker-compose.prod.yml up
- To start the BPE server execute in the .../dsf-docker-test-setup/bpe folder
dev: docker-compose up prod: docker-compose -f docker-compose.yml -f docker-compose.prod.yml up
- To start the FHIR server execute in the .../dsf-docker-test-setup/fhir folder
- To access the FHIR endpoint (https://localhost/fhir/...) and BPE rest interface (https://localhost:8443/bpe/...) via WebBrowser install .../highmed-dsf/dsf-tools/dsf-tools-test-data-generator/cert/Webbrowser_Test_User/Webbrowser_Test_User_certificate.p12 (Password: password) in your browsers certifiate store. The p12 file includes a client certificate for "Webbrowser Test User" and the "Test CA" certificate. All private-keys and certificates including the Test CA are generated during the maven build and are private to your machine. Make sure to protect the CA private-key at .../highmed-dsf/dsf-tools/dsf-tools-test-data-generator/cert/ca/testca_private-key.pem from third-party access if you have installed the Test CA certificate in your certificate store.
- If you run in docker network troubles, clean up your network using
docker network ls -q | xargs docker network rm
- In production: if the warning Service "db" is using volume "/var/lib/postgresql/data" from the previous container appears, run the command
before starting the containers.
docker-compose down -v
- For hints on setting up 5 Ubuntu VMs with Docker running on a Windows 10 host with Hyper-V and Ansible see test_setup_windows.txt
- For hints on setting up 5 Ubuntu VMs with Docker running on a MacOS Catalina host with VirtualBox and Ansible see test_setup_macos.txt
Each process contains an ExampleStarter which creates FHIR resources and sends them to a designated FHIR-Endpoint in order to start the corresponding process in the Manual Integration Test Setup. The same client certificate can be used as above: .../highmed-dsf/dsf-tools/dsf-tools-test-data-generator/cert/Webbrowser_Test_User/Webbrowser_Test_User_certificate.p12 (Password: password).
The following configuration is needed:
- The path to the client certificate: either the environment-variable
DSF_CLIENT_CERTIFICATE_PATH
orargs[0]
has to be set - The password of the client certificate: either the environment-variable
DSF_CLIENT_CERTIFICATE_PASSWORD
orargs[1]
has to be set