1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00

Formatting cleanup.

This commit is contained in:
John Nunemaker 2012-04-15 22:51:39 -04:00 committed by Isaac Sanders
parent ef6859e8b0
commit 9d7667ff3e

View file

@ -3,16 +3,23 @@ require 'pathname'
module HTTParty
module SSLTestHelper
def ssl_verify_test(mode, ca_basename, server_cert_filename)
path = Pathname(__FILE__).join('..', '..', 'fixtures', 'ssl', 'generated').expand_path
options = {
:format => :json,
:timeout => 30,
}
test_server = nil
begin
test_server = SSLTestServer.new(
:rsa_key => File.read(File.expand_path("../../fixtures/ssl/generated/server.key", __FILE__)),
:cert => File.read(File.expand_path("../../fixtures/ssl/generated/#{server_cert_filename}", __FILE__)))
if mode
ca_path = path.join(ca_basename)
raise ArgumentError.new("#{ca_path} does not exist") unless ca_path.exist?
options[mode] = ca_path.to_s
test_server.start
if mode
ca_path = File.expand_path("../../fixtures/ssl/generated/#{ca_basename}", __FILE__)
raise ArgumentError.new("#{ca_path} does not exist") unless File.exist?(ca_path)
return HTTParty.get("https://localhost:#{test_server.port}/", :format => :json, :timeout => 30, mode => ca_path)
else
return HTTParty.get("https://localhost:#{test_server.port}/", :format => :json, :timeout => 30)
end
ensure
test_server.stop if test_server
end
test_server = SSLTestServer.new({