File tree 2 files changed +13
-0
lines changed
lib/pact/provider/verification_results
spec/lib/pact/provider/verification_results
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ def tag_versions
81
81
provider_application_version = Pact . configuration . provider . application_version
82
82
83
83
Pact . configuration . provider . tags . each do | tag |
84
+ Pact . configuration . output_stream . puts "INFO: Tagging version #{ provider_application_version } of #{ provider_name } as #{ tag . inspect } "
84
85
tag_entity = tag_link . expand ( version : provider_application_version , tag : tag ) . put
85
86
unless tag_entity . success?
86
87
raise PublicationError . new ( "Error returned from tagging request #{ tag_entity . response . code } #{ tag_entity . response . body } " )
@@ -109,6 +110,10 @@ def publish_verification_results
109
110
def consumer_name
110
111
pact_source . pact_hash [ 'consumer' ] [ 'name' ]
111
112
end
113
+
114
+ def provider_name
115
+ pact_source . pact_hash [ 'provider' ] [ 'name' ]
116
+ end
112
117
end
113
118
end
114
119
end
Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ module VerificationResults
17
17
'consumer' => {
18
18
'name' => 'Foo'
19
19
} ,
20
+ 'provider' => {
21
+ 'name' => 'Bar'
22
+ } ,
20
23
'_links' => {
21
24
'pb:publish-verification-results' => {
22
25
'href' => publish_verification_url
@@ -121,6 +124,11 @@ module VerificationResults
121
124
expect ( WebMock ) . to have_requested ( :put , 'http://provider/version/1.2.3/tag/foo' ) . with ( headers : { 'Content-Type' => 'application/json' } )
122
125
end
123
126
127
+ it "logs the tagging to stdout" do
128
+ expect ( $stdout) . to receive ( :puts ) . with ( "INFO: Tagging version 1.2.3 of Bar as \" foo\" " )
129
+ subject
130
+ end
131
+
124
132
context "when there is no pb:publish-verification-results link" do
125
133
before do
126
134
pact_hash [ '_links' ] . delete ( 'pb:publish-verification-results' )
You can’t perform that action at this time.
0 commit comments