Skip to content

Commit 436f3f2

Browse files
committed
feat: allow verbose http logging to be turned on when fetching pacts URLs from the broker
1 parent 7e82fd0 commit 436f3f2

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

lib/pact/provider/configuration/pact_verification_from_broker.rb

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

16-
attr_accessor :_provider_name, :_pact_broker_base_url, :_consumer_version_tags, :_basic_auth_options
16+
attr_accessor :_provider_name, :_pact_broker_base_url, :_consumer_version_tags, :_basic_auth_options, :_verbose
1717

1818
def initialize(provider_name)
1919
@_provider_name = provider_name
2020
@_consumer_version_tags = []
21+
@_verbose = false
2122
end
2223

2324
dsl do
@@ -29,6 +30,10 @@ def pact_broker_base_url pact_broker_base_url, basic_auth_options = {}
2930
def consumer_version_tags consumer_version_tags
3031
self._consumer_version_tags = *consumer_version_tags
3132
end
33+
34+
def verbose verbose
35+
self._verbose = verbose
36+
end
3237
end
3338

3439
def finalize
@@ -39,7 +44,7 @@ def finalize
3944
private
4045

4146
def create_pact_verification
42-
fetch_pacts = Pact::PactBroker::FetchPacts.new(_provider_name, _consumer_version_tags, _pact_broker_base_url, _basic_auth_options)
47+
fetch_pacts = Pact::PactBroker::FetchPacts.new(_provider_name, _consumer_version_tags, _pact_broker_base_url, _basic_auth_options.merge(verbose: _verbose))
4348
Pact.provider_world.add_pact_uri_source fetch_pacts
4449
end
4550

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

+18-1
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,15 @@ module Configuration
2525
PactVerificationFromBroker.build(provider_name) do
2626
pact_broker_base_url base_url, basic_auth_options
2727
consumer_version_tags tags
28+
verbose true
2829
end
2930
end
3031

3132
let(:fetch_pacts) { double('FetchPacts') }
33+
let(:options) { basic_auth_options.merge(verbose: true) }
3234

3335
it "creates a instance of Pact::PactBroker::FetchPacts" do
34-
expect(Pact::PactBroker::FetchPacts).to receive(:new).with(provider_name, tags, base_url, basic_auth_options)
36+
expect(Pact::PactBroker::FetchPacts).to receive(:new).with(provider_name, tags, base_url, options)
3537
subject
3638
end
3739

@@ -85,6 +87,21 @@ module Configuration
8587
subject
8688
end
8789
end
90+
91+
context "when no verbose flag is provided" do
92+
subject do
93+
PactVerificationFromBroker.build(provider_name) do
94+
pact_broker_base_url base_url
95+
end
96+
end
97+
98+
let(:fetch_pacts) { double('FetchPacts') }
99+
100+
it "creates an instance of FetchPacts with verbose: false" do
101+
expect(Pact::PactBroker::FetchPacts).to receive(:new).with(anything, anything, anything, hash_including(verbose: false))
102+
subject
103+
end
104+
end
88105
end
89106
end
90107
end

spec/lib/pact/provider/verification_results/publish_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ module VerificationResults
170170

171171
context "when the connection can't be made" do
172172
it "raises a PublicationError error" do
173-
allow(Net::HTTP).to receive(:start).and_raise(SocketError)
173+
allow(Net::HTTP).to receive(:new).and_raise(SocketError)
174174
expect{ subject }.to raise_error(PublicationError, /Failed to publish verification/)
175175
end
176176
end

0 commit comments

Comments
 (0)