1
1
require 'json'
2
2
require 'pact/errors'
3
3
4
+ # TODO move this to the pact broker client
5
+ # TODO retries
6
+
4
7
module Pact
5
8
module Provider
6
9
module VerificationResults
@@ -20,6 +23,11 @@ def initialize pact_source, verification_result
20
23
21
24
def call
22
25
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."
30
+ end
23
31
if publication_url
24
32
publish
25
33
else
@@ -34,11 +42,35 @@ def publication_url
34
42
@publication_url ||= pact_source . pact_hash . fetch ( '_links' , { } ) . fetch ( 'pb:publish-verification-results' , { } ) [ 'href' ]
35
43
end
36
44
45
+ def tag_url tag
46
+ href = pact_source . pact_hash . dig ( '_links' , 'pb:tag-version' , 'href' )
47
+ href ? href . gsub ( '{tag}' , tag ) : nil
48
+ end
49
+
50
+ def tag
51
+ Pact . configuration . provider . tags . each do | tag |
52
+ uri = URI ( tag_url ( tag ) )
53
+ request = build_request ( 'Put' , uri , nil , "Tagging provider version at" )
54
+ response = nil
55
+ begin
56
+ options = { :use_ssl => uri . scheme == 'https' }
57
+ response = Net ::HTTP . start ( uri . host , uri . port , options ) do |http |
58
+ http . request request
59
+ end
60
+ rescue StandardError => e
61
+ error_message = "Failed to tag provider version due to: #{ e . class } #{ e . message } "
62
+ raise PublicationError . new ( error_message )
63
+ end
64
+
65
+ unless response . code . start_with? ( "2" )
66
+ raise PublicationError . new ( "Error returned from tagging request #{ response . code } #{ response . body } " )
67
+ end
68
+ end
69
+ end
70
+
37
71
def publish
38
- #TODO https
39
- #TODO username/password
40
72
uri = URI ( publication_url )
41
- request = build_request ( uri )
73
+ request = build_request ( 'Post' , uri , verification_result . to_json , "Publishing verification result #{ verification_result . to_json } to" )
42
74
response = nil
43
75
begin
44
76
options = { :use_ssl => uri . scheme == 'https' }
@@ -55,16 +87,16 @@ def publish
55
87
end
56
88
end
57
89
58
- def build_request uri
59
- request = Net ::HTTP :: Post . new ( uri . path )
90
+ def build_request meth , uri , body , action
91
+ request = Net ::HTTP . const_get ( meth ) . new ( uri . path )
60
92
request [ 'Content-Type' ] = "application/json"
61
- request . body = verification_result . to_json
93
+ request . body = body if body
62
94
debug_uri = uri
63
95
if pact_source . uri . basic_auth?
64
96
request . basic_auth pact_source . uri . username , pact_source . uri . password
65
97
debug_uri = URI ( uri . to_s ) . tap { |x | x . userinfo = "#{ pact_source . uri . username } :*****" }
66
98
end
67
- Pact . configuration . output_stream . puts "INFO: Publishing verification result #{ verification_result . to_json } to #{ debug_uri } "
99
+ Pact . configuration . output_stream . puts "INFO: #{ action } #{ debug_uri } "
68
100
request
69
101
end
70
102
0 commit comments