Skip to content

CJSCommonPlatform/framework-tools

Repository files navigation

Framework Tools

Build Status Coverage Status

Tools for working with services using the microservice framework.

Replay Tool

For instruction on how to use the replay tool, please see the replay tool page

Integration Tests

The Integraion Tests expect a running Postgres database, with the correct users and databases configured. The integration tests can be skipped if no local Postgres database is installed

To run with the Integration Tests then your postgress should be configured so, with the folowing user:

Parameter Vaule
host localhost
port 5432
username framework
password framework

You will then need to create three databases owned by the new framework user:

  • frameworkeventstore
  • frameworkviewstore
  • frameworkfilestore

Skipping Integration Tests

If you do not have access to a local posgres database then the Integration Tests can be skipped. To skip, set the following property when running Maven:

mvn clean install -Drun.it=false