This tool provides an amalgamated CLI of all the Pact CLI tools available in the Pact Ruby implementation (publish and verify pacts, and interact with the Pact Broker). While it is functionally the same as the pact-ruby-standalone it provides a Docker container and a single top level entrypoint (pact
).
You can run the following examples against a public test Pact Broker with the following credentials:
export PACT_BROKER_BASE_URL="https://test.pact.dius.com.au"
export PACT_BROKER_USERNAME="dXfltyFMgNOFZAxr8io9wJ37iUpY42M"
export PACT_BROKER_PASSWORD="O5AIZWxelWbLvqMd8PkAVycBJh2Psyg1"
The $(date +%s)
in the examples is just to generate a pseudo random GIT_COMMIT.
If you are using a Pact Broker with bearer token authentication (eg. Pactflow), then set PACT_BROKER_TOKEN
instead of the username and password.
$ docker run --rm pactfoundation/pact-cli:latest help
Commands:
broker # Interact with a Pact Broker
publish PACT_DIRS_OR_FILES ... # Publish pacts to a Pact Broker.
verify PACT_URL ... # Verify pact(s) against a provider. S...
version # Print the version
help [COMMAND] # Describe available commands or one s...
$ docker run --rm pactfoundation/pact-cli:latest broker help
Commands:
broker can-i-deploy -a, --pacticipant=PACTICIPANT -b, --broker-base-url=BRO...
broker create-version-tag -a, --pacticipant=PACTICIPANT -b, --broker-base-u...
broker create-webhook URL -X, --request=REQUEST -b, --broker-base-url=BROKE...
broker describe-version -a, --pacticipant=PACTICIPANT -b, --broker-base-url...
broker help [COMMAND] ...
broker publish PACT_DIRS_OR_FILES ... -a, --consumer-app-version=CONSUMER_A...
broker version ...
You can clone [email protected]:pact-foundation/pact-ruby-cli.git
and run the following from the root directory.
docker run --rm \
-v ${PWD}:${PWD} \
-e PACT_BROKER_BASE_URL \
-e PACT_BROKER_USERNAME \
-e PACT_BROKER_PASSWORD \
pactfoundation/pact-cli:latest \
publish \
${PWD}/example/pacts \
--consumer-app-version 1844a12$(date +%s)
See https://github.com/pact-foundation/pact_broker-client#publish for all publish options.
docker run --rm \
-e PACT_BROKER_BASE_URL \
-e PACT_BROKER_USERNAME \
-e PACT_BROKER_PASSWORD \
pactfoundation/pact-cli:latest \
publish \
/pact/example/pacts \
--consumer-app-version 1844a12$(date +%s)
See the example docker-compose-verify.yml
PACT_BROKER_PUBLISH_VERIFICATION_RESULTS=true GIT_COMMIT=62a79cbc$(date +%s) \
docker-compose -f docker-compose-verify.yml \
up --build --abort-on-container-exit --exit-code-from pact_verifier
See https://github.com/pact-foundation/pact-provider-verifier/#usage for all verification options.
docker run --rm \
-e PACT_BROKER_BASE_URL \
-e PACT_BROKER_USERNAME \
-e PACT_BROKER_PASSWORD \
pactfoundation/pact-cli:latest \
broker can-i-deploy \
--pacticipant docker-example-consumer \
--latest
See https://github.com/pact-foundation/pact_broker-client#can-i-deploy for all options.
docker run --rm \
-e PACT_BROKER_BASE_URL \
-e PACT_BROKER_USERNAME \
-e PACT_BROKER_PASSWORD \
pactfoundation/pact-cli:latest \
broker create-version-tag \
--pacticipant docker-example-consumer \
--version 1844a12$(date +%s) \
--tag prod
See https://github.com/pact-foundation/pact_broker-client#create-version-tag for all options.
docker run -dit \
--rm \
--name pact-mock-service \
-p 1234:1234 \
-v ${HOST_PACT_DIRECTORY}:/tmp/pacts \
pactfoundation/pact-cli:latest \
mock-service \
-p 1234 \
--host 0.0.0.0 \
--pact-dir /tmp/pacts
The -it
is required if you want the container to respond to a ctl+c
. The container takes an unexpectedly long time to shut down when using docker stop
. This is an open issue.
See https://github.com/pact-foundation/pact-mock_service#mock-service-usage for all options.
docker run --rm \
-v <PATH_TO_CERT_FILE_ON_HOST>:/tmp/cacert.pem \
-e SSL_CERT_FILE=/tmp/cacert.pem \
pactfoundation/pact-cli:latest ...
You can also set SSL_CERT_DIR
and mount the directory instead of the file.
Bug reports and pull requests are welcome on GitHub at https://github.com/pact-foundation/pact-ruby-cli.
The gem is available as open source under the terms of the MIT License.