Skip to content

Commit d21e478

Browse files
author
Ronald Holshausen
committedFeb 8, 2020
feat: Update Gradle and Maven readmes #998
1 parent a4a12c1 commit d21e478

File tree

2 files changed

+49
-19
lines changed

2 files changed

+49
-19
lines changed
 

‎provider/pact-jvm-provider-gradle/README.md

+25-10
Original file line numberDiff line numberDiff line change
@@ -328,16 +328,17 @@ The following project properties can be specified with `-Pproperty=value` on the
328328

329329
|Property|Description|
330330
|--------|-----------|
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|
341342

342343
## Provider States
343344

@@ -574,6 +575,20 @@ pact {
574575

575576
Preemptive Authentication can be enabled by setting the `pact.pactbroker.httpclient.usePreemptiveAuthentication` property to `true`.
576577

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+
577592
## Verifying pact files from a S3 bucket
578593

579594
Pact files stored in an S3 bucket can be verified by using an S3 URL to the pact file. I.e.,

‎provider/pact-jvm-provider-maven/README.md

+24-9
Original file line numberDiff line numberDiff line change
@@ -247,15 +247,16 @@ The following plugin properties can be specified with `-Dproperty=value` on the
247247

248248
|Property|Description|
249249
|--------|-----------|
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`|
259260

260261
Example in the configuration section:
261262

@@ -423,6 +424,20 @@ Here is how you configure the plugin to use bearer token authentication for veri
423424
Preemptive Authentication can be enabled by setting the `pact.pactbroker.httpclient.usePreemptiveAuthentication` Java
424425
system property to `true`.
425426

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+
426441
#### Using the Maven servers configuration
427442

428443
You can use the servers setup in the Maven settings. To do this, setup a server as per the

0 commit comments

Comments
 (0)
Please sign in to comment.