Skip to content

Commit 06fa615

Browse files
committed
feat: all logging to indicate which pacts are being fetched from the broker
1 parent 436f3f2 commit 06fa615

File tree

4 files changed

+95
-22
lines changed

4 files changed

+95
-22
lines changed

lib/pact/pact_broker/fetch_pacts.rb

+30-14
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
module Pact
66
module PactBroker
77
class FetchPacts
8-
attr_reader :provider, :tags, :broker_base_url, :basic_auth_options, :http_client, :index_entity
8+
attr_reader :provider, :tags, :broker_base_url, :http_client_options, :http_client, :index_entity
99

1010
ALL_PROVIDER_TAG_RELATION = 'pb:provider-pacts-with-tag'.freeze
1111
LATEST_PROVIDER_TAG_RELATION = 'pb:latest-provider-pacts-with-tag'.freeze
1212
LATEST_PROVIDER_RELATION = 'pb:latest-provider-pacts'.freeze
1313
PACTS = 'pacts'.freeze
1414
HREF = 'href'.freeze
1515

16-
def initialize(provider, tags, broker_base_url, basic_auth_options)
16+
def initialize(provider, tags, broker_base_url, http_client_options)
1717
@provider = provider
1818
@tags = (tags || []).collect do |tag|
1919
if tag.is_a?(String)
@@ -22,27 +22,31 @@ def initialize(provider, tags, broker_base_url, basic_auth_options)
2222
tag
2323
end
2424
end
25-
@basic_auth_options = basic_auth_options
25+
@http_client_options = http_client_options
2626
@broker_base_url = broker_base_url
27-
@http_client = Pact::Hal::HttpClient.new(basic_auth_options)
27+
@http_client = Pact::Hal::HttpClient.new(http_client_options)
2828
end
2929

30-
def self.call(provider, tags, broker_base_url, basic_auth_options)
31-
new(provider, tags, broker_base_url, basic_auth_options).call
30+
def self.call(provider, tags, broker_base_url, http_client_options)
31+
new(provider, tags, broker_base_url, http_client_options).call
3232
end
3333

3434
def call
35-
get_index
36-
if tag_exist
37-
get_tagged_pacts_for_provider
35+
log_message
36+
if get_index.success?
37+
if any_tags?
38+
get_tagged_pacts_for_provider
39+
else
40+
get_latest_pacts_for_provider
41+
end
3842
else
39-
get_latest_pacts_for_provider
43+
raise Pact::Error.new("Error retrieving #{broker_base_url} status=#{index_entity.response.code} #{index_entity.response.raw_body}")
4044
end
4145
end
4246

4347
private
4448

45-
def tag_exist
49+
def any_tags?
4650
tags && tags.any?
4751
end
4852

@@ -66,8 +70,7 @@ def get_link(tag)
6670
end
6771

6872
def get_index
69-
response = http_client.get(broker_base_url)
70-
@index_entity = Pact::Hal::Entity.new(response.body, http_client)
73+
@index_entity = Pact::Hal::Link.new({ "href" => broker_base_url }, http_client).get
7174
end
7275

7376
def get_latest_pacts_for_provider
@@ -77,8 +80,21 @@ def get_latest_pacts_for_provider
7780

7881
def get_pact_urls(link_by_provider)
7982
link_by_provider.fetch(PACTS).collect do |pact|
80-
Pact::Provider::PactURI.new(pact[HREF], basic_auth_options)
83+
Pact::Provider::PactURI.new(pact[HREF], http_client_options)
84+
end
85+
end
86+
87+
def log_message
88+
message = "INFO: Fetching pacts for #{provider} from #{broker_base_url}"
89+
if tags.any?
90+
desc = tags.collect do |tag|
91+
all_or_latest = tag[:all] ? "all" : "latest"
92+
name = tag[:fallback] ? "#{tag[:name]} (or #{tag[:fallback]} if not found)" : tag[:name]
93+
"#{all_or_latest} #{name}"
94+
end.join(", ")
95+
message << " for tags: #{desc}"
8196
end
97+
Pact.configuration.output_stream.puts message
8298
end
8399
end
84100
end

spec/lib/pact/hal/link_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module Hal
1010
end
1111

1212
let(:response) do
13-
instance_double('Pact::Hal::HttpClient::Response', success?: success, body: response_body)
13+
instance_double('Pact::Hal::HttpClient::Response', success?: success, body: response_body, raw_body: response_body.to_json)
1414
end
1515

1616
let(:success) { true }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
require 'pact/pact_broker/fetch_pacts'
2+
3+
module Pact
4+
module PactBroker
5+
describe FetchPacts do
6+
7+
describe "call" do
8+
let(:provider) { "Foo"}
9+
let(:tags) { ["master", "prod"] }
10+
let(:broker_base_url) { "http://broker.org" }
11+
let(:http_client_options) { {} }
12+
13+
before do
14+
stub_request(:get, "http://broker.org/").to_return(status: 500, body: "foo", headers: {})
15+
end
16+
17+
subject { FetchPacts.call(provider, tags, broker_base_url, http_client_options)}
18+
19+
let(:subject_with_rescue) do
20+
begin
21+
subject
22+
rescue Pact::Error
23+
# can't be bothered stubbing out everything to make the rest of the code execute nicely
24+
# when all we care about is the message
25+
end
26+
end
27+
28+
context "when there is an error retrieving the index resource" do
29+
it "raises a Pact::Error" do
30+
expect { subject }.to raise_error Pact::Error, /500.*foo/
31+
end
32+
end
33+
34+
context "for the latest tag" do
35+
it "logs a message" do
36+
expect(Pact.configuration.output_stream).to receive(:puts).with("INFO: Fetching pacts for Foo from http://broker.org for tags: latest master, latest prod")
37+
subject_with_rescue
38+
end
39+
end
40+
41+
context "with a fallback tag" do
42+
let(:tags) { [{ name: "branch", fallback: "master" }] }
43+
44+
it "logs a message" do
45+
expect(Pact.configuration.output_stream).to receive(:puts).with("INFO: Fetching pacts for Foo from http://broker.org for tags: latest branch (or master if not found)")
46+
subject_with_rescue
47+
end
48+
end
49+
50+
context "when all: true" do
51+
let(:tags) { [{ name: "prod", all: true }] }
52+
53+
it "logs a message" do
54+
expect(Pact.configuration.output_stream).to receive(:puts).with("INFO: Fetching pacts for Foo from http://broker.org for tags: all prod")
55+
subject_with_rescue
56+
end
57+
end
58+
end
59+
end
60+
end
61+
end

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

+3-7
Original file line numberDiff line numberDiff line change
@@ -156,18 +156,14 @@ module Configuration
156156
subject do
157157
ServiceProviderDSL.build 'some-provider' do
158158
app {}
159-
honours_pacts_from_pact_broker options do
159+
honours_pacts_from_pact_broker do
160160
end
161161
end
162162
end
163163

164-
it 'adds a verification to the Pact.provider_world' do
165-
allow(Pact::PactBroker::FetchPacts).to receive(:call).and_return(['pact-urls'])
166-
164+
it 'builds a PactVerificationFromBroker' do
165+
expect(PactVerificationFromBroker).to receive(:build).with('some-provider')
167166
subject
168-
169-
expect(Pact.provider_world.pact_verifications.first)
170-
.to eq(Pact::Provider::PactVerification.new(nil, 'pact-urls', nil))
171167
end
172168
end
173169
end

0 commit comments

Comments
 (0)