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 221 pact-jvm issues
Sort by recently updated
recently updated
newest added

Hey all, I'm sure this is just some configuration error on my fault, but haven't been able to find anything in the issues. I'm using the following provider dependencies: ```...

I'm currently using the following dependencies in my Java project: 'au.com.dius.pact:consumer:4.1.41', 'au.com.dius.pact.consumer:junit:4.1.41', 'au.com.dius.pact.provider:junit:4.1.41', I would like to override the verifyResponseFromProvider method in the Pact framework, The purpose of the overriding...

question

Hi, I am currently facing the situation that with an async message interaction we need to "prepare" a state with parameters before verifying. So e.g.: ```java @QuarkusTest class MyProviderTest {...

question

Add the ability to use the `application-pact.yaml` file for Spring or the `pactbroker-properties.yaml` file, or any other configurable or default file, with `MockMvcTestTarget` in JUnit 5 with Spring. The `application-pact.yaml`...

enhancement

Currently, JUnit 5 tests can only set one type of test target, ie. HTTP or messages. The test support needs to be updated to support multiple transports.

enhancement

I am using gradle with the following plugins section: ``` plugins { ... id "au.com.dius.pact" version "4.3.19" ``` and some test dependencies: ``` testImplementation group: 'au.com.dius.pact', name: 'consumer', version: '4.3.19'...

Pact JVM version (maven): * group-id = au.com.dius.pact.provider * artifact-id = junit5 * version-id = 4.3.11 In consumer (Pact JS) I add an expected result with `MatchersV3.includes` that has a...

I am trying to create a pact when provider is free to specify any `content-type` but have to provide one. ``` .consumer("wget") .hasPactWith("server") .given("file exist on server") .uponReceiving("get file") .method("GET")...

Hello There, We are using `pact-jvm-consumer-junit_2.11 v3.4.1` We observed that when we remove a pact(RequestResponsePact) from an existing pact test, the changes are not reflected in the generated pact JSON...

We're using the pact-jvm-provider-maven and we are using a "provider state change service" to perform the set-up and tear-down for each test. However, from time-to-time, the execution of the pact-jvm-provider-maven's...