We decided to implement it in an extremely simplified version of an insurance sales system to test the following aspects of microservice development:
- Project creation and development
- Access of both relational and NoSQL databases
- Blocking and non-blocking operations implementation
- Microservice to microservice communication (synchronous and asynchronous)
- Service discovery
- Running background jobs
The iss-policy-search-service microservice is responsible to provided an insurance policy search function. This module listened for events from Kafka, converted received DTOs to “read model” (used later in search), and saved the results in a database. It also exposed a REST endpoint for search policies.
In the Integration Tests, the Testcontainers Java library is used for starting kafka in a docker container.
Running application from command line using Docker, this is the cleanest way. In order for this approach to work, of course, you need to have Docker installed in your local environment.
- From the root directory you can run the following command:
docker-compose -f docker/docker-compose.yml up --build
- Application will be running on: http://localhost:8083
- To stop it you can open other terminal in the same directory, and then run the following command:
docker-compose -f docker/docker-compose.yml down
mvn -B clean verify
- Import the testcontainers-demo application as a Maven project to your IDE.
- Run maven clean verify with profile 'integration-test' to build the project and start running the IT tests.
mvn -B clean verify -Pintegration-test
- Import the testcontainers-demo application as a Maven project to your IDE.
- Run maven clean install command to build the project.
- Then you can search for XXXIT.java or XXXE2ETestCase.java class and run it as a junit test.