Consumer-driven contract test
Last updated
Last updated
You have applied the [[Microservice architecture]] pattern. The application consists of numerous services. Services often invoke other services. You must write automated tests that verify that a service behaves correctly.
How to easily test that a service provides an API that its clients expect?
A test suite for a service that is written by the developers of another service that consumes it. The test suite verifies that the service meets the consuming service's expectations.
is an open source project that supports this style of testing.
This pattern has the following benefits:
Testing a service in isolation is easier, faster, more reliable and cheap
This pattern has the following drawbacks:
Tests might pass but the application will fail in production
This pattern has the following issues:
How to ensure that the consumer provided tests match what the consumer actually requires?
See [[Service Component Test]]
See [[Integration Contract Test]]