pact-jvm icon indicating copy to clipboard operation
pact-jvm copied to clipboard

JVM version of Pact. Enables consumer driven contract testing, providing a mock service and DSL for the consumer project, and interaction playback and verification for the service provider project.

Results 209 pact-jvm issues
Sort by recently updated
recently updated
newest added

With the JSON DSL it is possible to specify the body and matching rules separately. This is useful for scenarios where the JSON contains a lot of boiler plate that...

In Spring `server.servlet.encoding.charset=UTF-8` and `server.servlet.encoding.force=true` will result in response header with `charset=UTF-8` appended to the Content-Type. However using `MockMvcTestTarget` these settings are ignored: ```java @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, properties = {...

I ran OWASP dependency vulnerability check on my app, which uses Pact, specifically the following dependency lib. ``` au.com.dius.pact.consumer junit5 4.2.6 ``` The dependency vulnerability check showed the following results,...

Pact verification is failing while validating provider endpoint with pfx certification **Below section is part of Pact verification section in my POM.xml :** ![image](https://user-images.githubusercontent.com/66178876/123813828-d6201e80-d912-11eb-9eab-c215ea759a59.png) When I do pact verification using...

As per discussion with @uglyog , there seems to be no support for this currently. I was unable to find WebFluxTarget while using pact-jvm for provider with junit5. Hence raising...

**Steps to reproduce:** 1. create interaction between serviceA and serviceB; 2. create failed verification of contract between serviceA and serviceB; 3. create interaction between serviceC and serviceD; 4. create failed...

When the data is very large (response more than 1 MB long), the diff created using myers diff can take many minutes and hog the cpu. As we have multiple...

My team has been working on rolling out automated pact testing as part of our CI process. We've been able to get everything working when calling the `pactVerify` task. In...

I created a sample with a failing test: https://github.com/mjureczko/pact-consumer-issue. When running tests on the consumer side in a series where each test case requires the same provider endpoint, but in...

Does Pact support Spock framework out of the box to write consumer and provider side tests? If yes then do you have examples/reference documentation.

question