Skip to content

A small playground for citrus experiments

Notifications You must be signed in to change notification settings

maletic/citrus-playground

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Citrus Playground

What it is

A small sample project, containing a service module (representing the system under test) and a citrus module, containing the citrus tests for the service.

Prerequisite

The project uses Java 17, so a Java 17 JDK should be installed.

The services are deployed with docker compose, hence a working docker setup is recommended. For the deploymeht via docker compose we need internet connection to load the base image used.

When deployed,

  • the service is exposed under http://localhost:8080, and has opened debug port 5006 (also forwarded to localhost)

  • citrus is exposed under http://localhost:4567, and has opened debug port 5007 (again, also forwarded to localhost).

Citrus tests are not started automatically, but must be triggered explicitly.

The citrus tests are written with testng.

Building and deploying the project via docker-compose

From the project root, build the project with the profile build-test-jar active:

Listing 1. Build the project
$ mvnw -Pbuild-test-jar package

When the build is completed, start the compose environment:

Listing 2. Start docker compose environment
$ cd local-deployment
$ docker compose up -d

We verify that both services are running:

Listing 3. Verification that both the service and citrus are running in docker
$ curl http://localhost:8080/q/health/ready
{
    "status": "UP",
    "checks": [
    ]
}%
$ curl http://localhost:4567/health
{ "status": "UP" }%

Triggering the tests

From the local machine

We just need to execute the goal verify on module citrus:

Listing 4. Triggering the tests from the local machen
$ ./mvnw -pl citrus verify

Through remote execution

In this scenario, we trigger the citrus container, running in docker, to execute the tests.

Via citrus-maven-remote-plugin

We execute the verify`goal on module `citrus with profile trigger-citrus-remote activated:

Listing 5. Triggering citrus tests via citrus-maven-remote-plugin
$ ./mvnw -Ptrigger-citrus-remote -pl citrus verify

Via cURL

We execute the following curl command to trigger the tests without the citrus-maven-remote-plugin:

Listing 6. Triggering citrus tests via cURL
$ curl -H 'Content-Type: application/json' -d '{ "engine": "testng" }' -X PUT -v http://localhost:4567/run

Cleanup

To clean up, we shutdown the docker containers:

Listing 7. Shutting down the containers
$ cd local-deployment
$ docker compose down

About

A small playground for citrus experiments

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 86.2%
  • Dockerfile 13.8%