Skip to content

Commit 16866f4

Browse files
committed
feat: add support for the enable_pending flag
1 parent c60828b commit 16866f4

File tree

4 files changed

+27
-8
lines changed

4 files changed

+27
-8
lines changed

lib/pact/pact_broker/fetch_pact_uris_for_verification.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class FetchPactURIsForVerification
2222
def initialize(provider, consumer_version_selectors, provider_version_tags, broker_base_url, http_client_options, options = {})
2323
@provider = provider
2424
@consumer_version_selectors = consumer_version_selectors || []
25-
@provider_version_tags = provider_version_tags || []
25+
@provider_version_tags = [*provider_version_tags]
2626
@http_client_options = http_client_options
2727
@broker_base_url = broker_base_url
2828
@http_client = Pact::Hal::HttpClient.new(http_client_options)

lib/pact/provider/configuration/pact_verification_from_broker.rb

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

17-
attr_accessor :_provider_name, :_pact_broker_base_url, :_consumer_version_tags, :_provider_version_tags, :_basic_auth_options, :_verbose
17+
attr_accessor :_provider_name, :_pact_broker_base_url, :_consumer_version_tags, :_provider_version_tags, :_basic_auth_options, :_enable_pending, :_verbose
1818

1919
def initialize(provider_name, provider_version_tags)
2020
@_provider_name = provider_name
2121
@_provider_version_tags = provider_version_tags
2222
@_consumer_version_tags = []
23+
@_enable_pending = false
2324
@_verbose = false
2425
end
2526

@@ -33,6 +34,10 @@ def consumer_version_tags consumer_version_tags
3334
self._consumer_version_tags = *consumer_version_tags
3435
end
3536

37+
def enable_pending enable_pending
38+
self._enable_pending = enable_pending
39+
end
40+
3641
def verbose verbose
3742
self._verbose = verbose
3843
end
@@ -51,7 +56,8 @@ def create_pact_verification
5156
consumer_version_selectors,
5257
_provider_version_tags,
5358
_pact_broker_base_url,
54-
_basic_auth_options.merge(verbose: _verbose)
59+
_basic_auth_options.merge(verbose: _verbose),
60+
{ include_pending_status: _enable_pending }
5561
)
5662

5763
Pact.provider_world.add_pact_uri_source fetch_pacts

spec/lib/pact/pact_broker/fetch_pact_uris_for_verification_spec.rb

+11
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,17 @@ module PactBroker
3535
end
3636
end
3737

38+
context "when a single tag is provided instead of an array" do
39+
40+
let(:provider_version_tags) { "pmaster" }
41+
42+
subject { FetchPactURIsForVerification.new(provider, consumer_version_selectors, provider_version_tags, broker_base_url, http_client_options)}
43+
44+
it "wraps an array around it" do
45+
expect(subject.provider_version_tags).to eq ["pmaster"]
46+
end
47+
end
48+
3849
context "when the beta:provider-pacts-for-verification relation does not exist" do
3950
before do
4051
allow(FetchPacts).to receive(:call)

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

+7-5
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,18 @@ module Configuration
2626
PactVerificationFromBroker.build(provider_name, provider_version_tags) do
2727
pact_broker_base_url base_url, basic_auth_options
2828
consumer_version_tags tags
29+
enable_pending true
2930
verbose true
3031
end
3132
end
3233

3334
let(:fetch_pacts) { double('FetchPacts') }
34-
let(:options) { basic_auth_options.merge(verbose: true) }
35+
let(:basic_auth_opts) { basic_auth_options.merge(verbose: true) }
36+
let(:options) { { include_pending_status: true }}
3537
let(:consumer_version_selectors) { [ { tag: 'master', latest: true }] }
3638

3739
it "creates a instance of Pact::PactBroker::FetchPactURIsForVerification" do
38-
expect(Pact::PactBroker::FetchPactURIsForVerification).to receive(:new).with(provider_name, consumer_version_selectors, provider_version_tags, base_url, options)
40+
expect(Pact::PactBroker::FetchPactURIsForVerification).to receive(:new).with(provider_name, consumer_version_selectors, provider_version_tags, base_url, basic_auth_opts, options)
3941
subject
4042
end
4143

@@ -70,7 +72,7 @@ module Configuration
7072
let(:fetch_pacts) { double('FetchPacts') }
7173

7274
it "coerces the value into an array" do
73-
expect(Pact::PactBroker::FetchPactURIsForVerification).to receive(:new).with(anything, [{ tag: "master", latest: true}], anything, anything, anything)
75+
expect(Pact::PactBroker::FetchPactURIsForVerification).to receive(:new).with(anything, [{ tag: "master", latest: true}], anything, anything, anything, anything)
7476
subject
7577
end
7678
end
@@ -85,7 +87,7 @@ module Configuration
8587
let(:fetch_pacts) { double('FetchPacts') }
8688

8789
it "creates an instance of FetchPacts with an emtpy array for the consumer_version_tags" do
88-
expect(Pact::PactBroker::FetchPactURIsForVerification).to receive(:new).with(anything, [], anything, anything, anything)
90+
expect(Pact::PactBroker::FetchPactURIsForVerification).to receive(:new).with(anything, [], anything, anything, anything, anything)
8991
subject
9092
end
9193
end
@@ -100,7 +102,7 @@ module Configuration
100102
let(:fetch_pacts) { double('FetchPacts') }
101103

102104
it "creates an instance of FetchPactURIsForVerification with verbose: false" do
103-
expect(Pact::PactBroker::FetchPactURIsForVerification).to receive(:new).with(anything, anything, anything, anything, hash_including(verbose: false))
105+
expect(Pact::PactBroker::FetchPactURIsForVerification).to receive(:new).with(anything, anything, anything, anything, hash_including(verbose: false), anything)
104106
subject
105107
end
106108
end

0 commit comments

Comments
 (0)