Other Languages
For Providers
written in languages that don't have native Pact support, you can still verify that they satisfy their Pacts, using the generic Pact Provider Verification tool.
Generic Pact Provider Verification
This setup simplifies Pact Provider verification process in any language.
Features:
- Verify Pacts published to a Pact Broker
- Verify local
*.json
Pacts for testing in a development environment - Pre-configured Docker image with Ruby installed and a sane, default
src/Rakefile
keeping things DRY - Works with Pact provider states should you need them
The two solutions below use the Docker image and the Pact Provider Verifier Gem. For advanced usage, you can use Pact Provider Proxy Gem directly, however in most cases the Pact Provider Verifier should cover your needs.
How it works
Steps:
- Create an API and a corresponding Docker image for it
- Publish Pacts to the Pact broker (or create local ones)
- Start your API
- Run the Pact Provider Verifier
- Stop your API
The verifier will then replay all of the Pact files against your running API, and will fail (exit 1
) if they are not satisfied.
There is no testing DSL available so you will need to be sensitive to process exit codes when running this in a CI/CD pipeline.
If you are using Docker and Docker compose, steps 3-5 above are automatically taken care of for you.
Docker Example
The example below uses Docker image from the Pact Provider Verifier project.
Steps:
- Create an API and a corresponding Docker image for it
- Publish Pacts to the Pact broker (or create local ones)
- Create a
docker-compose.yml
file connecting your API to the Pact Verifier - Set the following required environment variables:
pact_urls
- a comma delimited list of pact file urlsprovider_base_url
- the base url of the pact provider (i.e. your API)
- Run
docker-compose build
and thendocker-compose up
Sample docker-compose.yml file for a Node API exposed on port 4000:
API with Provider States
Execute pact provider verification against a provider which implements the following:
an http post endpoint which sets the active pact consumer and provider state
consumer=web&state=customer%20is%20logged%20in
The following environment variables required:
pact_urls
- a comma delimited list of pact file URLprovider_base_url
- the base URL of the pactProvider
provider_states_active_url
- the full URL of the endpoint which sets the active pactConsumer
andProvider
state`
Updated Sample docker-compose.yml file:
Ruby Example
If you're not using Docker, you will need to:
- Install a Ruby runtime
- Fork/clone the repository or copy the scripts into your project
- Run the following commands: