Skip to content

Commit 8e8bb22

Browse files
committed
feat: support description of matching_branch and matching_tag consumer version selectors
1 parent 7ea17af commit 8e8bb22

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

lib/pact/pact_broker/pact_selection_description.rb

+6
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ def pact_selection_description(provider, consumer_version_selectors, options, br
3939
elsif selector[:environment]
4040
desc = "currently in #{selector[:environment]}"
4141
desc = "#{selector[:consumer]} #{desc}" if selector[:consumer]
42+
elsif selector[:matchingBranch]
43+
desc = "matching current branch"
44+
desc = "#{desc} for #{selector[:consumer]}" if selector[:consumer]
45+
elsif selector[:matchingTag]
46+
desc = "matching tag"
47+
desc = "#{desc} for #{selector[:consumer]}" if selector[:consumer]
4248
else
4349
desc = selector.to_s
4450
end

spec/lib/pact/pact_broker/pact_selection_description_spec.rb

+12
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,18 @@ module PactBroker
6767
it { is_expected.to include "in production" }
6868
end
6969

70+
describe "matching branch" do
71+
let(:consumer_version_selectors) { [{ matchingBranch: true, consumer: "Foo" }] }
72+
73+
it { is_expected.to include "matching current branch for Foo" }
74+
end
75+
76+
describe "matching tag" do
77+
let(:consumer_version_selectors) { [{ matchingTag: true, consumer: "Foo" }] }
78+
79+
it { is_expected.to include "matching tag for Foo" }
80+
end
81+
7082
describe "unknown" do
7183
let(:consumer_version_selectors) { [{ branchPattern: "*foo" }] }
7284

0 commit comments

Comments
 (0)