Skip to content

qbrosdev/Contract-Testing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

1 Commit
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Contract Testing

In contract testing, we try to test the interactions between (Micro)Services and find all the incompatibilities in the unit tests 😜 before publishing and discovering them in the staging area (integration tests) 😬 or even in production πŸ’” 😲.

Approaches

As it is described in this post, there are two approaches to this problem.

  • CDC Consumer Driven Contracts
  • PDC Producer Driven Contracts (This is a made-up name could not find any references)

CDC πŸ”Ό

This approach is used in the Pact framework. In the Pact, each API client (consumer) defines its expectations and shares it will the API provider (producer), and the provider has to satisfy (change) those expectations. Producer API is tested against consumer expectations.

PDC πŸ”½

This approach is used in Spring Cloud Contract (SCC). In SCC the API provider (Producer) defines the expectations and tests them against its implementation and then, publishes them to the API client so they can test their own behavior against the provided API

About

Demo project for contract testing approaches in enterprise java

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages