You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: provider/pact-jvm-provider-gradle/README.md
+25-10
Original file line number
Diff line number
Diff line change
@@ -328,16 +328,17 @@ The following project properties can be specified with `-Pproperty=value` on the
328
328
329
329
|Property|Description|
330
330
|--------|-----------|
331
-
|pact.showStacktrace|This turns on stacktrace printing for each request. It can help with diagnosing network errors|
332
-
|pact.showFullDiff|This turns on displaying the full diff of the expected versus actual bodies|
333
-
|pact.filter.consumers|Comma seperated list of consumer names to verify|
334
-
|pact.filter.description|Only verify interactions whose description match the provided regular expression|
335
-
|pact.filter.providerState|Only verify interactions whose provider state match the provided regular expression. An empty string matches interactions that have no state|
336
-
|pact.verifier.publishResults|Publishing of verification results will be skipped unless this property is set to 'true'|
337
-
|pact.matching.wildcard|Enables matching of map values ignoring the keys when this property is set to 'true'|
338
-
|pact.verifier.disableUrlPathDecoding|Disables decoding of request paths|
339
-
|pact.pactbroker.httpclient.usePreemptiveAuthentication|Enables preemptive authentication with the pact broker when set to `true`|
340
-
|pact.provider.tag|Sets the provider tag to push before publishing verification results|
331
+
|`pact.showStacktrace`|This turns on stacktrace printing for each request. It can help with diagnosing network errors|
332
+
|`pact.showFullDiff`|This turns on displaying the full diff of the expected versus actual bodies|
333
+
|`pact.filter.consumers`|Comma seperated list of consumer names to verify|
334
+
|`pact.filter.description`|Only verify interactions whose description match the provided regular expression|
335
+
|`pact.filter.providerState`|Only verify interactions whose provider state match the provided regular expression. An empty string matches interactions that have no state|
336
+
|`pact.filter.pacturl`|This filter allows just the just the changed pact specified in a webhook to be run. It should be used in conjunction with `pact.filter.consumers`|
337
+
|`pact.verifier.publishResults`|Publishing of verification results will be skipped unless this property is set to 'true'|
338
+
|`pact.matching.wildcard`|Enables matching of map values ignoring the keys when this property is set to 'true'|
339
+
|`pact.verifier.disableUrlPathDecoding`|Disables decoding of request paths|
340
+
|`pact.pactbroker.httpclient.usePreemptiveAuthentication`|Enables preemptive authentication with the pact broker when set to `true`|
341
+
|`pact.provider.tag`|Sets the provider tag to push before publishing verification results|
341
342
342
343
## Provider States
343
344
@@ -574,6 +575,20 @@ pact {
574
575
575
576
Preemptive Authentication can be enabled by setting the `pact.pactbroker.httpclient.usePreemptiveAuthentication` property to `true`.
576
577
578
+
### Allowing just the changed pact specified in a webhook to be verified [4.0.6+]
579
+
580
+
When a consumer publishes a new version of a pact file, the Pact broker can fire off a webhook with the URL of the changed
581
+
pact file. To allow only the changed pact file to be verified, you can override the URL by using the `pact.filter.consumers`
582
+
and `pact.filter.pacturl` project properties.
583
+
584
+
For example, running:
585
+
586
+
```console
587
+
gradle pactVerify -Ppact.filter.consumers='Foo Web Client' -Ppact.filter.pacturl=https://test.pact.dius.com.au/pacts/provider/Activity%20Service/consumer/Foo%20Web%20Client/version/1.0.1
588
+
```
589
+
590
+
will only run the verification for Foo Web Client with the given pact file URL.
591
+
577
592
## Verifying pact files from a S3 bucket
578
593
579
594
Pact files stored in an S3 bucket can be verified by using an S3 URL to the pact file. I.e.,
Copy file name to clipboardexpand all lines: provider/pact-jvm-provider-maven/README.md
+24-9
Original file line number
Diff line number
Diff line change
@@ -247,15 +247,16 @@ The following plugin properties can be specified with `-Dproperty=value` on the
247
247
248
248
|Property|Description|
249
249
|--------|-----------|
250
-
|pact.showStacktrace|This turns on stacktrace printing for each request. It can help with diagnosing network errors|
251
-
|pact.showFullDiff|This turns on displaying the full diff of the expected versus actual bodies|
252
-
|pact.filter.consumers|Comma separated list of consumer names to verify|
253
-
|pact.filter.description|Only verify interactions whose description match the provided regular expression|
254
-
|pact.filter.providerState|Only verify interactions whose provider state match the provided regular expression. An empty string matches interactions that have no state|
255
-
|pact.verifier.publishResults|Publishing of verification results will be skipped unless this property is set to `true`[version 3.5.18+]|
256
-
|pact.matching.wildcard|Enables matching of map values ignoring the keys when this property is set to `true`|
257
-
|pact.verifier.disableUrlPathDecoding|Disables decoding of request paths|
258
-
|pact.pactbroker.httpclient.usePreemptiveAuthentication|Enables preemptive authentication with the pact broker when set to `true`|
250
+
|`pact.showStacktrace`|This turns on stacktrace printing for each request. It can help with diagnosing network errors|
251
+
|`pact.showFullDiff`|This turns on displaying the full diff of the expected versus actual bodies|
252
+
|`pact.filter.consumers`|Comma separated list of consumer names to verify|
253
+
|`pact.filter.description`|Only verify interactions whose description match the provided regular expression|
254
+
|`pact.filter.providerState`|Only verify interactions whose provider state match the provided regular expression. An empty string matches interactions that have no state|
255
+
|`pact.filter.pacturl`|This filter allows just the just the changed pact specified in a webhook to be run. It should be used in conjunction with `pact.filter.consumers`|
256
+
|`pact.verifier.publishResults`|Publishing of verification results will be skipped unless this property is set to `true`[version 3.5.18+]|
257
+
|`pact.matching.wildcard`|Enables matching of map values ignoring the keys when this property is set to `true`|
258
+
|`pact.verifier.disableUrlPathDecoding`|Disables decoding of request paths|
259
+
|`pact.pactbroker.httpclient.usePreemptiveAuthentication`|Enables preemptive authentication with the pact broker when set to `true`|
259
260
260
261
Example in the configuration section:
261
262
@@ -423,6 +424,20 @@ Here is how you configure the plugin to use bearer token authentication for veri
423
424
Preemptive Authentication can be enabled by setting the `pact.pactbroker.httpclient.usePreemptiveAuthentication` Java
424
425
system property to `true`.
425
426
427
+
### Allowing just the changed pact specified in a webhook to be verified [4.0.6+]
428
+
429
+
When a consumer publishes a new version of a pact file, the Pact broker can fire off a webhook with the URL of the changed
430
+
pact file. To allow only the changed pact file to be verified, you can override the URL by using the `pact.filter.consumers`
431
+
and `pact.filter.pacturl` Java system properties.
432
+
433
+
For example, running:
434
+
435
+
```console
436
+
mvn pact:verify -Dpact.filter.consumers='Foo Web Client' -Dpact.filter.pacturl=https://test.pact.dius.com.au/pacts/provider/Activity%20Service/consumer/Foo%20Web%20Client/version/1.0.1
437
+
```
438
+
439
+
will only run the verification for Foo Web Client with the given pact file URL.
440
+
426
441
#### Using the Maven servers configuration
427
442
428
443
You can use the servers setup in the Maven settings. To do this, setup a server as per the
0 commit comments