I am the part of a team that is "pioneering" the usage of pact for our whole company. On this journey we faced many issues that were mostly due to misunderstanding the usage of pact for CDC-Testing. A lot of those questions could be solved over time, but there are still a few main questions I was not able to find any good solution or examples for. Since I think that answering these questions is quite fundamental, I thought trying to reach out to you directly would probably help us.
- Question: When implementing provider tests, at what "layer" of the application should we implement our tests at?
Background: When we first started adding CDC tests with pact to our applications, we did functional testing by starting an application context including an in memory database and we set up data in this database. This resulted in tests that were hard to maintain, additionally we were actually doing functional testing and pact is not meant for that. After overthinking the approach of how we want to implement tests several times, we ended up by just testing our boundry which includes the rest interface and (at best) input and output validation. - Question: What is the idea behind using multiple provider states?
Background: Pact supports using multiple provider states to one interaction. We experimented with this feature, but a lot of our developers do not think that there is a big advantage in multiple provider states. Therefore, a lot of our cdc tests with pact have long and complex described provider states. So I think we did not understand the basic concept about this feature. - Question: What is the idea behind parameterized provider states?
Background: Basically the same background as before. We experimented with this feature but a lot of our developers decided not to use it. Because this rejection of the feature is based in not understanding the feature completely, I would like to know what this feature is thought to be used for. - Question: How should we handling pact regarding our versioning strategy?
Background: Currently, handling contracts between applications with semantic versioning is documented in the official pact documentation. We use SNAPSHOT versioning and changing the versioning strategy is currently not an option. Additionally, multiple other teams in our compoany exist that have different versioning strategies. Basically it is not possible to aggree on one strategy in general. What does this mean when we are talking about using cdc with pact in a across our whole company? What problems could that lead to? Will tagging contracts correctly (master, feature, development, production, ...) resolve any problems regarding the versioning?
What Pact adds is a new step to your CI build. During your build, you should use pact-provider-verifier which takes the pact created by the consumer, replays it against your provider and compares the actual response to the expected response defined in the pact. This lets you verify that your provider can fulfill the expected interactions defined by the consumer.
I think the main idea behind multiple provider states is order and code reusability. Imagine your consumer defines 2 interactions with the following provider states:
Both states share some logic between them and therefore setting up provider state like this can get messy very quickly. Instead, mapping the following states to code that sets up each state separately is much nicer:
If you look back at the example above, you'll see that the provider is now very coupled with the user with ID 123. If the consumer decided to change that to ID 456, that will break the provider setup implementation. So the idea is to pass "123" as a parameter, rather than in the state description string. The pact would then look something like this: