Skip to content

Commit

Permalink
Add ssl_version option to choose SSL version to use.
Browse files Browse the repository at this point in the history
  • Loading branch information
htanata committed Aug 20, 2012
1 parent 9c08f47 commit c2cf65f
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 0 deletions.
Empty file modified bin/httparty 100644 → 100755
Empty file.
11 changes: 11 additions & 0 deletions lib/httparty.rb
Expand Up @@ -296,6 +296,17 @@ def query_string_normalizer(normalizer)
default_options[:query_string_normalizer] = normalizer
end

# Allows setting of SSL version to use.
# You can get a list of valid versions from OpenSSL::SSL::SSLContext::METHODS.
#
# class Foo
# include HTTParty
# ssl_version :SSLv3
# end
def ssl_version(version)
default_options[:ssl_version] = version
end

# Allows setting an OpenSSL certificate authority file
#
# class Foo
Expand Down
4 changes: 4 additions & 0 deletions lib/httparty/request.rb
Expand Up @@ -113,6 +113,10 @@ def attach_ssl_certificates(http)
http.ca_path = options[:ssl_ca_path]
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
end

if options[:ssl_version]
http.ssl_version = options[:ssl_version]
end
end
end

Expand Down
5 changes: 5 additions & 0 deletions spec/httparty/request_spec.rb
Expand Up @@ -165,6 +165,11 @@
request.send(:http).use_ssl?.should == true
end

it 'uses specified ssl_version' do
request = HTTParty::Request.new(Net::HTTP::Get, 'https://foobar.com', :ssl_version => :TLSv1)
request.send(:http).ssl_version.should == :TLSv1
end

context "PEM certificates" do
before do
OpenSSL::X509::Certificate.stub(:new)
Expand Down
7 changes: 7 additions & 0 deletions spec/httparty_spec.rb
Expand Up @@ -38,6 +38,13 @@
end
end

describe 'ssl_version' do
it 'should set the ssl_version content' do
@klass.ssl_version :SSLv3
@klass.default_options[:ssl_version].should == :SSLv3
end
end

describe 'http_proxy' do
it 'should set the address' do
@klass.http_proxy 'proxy.foo.com', 80
Expand Down

0 comments on commit c2cf65f

Please sign in to comment.