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

I have use-case where I'm expecting PactDslJsonRootValue to contain one value as string and another one as an integer. Here's the example: { "someArray": [ "some value that is a...

I am working on Pact records creation for Batch requests, an request example as below: - **Mehod**: 'POST' - **Path**: 'http://localhost/odata/$batch' - **Headers** = ```'[Content-type:multipart/mixed; boundary=batch_a86455dd-7fb9-4230-ab05-d848e5261d53, correlationId:ce7186da-a650-4333-92c8-978aa4bd460e]'``` - **Body** =...

Hi, this is a question. I wanted to introduce some additional testing to the pact after the response has been retrieved. As far as I understand, the way to do...

My problem is I have a field which is a list (an array) of maps. Each map can have elements of different types (strings or sub-maps), eg. ``` "validatedAnswers": [...

Modern idiomatic Spring code heavily uses and promotes the use of meta-annotations and composed annotations. See e.g. [Spring Documentation](http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#beans-meta-annotations) and Spring Boot's testing meta-annotations like [@WebMvcTest](https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/test/autoconfigure/web/servlet/WebMvcTest.html) I would like to...

Currently `pact-jvm-provider-maven` provides publishing contract files to pact broker. Along with this, publishing/verifying to/from AWS S3 will be great. Deliverables: 1. Publishing files to S3 bucket (auth handled) 2. Verifying...

hi, I am quite fresh to the library and I must admit that being forced to use `@RunWith(PactRunner.class)` in order to use pact is a bit ugly and too strong!...

I am trying to create a contract for a response which contains a number value attribute. Something like the following: ``` "parent_attr": { "child_attr": 11 } ``` The used matchers...

Enables matching of map key ignoring the value ,please help me.I have found long time

Hello, I have read some best practices on Pact, saying that it is more efficient to define a contract using matchers (pattern, type ...) rather than static data. Hopefully with...