Skip to content

Commit f0f142e

Browse files
bethesqueYOU54F
authored andcommitted
feat: allow setting fail_if_no_pacts_found in honours_pacts_from_pact_broker
defaults to true, if not set (existing behaviour)
1 parent d512570 commit f0f142e

File tree

3 files changed

+27
-11
lines changed

3 files changed

+27
-11
lines changed

lib/pact/cli/run_pact_verification.rb

-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ def run_with_pact_uri_object
7272

7373
def run_with_configured_pacts_from_pact_helper
7474
pact_urls = Pact.provider_world.pact_urls
75-
raise "Please configure a pact to verify" if pact_urls.empty?
7675
Pact::Provider::PactSpecRunner.new(pact_urls, pact_spec_options).run
7776
end
7877

lib/pact/pact_broker/fetch_pact_uris_for_verification.rb

+19-8
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,17 @@ def self.call(provider, consumer_version_selectors, provider_version_branch, pro
3939
end
4040

4141
def call
42-
if index.can?(PACTS_FOR_VERIFICATION_RELATION) || index.can?(PACTS_FOR_VERIFICATION_RELATION_BETA)
43-
log_message
44-
pacts_for_verification
45-
else
46-
old_selectors = consumer_version_selectors.collect do | selector |
47-
{ name: selector[:tag], all: !selector[:latest], fallback: selector[:fallbackTag]}
42+
handling_no_pacts_found do
43+
if index.can?(PACTS_FOR_VERIFICATION_RELATION) || index.can?(PACTS_FOR_VERIFICATION_RELATION_BETA)
44+
log_message
45+
pacts_for_verification
46+
else
47+
old_selectors = consumer_version_selectors.collect do | selector |
48+
{ name: selector[:tag], all: !selector[:latest], fallback: selector[:fallbackTag]}
49+
end
50+
# Fall back to old method of fetching pacts
51+
FetchPacts.call(provider, old_selectors, broker_base_url, http_client_options)
4852
end
49-
# Fall back to old method of fetching pacts
50-
FetchPacts.call(provider, old_selectors, broker_base_url, http_client_options)
5153
end
5254
end
5355

@@ -96,6 +98,15 @@ def symbolize_keys(hash)
9698
def log_message
9799
Pact.configuration.output_stream.puts "INFO: #{pact_selection_description(provider, consumer_version_selectors, options, broker_base_url)}"
98100
end
101+
102+
def handling_no_pacts_found
103+
pacts_found = yield
104+
if pacts_found.empty? && options[:fail_if_no_pacts_found] != false
105+
raise "No pacts found to verify"
106+
else
107+
pacts_found
108+
end
109+
end
99110
end
100111
end
101112
end

lib/pact/provider/configuration/pact_verification_from_broker.rb

+8-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class PactVerificationFromBroker
1515
# in parent scope, it will clash with these ones,
1616
# so put an underscore in front of the name to be safer.
1717

18-
attr_accessor :_provider_name, :_pact_broker_base_url, :_consumer_version_tags, :_provider_version_branch, :_provider_version_tags, :_basic_auth_options, :_enable_pending, :_include_wip_pacts_since, :_verbose, :_consumer_version_selectors
18+
attr_accessor :_provider_name, :_pact_broker_base_url, :_consumer_version_tags, :_provider_version_branch, :_provider_version_tags, :_basic_auth_options, :_enable_pending, :_include_wip_pacts_since, :_verbose, :_consumer_version_selectors, :_fail_if_no_pacts_found
1919

2020
def initialize(provider_name, provider_version_branch, provider_version_tags)
2121
@_provider_name = provider_name
@@ -26,6 +26,7 @@ def initialize(provider_name, provider_version_branch, provider_version_tags)
2626
@_enable_pending = false
2727
@_include_wip_pacts_since = nil
2828
@_verbose = false
29+
@_fail_if_no_pacts_found = true # CLI defaults to false, unfortunately for consistency
2930
end
3031

3132
dsl do
@@ -46,6 +47,11 @@ def enable_pending enable_pending
4647
self._enable_pending = enable_pending
4748
end
4849

50+
# Underlying code defaults to true if not specified
51+
def fail_if_no_pacts_found fail_if_no_pacts_found
52+
self._fail_if_no_pacts_found = fail_if_no_pacts_found
53+
end
54+
4955
def include_wip_pacts_since since
5056
self._include_wip_pacts_since = if since.respond_to?(:xmlschema)
5157
since.xmlschema
@@ -74,7 +80,7 @@ def create_pact_verification
7480
_provider_version_tags,
7581
_pact_broker_base_url,
7682
_basic_auth_options.merge(verbose: _verbose),
77-
{ include_pending_status: _enable_pending, include_wip_pacts_since: _include_wip_pacts_since }
83+
{ include_pending_status: _enable_pending, include_wip_pacts_since: _include_wip_pacts_since, fail_if_no_pacts_found: _fail_if_no_pacts_found }
7884
)
7985

8086
Pact.provider_world.add_pact_uri_source fetch_pacts

0 commit comments

Comments
 (0)