Skip to content

Commit ed9468a

Browse files
committed
fix(verifications): do not print warning about missing pb:tag-version link when there are no tags configured
1 parent 7e078bd commit ed9468a

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

lib/pact/provider/verification_results/publish.rb

+8-5
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@ def initialize pact_source, verification_result
2323

2424
def call
2525
if Pact.configuration.provider.publish_verification_results?
26-
if tag_url('')
27-
tag
28-
else
29-
Pact.configuration.error_stream.puts "WARN: Cannot tag provider version as there is no link named pb:tag-version in the pact JSON."
26+
if Pact.configuration.provider.tags.any?
27+
if tag_url('')
28+
tag_versions
29+
else
30+
Pact.configuration.error_stream.puts "WARN: Cannot tag provider version as there is no link named pb:tag-version in the pact JSON."
31+
end
3032
end
33+
3134
if publication_url
3235
publish
3336
else
@@ -47,7 +50,7 @@ def tag_url tag
4750
href ? href.gsub('{tag}', tag) : nil
4851
end
4952

50-
def tag
53+
def tag_versions
5154
Pact.configuration.provider.tags.each do | tag |
5255
uri = URI(tag_url(tag))
5356
request = build_request('Put', uri, nil, "Tagging provider version at")

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

+12
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,18 @@ module VerificationResults
8585
end
8686
end
8787

88+
context "when there are no tags specified and there is no pb:tag-version link" do
89+
before do
90+
pact_hash['_links'].delete('pb:tag-version')
91+
end
92+
let(:tags) { [] }
93+
94+
it "does not print a warning" do
95+
expect($stderr).to_not receive(:puts).with /WARN: Cannot tag provider version/
96+
subject
97+
end
98+
end
99+
88100
context "when basic auth is configured on the pact URL" do
89101
let(:basic_auth) { true }
90102
it "sets the username and password for the pubication URL" do

0 commit comments

Comments
 (0)