Skip to content

Commit 9ff59f4

Browse files
committed
fix: pact selection verification options logging
1 parent be6ab0f commit 9ff59f4

File tree

3 files changed

+51
-12
lines changed

3 files changed

+51
-12
lines changed

lib/pact/pact_broker/fetch_pact_uris_for_verification.rb

+3-12
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
require 'pact/errors'
55
require 'pact/pact_broker/fetch_pacts'
66
require 'pact/pact_broker/notices'
7+
require 'pact/pact_broker/pact_selection_description'
78

89
module Pact
910
module PactBroker
1011
class FetchPactURIsForVerification
12+
include PactSelectionDescription
1113
attr_reader :provider, :consumer_version_selectors, :provider_version_tags, :broker_base_url, :http_client_options, :http_client, :options
1214

1315
PACTS_FOR_VERIFICATION_RELATION = 'beta:provider-pacts-for-verification'.freeze
@@ -84,18 +86,7 @@ def symbolize_keys(hash)
8486
end
8587

8688
def log_message
87-
latest = consumer_version_selectors.any? ? "" : "latest "
88-
message = "INFO: Fetching pacts for #{provider} from #{broker_base_url} with the selection criteria: "
89-
if consumer_version_selectors.any?
90-
desc = consumer_version_selectors.collect do |selector|
91-
all_or_latest = selector[:all] ? "all for tag" : "latest for tag"
92-
# TODO support fallback
93-
name = selector[:fallback] ? "#{selector[:tag]} (or #{selector[:fallback]} if not found)" : selector[:tag]
94-
"#{all_or_latest} #{name}"
95-
end.join(", ")
96-
message << ": #{desc}"
97-
end
98-
Pact.configuration.output_stream.puts message
89+
Pact.configuration.output_stream.puts "INFO: #{pact_selection_description(provider, consumer_version_selectors, options, broker_base_url)}"
9990
end
10091
end
10192
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
module Pact
2+
module PactBroker
3+
module PactSelectionDescription
4+
def pact_selection_description(provider, consumer_version_selectors, options, broker_base_url)
5+
latest = consumer_version_selectors.any? ? "" : "latest "
6+
message = "Fetching pacts for #{provider} from #{broker_base_url} with the selection criteria: "
7+
if consumer_version_selectors.any?
8+
desc = consumer_version_selectors.collect do |selector|
9+
all_or_latest = !selector[:latest] ? "all for tag" : "latest for tag"
10+
# TODO support fallback
11+
fallback = selector[:fallback] || selector[:fallbackTag]
12+
name = fallback ? "#{selector[:tag]} (or #{fallback} if not found)" : selector[:tag]
13+
"#{all_or_latest} #{name}"
14+
end.join(", ")
15+
if options[:include_wip_pacts_since]
16+
desc = "#{desc}, work in progress pacts created after #{options[:include_wip_pacts_since]}"
17+
end
18+
message << "#{desc}"
19+
end
20+
message
21+
end
22+
end
23+
end
24+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
require 'pact/pact_broker/pact_selection_description'
2+
3+
module Pact
4+
module PactBroker
5+
describe PactSelectionDescription do
6+
include PactSelectionDescription
7+
8+
describe "#pact_selection_description" do
9+
let(:provider) { "Bar" }
10+
let(:consumer_version_selectors) { [{ tag: "cmaster", latest: true, fallbackTag: "master"}, { tag: "prod"}] }
11+
let(:options) do
12+
{
13+
include_wip_pacts_since: "2020-01-01"
14+
}
15+
end
16+
let(:broker_base_url) { "http://broker" }
17+
18+
subject { pact_selection_description(provider, consumer_version_selectors, options, broker_base_url).tap { |it| puts it } }
19+
20+
it { is_expected.to eq "Fetching pacts for Bar from http://broker with the selection criteria: latest for tag cmaster (or master if not found), all for tag prod, work in progress pacts created after 2020-01-01" }
21+
end
22+
end
23+
end
24+
end

0 commit comments

Comments
 (0)