Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/creek-service/creek-system-test-gradle-plugin
Gradle plugin for running Creek system tests
https://github.com/creek-service/creek-system-test-gradle-plugin
gradle gradle-plugin kotlin
Last synced: 4 days ago
JSON representation
Gradle plugin for running Creek system tests
- Host: GitHub
- URL: https://github.com/creek-service/creek-system-test-gradle-plugin
- Owner: creek-service
- License: apache-2.0
- Created: 2022-03-31T08:53:22.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T17:26:27.000Z (13 days ago)
- Last Synced: 2024-11-01T17:27:53.454Z (13 days ago)
- Topics: gradle, gradle-plugin, kotlin
- Language: Java
- Homepage: https://www.creekservice.org/creek-system-test-gradle-plugin
- Size: 573 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Gradle Plugin Portal](https://img.shields.io/gradle-plugin-portal/v/org.creekservice.system.test?label=Gradle%20Plugin%20Portal)](https://plugins.gradle.org/plugin/org.creekservice.system.test)
[![build](https://github.com/creek-service/creek-system-test-gradle-plugin/actions/workflows/build.yml/badge.svg)](https://github.com/creek-service/creek-system-test-gradle-plugin/actions/workflows/build.yml)
[![Coverage Status](https://coveralls.io/repos/github/creek-service/creek-system-test-gradle-plugin/badge.svg?branch=main)](https://coveralls.io/github/creek-service/creek-system-test-gradle-plugin?branch=main)
[![CodeQL](https://github.com/creek-service/creek-system-test-gradle-plugin/actions/workflows/codeql.yml/badge.svg)](https://github.com/creek-service/creek-system-test-gradle-plugin/actions/workflows/codeql.yml)
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/creek-service/creek-system-test-gradle-plugin/badge)](https://api.securityscorecards.dev/projects/github.com/creek-service/creek-system-test-gradle-plugin)
[![OpenSSF Best Practices](https://bestpractices.coreinfrastructure.org/projects/6899/badge)](https://bestpractices.coreinfrastructure.org/projects/6899)# Creek System Test Gradle Plugin
A Gradle plugin for running Creek system tests as part of a Gradle build.
See [CreekService.org](https://www.creekservice.org) for info on Creek Service.
## Supported Gradle versions
| Gradle Version | Tested version | Minimum Creek Version | Notes |
|----------------|----------------|-----------------------|---------------------------------------------|
| < 6.4 | | | Not compatible due to API changes in Gradle |
| 6.4.+ | 6.4 | | Supported & tested |
| 6.4+ | 6.9.4 | | Supported & tested |
| 7.+ | 7.6.1 | | Supported & tested |
| 8.+ | 8.8 | > 0.4.0 | Supported & tested |
| > 8.8 | | > 0.4.0 | Not currently tested. Should work... |## Usage
The plugin is available on the [Gradle Plugin Portal][pluginPortal].
See the portal for instructions on how to add the plugin to your build.## Test consistency
System tests run your services in Docker containers.
Therefore, before running the system tests, it is important that any service images are up to-to-date.
This is best achieved by making the `systemTest` task depend on the tasks that build the images.
For example:##### Groovy: Build service container images before running system tests
```groovy
tasks.systemTest {
// Hand-coded dependency on tasks that build images:
dependsOn ':example-service:buildAppImage'
}
```##### Kotlin: Build service container images before running system tests
```kotlin
tasks.systemTest {
dependsOn(":example-service:buildAppImage")
}
```> ### NOTE
> A more dynamic approach to dependency management is discussed [below](#making-system-tests-re-run-on-code-changes)## Tasks
The System Test plugin adds the following tasks to your project:
### systemTest - [SystemTest][4]
> ### NOTE
> Details of how to write system tests can be found in the [Creek System Test Repo][1].* *Dependencies:* `systemTestPrepareDebug` & `systemTestPrepareCoverage`.
N.B. Users of this task should make the task dependent on the tasks the build the docker images under test.
* *Dependants:* `check`The `systemTest` task executes any system tests found in the project, by default under the `src/system-test` directory.
Aside from the customisations possible using the [`systemTest` extension](#system-test-extension), the task accepts the
following command line options:* `--verification-timeout-seconds=NUM`: (default: 60) the number of seconds the system test executor will wait for an
expectation to be met. Increasing the timeout will allow slow systems to be checked, at the expense of slower
test execution.
* `--include-suites=PATTERN`: (default: all) set a regular expression that can be used to filter which test suites to include.
The relative path to a test suite must match the regular expression for it to be included.
* `--extra-argument=ARG[=VALUE]`: (default: none) allows the passing of additional arguments to the test executor.
This can be useful, for example, to pass options to a newer version of the executor, which the plugin does not yet support.
* `--debug-service=NAME`: (default: none) the `NAME` of a service to debug when the system tests run.
See [debugging system tests][debug-system-test] for more info.
* `--debug-service-instance=NAME`: (default: none) the `NAME` of a service instance to debug when the system tests run.
See [debugging system tests][debug-system-test] for more info.For example:
```bash
> gradlew systemTest \
--verification-timeout-seconds=300 \
--include-suites='.*/smoke/.*' \
--extra-argument=--new-arg-one \
--extra-argument=--new-arg-two=some-value \
--debug-service=some-service \
--debug-service-instance=some-service-2
```### systemTestPrepareDebug
* *Dependencies:* none
* *Dependants:* `systemTest`Runs before `systemTest` to prepare the [AttachMe][attachMe] agent so that it can be made available as a mount
to any containers that are to be debugged.### systemTestPrepareCoverage
* *Dependencies:* none
* *Dependants:* `systemTest`Runs before `systemTest` to prepare the [Jacoco][jacoco] agent so that it can be made available as a mount
to the containers of services-under-test.Note: this task will only run if the [Jacoco Gradle plugin][jacoco] has been applied.
### clean*TaskName*
Deletes the files created by the specified task. For example, `cleanSystemTest` will delete the test results.
## Project Layout
The System Test plugin assumes the project layout below. None of these directories need to exist or have anything in them.
The plugin will run whatever it finds, and handles anything which is missing.* `src/system-test`: Directory under which system test packages, suites and cases will be stored.
### Changing the project layout
You configure the project layout via the `creek.systemTest` configuration. This is discussed in more detail in the following
sections. Here is a brief example which changes the location under which system test packages are stored:##### Groovy: Custom system test source directory
```groovy
creek {
systemTest {
testDirectory = file("$projectDir/custom-test")
}
}
```##### Kotlin: Custom system test source directory
```kotlin
creek {
systemTest {
// Set a custom location for the test packages:
testDirectory.set(file("$projectDir/custom-test"))
}
}
```### Making system tests re-run on code changes
To ensure system tests run after code changes to the services under test, the `systemTest` task must be configured
to be dependent on the output of the task that creates each service's Docker image.For example, if the system tests are in their own module, and the project uses the `com.bmuschko.docker-remote-api`
plugin for building Docker images, then the following can be added to their Gradle build file
to have them depend on the Docker images of each service. If the Docker image is rebuilt, the system tests will re-run.```kotlin
import com.bmuschko.gradle.docker.tasks.image.DockerBuildImageplugins {
id("com.bmuschko.docker-remote-api") version "8.1.0"
}tasks.systemTest {
// Make the systemTest task be dependent on the output of all Docker image build tasks:
rootProject.allprojects.flatMap {
it.tasks.withType(DockerBuildImage::class)
}.forEach {
inputs.files(it)
}
}
```## Dependency Management
The System Test plugin adds a number of [dependency configurations][2] to your project. Tasks such as `systemTest`
then use these configurations to get the corresponding files and use them, for example by adding them to the class path
when executing tests.* `systemTestExecutor` the [system test executor][3] dependency, defaulting to the same version as the plugin.
* `systemTestExtension` system test extensions to allow the test to handle different types of resources.
* `systemTestComponent` additional dependencies containing the Aggregate and Service components involved in the tests.For example, the following is an example configuration for a repository containing its service descriptor in a
`services` module and using the [creek-kafka test extension][kafka-test-ext]:##### Groovy: setting system test dependencies
```groovy
dependencies {
systemTestComponent project(':services')
systemTestExtension "org.creekservice:creek-kafka-test-extension:$creekVersion"
}
```##### Kotlin: setting system test dependencies
```kotlin
dependencies {
systemTestComponent(project(":services"))
systemTestExtension("org.creekservice:creek-kafka-test-extension:$creekVersion")
}
```### Changing the system test executor version
By default, the plugin executes system tests using the [system test executor][3] of the same version. However,
you can configure the executor version via the `systemTestExecutor` dependency configuration.For example, the following will always use the latest version of the executor:
##### Groovy: Custom system test executor version
```groovy
dependencies {
systemTestExecutor 'org.creekservice:creek-system-test-executor:+'
}
```##### Kotlin: Custom system test executor version
```kotlin
dependencies {
systemTestExecutor("org.creekservice:creek-system-test-executor:+")
}
```When running a different version of the executor it may be that the executor supports command line options that
are not exposed by the plugin. In such situations, you can pass extra arguments to the executor using the
`extraArguments` method of the `creek.systemTest` extension.##### Groovy: Passing extra arguments to the generator
```groovy
creek.systemTest {
extraArguments "--some", "--extra=arguments"
}
```##### Kotlin: Passing extra arguments to the generator
```kotlin
creek.systemTest {
extraArguments("--some", "--extra=arguments")
}
```## System Test Extension
The System Test plugin adds the `creek.systemTest` extension. This allows you to configure a number of task related properties
inside a dedicated DSL block.For more information on service debugging, see [debugging system tests][debug-system-test].
##### Groovy: Using the `systemTest` extension
```groovy
creek.systemTest {
// (Optional) Set a custom location for the test packages:
// Default: src/system-test
testDirectory = file("$projectDir/custom-test")
// (Optional) Set a custom location for results to be written:
// Default : build/test-results/system-test
resultDirectory = file("$buildDir/custom-result")
// (Optional) Set a custom verification timeout:
// Default: 1 minute
verificationTimeout Duration.ofMinutes(2)
// (Optional) Set a filter to limit which test suites to run:
// Default: all suites
suitePathPattern = ".*include.*"// (Optional) Set extra arguments to be used when running system tests:
// Default: none
extraArguments "--some", "--extra=arguments"
// Optional configuration of service debugging during system test runs
debugging {
// (Optional) Set the port the AttachMe IntelliJ plugin is listening on.
// This can be configured in the `AttachMe` run configuration in Intelli
// Default: 7857 (The plugin's default)
attachMePort = 1234
// (Optional) Set the base port number services will expose to the debugger.
// The first service instance being debugged will listen for the debugger attaching on this port number.
// Subsequent instances will listen on sequential ports.
// Default: 8000
baseServicePort = 4321
// (Optional) The set of services to debug
// All instances of the service will be debugged.
// Default: none
serviceNames "service-a", "service-b"// (Optional) The set of service instances to debug.
// Instance names are in the form -
// Instance number starts at zero for the first instance of the service to be started.
// Default: none
serviceInstanceNames "service-a-0"
}
}
```##### Kotlin: Using the `systemTest` extension
```kotlin
creek.systemTest {
// (Optional) Set a custom location for the test packages:
// Default: src/system-test
testDirectory.set(file("$projectDir/custom-test"))
// (Optional) Set a custom location for results to be written:
// Default : build/test-results/system-test
resultDirectory.set(file("$buildDir/custom-result"))// (Optional) Set a custom verification timeout:
// Default: 1 minute
verificationTimeout(Duration.ofMinutes(2))// (Optional) Set a filter to limit which test suites to run:
// Default: all suites
suitePathPattern.set(".*include.*")// (Optional) Set extra arguments to be used when running system tests:
// Default: none
extraArguments("--some", "--extra=arguments")// Optional configuration of service debugging during system test runs
debugging {
// (Optional) Set the port the AttachMe IntelliJ plugin is listening on.
// This can be configured in the `AttachMe` run configuration in Intelli
// Default: 7857 (The plugin's default)
attachMePort.set(1234)// (Optional) Set the base port number services will expose to the debugger.
// The first service instance being debugged will listen for the debugger attaching on this port number.
// Subsequent instances will listen on sequential ports.
// Default: 8000
baseServicePort.set(4321)// (Optional) The set of services to debug
// All instances of the service will be debugged.
// Default: none
serviceNames.set(setOf("service-a", "service-b"))// (Optional) The set of service instances to debug.
// Instance names are in the form -
// Instance number starts at zero for the first instance of the service to be started.
// Default: none
serviceInstanceNames.set(setOf("instance-c", "instance-d"))
}
}
```## Test Reporting
The `systemTest` task generates XML JUnit style test results.
By default, these are written to `$buildDir/test-results/system-test`. The output location can be changed by setting
the `creek.systemTest.resultDirectory` property.## Test coverage
If the [Jacoco Gradle plugin][jacoco] is applied, the `systemTest` task will generate code coverage data.
The coverage data is written to `$buildDir/creek/coverage/systemTest.exec`.
However, by default, this data will not be included in any coverage report.An aggregate coverage report for all unit and system tests in a multi-module project can be build with:
##### Groovy: Aggregate `coverage` task
```
Please feel free to convert the below to Groovy and raise a PR to update these docs :)
```##### Kotlin: Aggregate `coverage` task
```kotlin
val coverage = tasks.register("coverage") {
group = "creek"
description = "Generates an aggregate code coverage report"val coverageReportTask = this
allprojects {
val proj = this
// Roll results of each test task into the main coverage task:
proj.tasks.matching { it.extensions.findByType() != null }.forEach {
coverageReportTask.sourceSets(proj.sourceSets.main.get())
coverageReportTask.executionData(it.extensions.findByType()!!.destinationFile)
coverageReportTask.dependsOn(it)
}// Roll results of each system test task into the main coverage task:
proj.tasks.matching { it.extensions.findByType() != null }.forEach {
coverageReportTask.executionData(it.extensions.findByType()!!.destinationFile)
coverageReportTask.dependsOn(it)
}
}reports {
xml.required.set(true)
html.required.set(true)
}
}
```**ProTip:** The [aggregate-template][aggregate-template] repository comes with this task preconfigured.
### Image requirements for code coverage
For code coverage to be correctly generated it is important that the service process running inside the Docker container
is the _primary_ process. This will ensure that `SIGTERM` shutdown requests will be forwarded to the process, allowing
Jacoco to write out coverage results on program exit. This can be achieved by using `exec` to replace the shell process
with your JVM process:```dockerfile
# This will not work:
CMD java -jar /your-service.jar# Use this instead:
CMD exec java -jar /your-service.jar
```The same applies if you're using ENTRYPOINT instead of CMD:
```dockerfile
# This will not work:
ENTRYPOINT java -jar /your-service.jar# Use this instead:
ENTRYPOINT exec java -jar /your-service.jar
```**ProTip:** The [aggregate-template][aggregate-template] repository comes with this preconfigured.
## Debugging system tests
Creek supports debugging of the services running in their Docker containers.
Service debugging requires the IntelliJ [AttachMe][attachMe] plugin to be installed.With the [AttachMe][attachMe] plugin installed, debugging a service is as simple as 1, 2, 3:
1. Create and run an `AttachMe` run configuration on the default port of `7857`.
2. Place the required breakpoints in the service's code.
3. Run the system tests with additional `--debug-service` arguments. For example:
```
./gradlew systemTest --debug-service=some-service
```When the named service is started, the debugger will attach.
For more details on system test debugging, see the [creek-system-test][debug-system-test] docs.
[1]: https://github.com/creek-service/creek-system-test
[2]: https://docs.gradle.org/current/userguide/declaring_dependencies.html#sec:what-are-dependency-configurations
[3]: https://github.com/creek-service/creek-system-test/tree/main/executor
[4]: src/main/java/org/creekservice/api/system/test/gradle/plugin/test/SystemTest.java
[kafka-test-ext]: https://www.creekservice.org/creek-kafka/#system-test-extension
[debug-system-test]: https://github.com/creek-service/creek-system-test#debugging-system-tests
[attachMe]: https://plugins.jetbrains.com/plugin/13263-attachme
[jacoco]: https://docs.gradle.org/current/userguide/jacoco_plugin.html
[aggregate-template]: https://www.creekservice.org/aggregate-template/
[pluginPortal]: https://plugins.gradle.org/plugin/org.creekservice.system.test