Skip to content

Commit 0145d2d

Browse files
committed
fix: handle case in no_pacts_found - undefined method empty? for nil
1 parent f0f142e commit 0145d2d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

lib/pact/pact_broker/fetch_pact_uris_for_verification.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def log_message
101101

102102
def handling_no_pacts_found
103103
pacts_found = yield
104-
if pacts_found.empty? && options[:fail_if_no_pacts_found] != false
104+
if pacts_found.blank? && options[:fail_if_no_pacts_found] != false
105105
raise "No pacts found to verify"
106106
else
107107
pacts_found

spec/lib/pact/pact_broker/fetch_pact_uris_for_verification_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module PactBroker
1414
let(:consumer_version_selectors) { [{ tag: "cmaster", latest: true, fallbackTag: 'blah' }] }
1515
let(:provider_version_branch) { "pbranch" }
1616
let(:provider_version_tags) { ["pmaster"] }
17-
17+
1818
subject { FetchPactURIsForVerification.call(provider, consumer_version_selectors, provider_version_branch, provider_version_tags, broker_base_url, http_client_options)}
1919

2020
context "when there is an error retrieving the index resource" do
@@ -62,7 +62,7 @@ module PactBroker
6262

6363
it "calls the old fetch pacts code" do
6464
expect(FetchPacts).to receive(:call).with(provider, [{ name: "cmaster", all: false, fallback: "blah" }], broker_base_url, http_client_options)
65-
subject
65+
expect { subject }.to raise_error( "No pacts found to verify" )
6666
end
6767
end
6868
end

spec/lib/pact/provider/configuration/pact_verification_from_broker_spec.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module Configuration
3737

3838
let(:fetch_pacts) { double('FetchPacts') }
3939
let(:basic_auth_opts) { basic_auth_options.merge(verbose: true) }
40-
let(:options) { { include_pending_status: true, include_wip_pacts_since: "2020-01-01" }}
40+
let(:options) { { fail_if_no_pacts_found: true, include_pending_status: true, include_wip_pacts_since: "2020-01-01" }}
4141
let(:consumer_version_selectors) { [ { tag: 'master', latest: true }] }
4242

4343
it "creates a instance of Pact::PactBroker::FetchPactURIsForVerification" do
@@ -70,6 +70,7 @@ module Configuration
7070
anything,
7171
anything,
7272
{
73+
fail_if_no_pacts_found: true,
7374
include_pending_status: true,
7475
include_wip_pacts_since: since.xmlschema
7576
}

0 commit comments

Comments
 (0)