Skip to content

Commit 5127036

Browse files
authored
fix: add consumer name to the selection description (#229)
* fix(pact_selection_description): support consumer name selection When consumer_version_selection specifies consumer name, the name is added to the description too. * fix(pact_selection_description) remove unused variable
1 parent 37d1029 commit 5127036

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

lib/pact/pact_broker/pact_selection_description.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ module Pact
22
module PactBroker
33
module PactSelectionDescription
44
def pact_selection_description(provider, consumer_version_selectors, options, broker_base_url)
5-
latest = consumer_version_selectors.any? ? "" : "latest "
65
message = "Fetching pacts for #{provider} from #{broker_base_url} with the selection criteria: "
76
if consumer_version_selectors.any?
87
desc = consumer_version_selectors.collect do |selector|
98
all_or_latest = !selector[:latest] ? "all for tag" : "latest for tag"
9+
consumer = selector[:consumer] ? "of consumer #{selector[:consumer]}" : nil
1010
fallback = selector[:fallback] || selector[:fallbackTag]
1111
name = fallback ? "#{selector[:tag]} (or #{fallback} if not found)" : selector[:tag]
12-
"#{all_or_latest} #{name}"
12+
[all_or_latest, name, consumer].compact.join(" ")
1313
end.join(", ")
1414
if options[:include_wip_pacts_since]
1515
desc = "#{desc}, work in progress pacts created after #{options[:include_wip_pacts_since]}"

spec/lib/pact/pact_broker/pact_selection_description_spec.rb

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module PactBroker
77

88
describe "#pact_selection_description" do
99
let(:provider) { "Bar" }
10-
let(:consumer_version_selectors) { [{ tag: "cmaster", latest: true, fallbackTag: "master"}, { tag: "prod"}] }
10+
let(:consumer_version_selectors) { [{ tag: "cmaster", latest: true, fallbackTag: "master" }, { tag: "prod" }] }
1111
let(:options) do
1212
{
1313
include_wip_pacts_since: "2020-01-01"
@@ -18,6 +18,12 @@ module PactBroker
1818
subject { pact_selection_description(provider, consumer_version_selectors, options, broker_base_url) }
1919

2020
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+
22+
describe "when consumer selector specifies a consumer name" do
23+
let(:consumer_version_selectors) { [{ tag: "cmaster", latest: true, consumer: "Foo" }] }
24+
25+
it { is_expected.to eq "Fetching pacts for Bar from http://broker with the selection criteria: latest for tag cmaster of consumer Foo, work in progress pacts created after 2020-01-01" }
26+
end
2127
end
2228
end
2329
end

0 commit comments

Comments
 (0)