top of page
  • Writer's pictureMarie Cruz

Integrating Pact in our CircleCI build pipelines

Updated: Nov 28, 2022



After following my previous blog post, hopefully by now you have a solid foundation about what Contract testing can offer. In one of the projects that I am involved with, we are trying to do contract testing so I need to understand the different features that Pact can offer. In this post, we’ll look at how we can integrate our contract tests to a CI/CD pipeline and how we can use versioning and tags whenever our consumers and/or providers update the contract. For this tutorial, I'll be using CircleCI and the Pact broker CLI command.


Integrating Consumer tests on CircleCI

Let's first start by integrating our consumer tests to CircleCI. CircleCI has a great getting started guide which you can use to create your first build pipeline. Just follow the instructions along and you should be able to setup a pipeline in a short time. All you need is the github repo where your tests are stored. Feel free to fork mine as an example. I created a different branch which contains a config.yml file, like the one shown below, to be stored in the root .circleci folder.


Initial config.yml for running our tests

Ok, let's walk through this config one by one. We are using CircleCI version 2.1 and we have defined one job called build. A job in CircleCI is simply a collection of commands or tasks that CircleCI runs. In this job, we are using the Docker command to get the latest image of Node so we can run the commands that we have to run our tests. After we check out our code, we run npm install to install our project dependencies and npm run test:consumer which runs our consumer contract tests.


Let's push these changes to a new branch and if there are no issues, it should pass as expected.




What's great about CircleCI is you don't need additional installations to get started. Just create a .circleci folder in your github repo, add your config.yml file and you can pretty much get started already. Now, let's update our CircleCI config to add another step to upload our defined contract to our Pact broker.


Uploading Contract to Pact Broker

Since we are using environment variables to store our Pact broker URL and API token, we need to store this in our CircleCI project settings.


To create environment variables in CircleCI, we can follow the instructions here. I stored $PACT_BROKER_URL and $PACT_BROKER_TOKEN as shown below.



Now, let's update our CircleCI config to have 1 step for setting our environment variables and another step to publish our contract.



I added a step to setup the environment variables before installing my project dependencies. CircleCI uses bash so it automatically loads all environment variables stored in $BASH_ENV. I am simply exporting my PACT_BROKER_TOKEN and PACT_BROKER_URL to BASH_ENV so it can be accessed by my other steps later on.


The second command that I added is to publish the contract to Pactflow by running npm run publish:pact. Since the environment variables are loaded already, the step should pass as expected.




Running Provider test on CircleCI

Normally, your provider will be on a separate project. But for this example, the provider tests are also on the same project repo (again for simplicity). Since I have already stored the environment variables that I needed, the only thing that I need to do is to add another step on my build job to run the provider test. npm run test:provider in this case does 2 things. First, it starts my test provider service and then the actual provider test is run.


CircleCI config for running our contract tests


All seems well, the contract is getting verified by the provider. However, we still have one issue here. On the real world, our consumer and provider will have different versions to mark that they have introduce small or breaking changes. We need to be able to detect in our contract tests that we are running it on the version that we want. Basically, we need to ask ourselves this question before we deploy our changes to production - "is it safe for me to deploy this consumer version or provider version to production?". This is where the command can-i-deploy comes in which comes built in with the Pact broker CLI tool.


Can I Deploy?

The Pact broker records the consumer version whenever a contract has been uploaded. At the same time, when the provider verifies the contract, the provider version is also recorded by the broker. We then end up with a table called the "Pact Matrix" which holds different consumer and provider versions and if the contract was verified successfully or not on each of these versions.


Pact Matrix is built in on your Pact Broker

I slightly modified my command to publish the contract by using the Git commit SHA of my last commit instead of hardcoding the value. The environment variable $CIRCLE_SHA1 is a built-in variable from CircleCI.


"publish:pact": "pact-broker publish ./pacts --consumer-app-version $CIRCLE_SHA1 --broker-base-url $PACT_BROKER_URL --broker-token $PACT_BROKER_TOKEN"

Now, let's used the can-i-deploy command to see if we can deploy our latest consumer version with the latest provider version, which I will hardcode as 1.0.0 for now.


 "can:i:deploy:consumer": "pact-broker can-i-deploy --pacticipant Consumer --version $CIRCLE_SHA1 --pacticipant Provider --version 1.0.0 --broker-base-url $PACT_BROKER_URL"

Note: pacticipant is not a typo 😄this is the actual name that Pact uses!


Let's run this command by typing:


npm run can:i:deploy:consumer


All seems good! However, we are hardcoding the provider version. Most likely, we won't have an idea what the provider version will be. We can ask them of course but that would mean our solution will not scale correctly. An alternative is to use tags. Whenever a provider successfully verifies the contract, we can add another step on the provider pipeline afterwards to create a version tag and push this tag to our Pact broker. For example:


"create:provider:tag": "pact-broker create-version-tag --pacticipant Provider --tag staging --broker-base-url $PACT_BROKER_URL"


Now, we can amend our command on the consumer side so we just need to verify if it's safe to deploy our consumer version to the provider's latest staging tag. For example:


"can:i:deploy:consumer": "pact-broker can-i-deploy --pacticipant Consumer --version $CIRCLE_SHA1 --pacticipant Provider --latest staging --broker-base-url $PACT_BROKER_URL"

We can amend the tags to be whatever but ideally, it should match our environment names (dev, staging, prod) so it's clearer.


Putting it all together

My CircleCI config now looks like the one below:



Obviously, in real world examples the provider pipeline is separate from the consumer pipeline. But hopefully, this will give you an idea on how to use the Pact broker and integrate it in your pipeline. Ideally, whenever a consumer pushes a new contract, a notification should be sent to the provider so the provider verification tests are run. When the provider tests are run and successful, it should send a notification back to the consumer so the consumer can then deploy their changes safely.



I found the above image helpful from Pact's official documentation to visualise what our pipeline should look like when everything is integrated together. This can be achieved by using webhooks which I'll play around with next time 🙂


Github repo for this example: https://github.com/mdcruz/pact-js-example

1,924 views0 comments
bottom of page