Skip to content

Commit ce07d32

Browse files
committed
feat: allow SSL verification to be disabled in the HAL client by setting the environment variable PACT_DISABLE_SSL_VERIFICATION=true
1 parent 8a3a2f4 commit ce07d32

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

lib/pact/hal/http_client.rb

+12-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
require 'pact/hal/authorization_header_redactor'
33
require 'net/http'
44
require 'rack'
5+
require 'openssl'
56

67
module Pact
78
module Hal
@@ -48,10 +49,16 @@ def create_request uri, http_method, body = nil, headers = {}
4849
def perform_request request, uri
4950
response = Retry.until_true do
5051
http = Net::HTTP.new(uri.host, uri.port, :ENV)
51-
http.set_debug_output(output_stream) if verbose || ENV['VERBOSE'] == 'true'
52+
http.set_debug_output(output_stream) if verbose?
5253
http.use_ssl = (uri.scheme == 'https')
5354
http.ca_file = ENV['SSL_CERT_FILE'] if ENV['SSL_CERT_FILE'] && ENV['SSL_CERT_FILE'] != ''
5455
http.ca_path = ENV['SSL_CERT_DIR'] if ENV['SSL_CERT_DIR'] && ENV['SSL_CERT_DIR'] != ''
56+
if ENV['PACT_DISABLE_SSL_VERIFICATION'] == 'true' || ENV['PACT_BROKER_DISABLE_SSL_VERIFICATION'] == 'true'
57+
if verbose?
58+
Pact.configuration.error_stream.puts("Making request without SSL verification")
59+
end
60+
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
61+
end
5562
http.start do |http|
5663
http.request request
5764
end
@@ -63,6 +70,10 @@ def output_stream
6370
AuthorizationHeaderRedactor.new(Pact.configuration.output_stream)
6471
end
6572

73+
def verbose?
74+
verbose || ENV['VERBOSE'] == 'true'
75+
end
76+
6677
class Response < SimpleDelegator
6778
def body
6879
bod = raw_body

0 commit comments

Comments
 (0)