Quick Start - AWS Codebuild
Overview
This guide explains how to use Diffblue Cover to write tests in AWS Codebuild. This guide assumes that you have:
A Maven or Gradle project that:
Compiles
Does not have non-compiling or failing tests
Is stored in a Git repository that can be accessed by AWS
A basic understanding of AWS Codebuild CI
Permissions to add Codebuild jobs and secret variables.
Diffblue Cover stored in the cloud for download along with the license key. See Installation.
To integrate Diffblue Cover into your CI pipeline, we will guide you through creating a workflow file that:
Builds your project
Downloads and activates Diffblue Cover CLI
Runs Diffblue Cover to create tests
Commits the created tests to a branch
The following sections provide more details for each of the above steps.
1. Building the project
Create a new build project and select the source to be your Git repository (in this example we'll be using GitHub).
Add a new phase to build your project. Make sure to check, and if necessary modify, the command to build your project. Running the project’s tests is not required, and you will save time by skipping them, but they do need to compile and pass.
2. Downloading and activating Diffblue Cover CLI
You need to give the CI run access to the Diffblue Cover files and activate the dcover
license in order to write tests.
This guide assumes that you have a URL with the Diffblue Cover CLI release zip and the license key for online activation during the CI run - see Installation. If your license allows it you may wish to install Diffblue Cover with offline activation - see Licensing.
Create a new secret in the secret manager called DIFFBLUE_COVER_URL
and set the value to the URL of the Diffblue Cover CLI release zip file. Add a second secret with the name DIFFBLUE_COVER_LICENSE_KEY
and set the value to your Diffblue Cover license key. Make sure that the service role you assigned to this project has access to these secrets. To do this create a new IAM policy and assign it to your service role.
Append the code for getting, unzipping, and activating dcover
to your workflow file, replacing the strings with the ARNs for the corresponding secrets you created.
This will put the Diffblue Cover files into the dcover
directory in the root of the workspace. The Diffblue Cover files contain a script to invoke dcover
which has the relative path dcover/dcover
. Add this to your path so that you can call Diffblue Cover as dcover
(or dcover.bat
).
Push the changes so this workflow runs - ensure that you can see the successful activation of dcover
before moving on. If your Diffblue Cover did not successfully activate, please see Licensing or contact Diffblue Support.
3. Running Diffblue Cover CLI to create tests
Now that Diffblue Cover is running in AWS Codebuild, you can use it to write tests. Append the following to your workflow file. Note that the --batch
option makes the output more suitable for CI, as it ensures the CI logs are not cluttered with progress bar output.
Push the changes so this workflow runs. Once successfully complete, you should expect to see output that looks like this:
If you don't see this output, the call may need small modification for your project or dependencies adding until it works. The output gives you warnings along the way to guide you. See CLI Commands for more information.
Depending on the size of your module/project, creating tests could take a while. You may wish to restrict test creation to a single class by specifying its fully qualified name:
4. Committing the created tests to a branch
To see these new tests in the project repository you'll need to commit them and push back to the repository. You'll need to configure Git credentials to commit. We recommend creating a service account for this.
As this project was cloned using https we must add our credentials to the origin URL - to do this you must add a third secret in the secret manager for the GitHub token.
Please note - be careful not to create an infinite CI loop here. This is because pushing a commit with updated tests will re-trigger the pipeline. To avoid this becoming a loop we recommend checking the author of each commit to ensure you are not creating tests for a commit authored by your Diffblue service account. This can be done by appending the following line to the start of all three jobs making sure to replace "db-ci-bot" with the name of your service account.
Last updated