Skip to content
Snippets Groups Projects
Commit 3e6ae91c authored by Alex Reisner's avatar Alex Reisner
Browse files

Merge pull request #539 from timrwilliams/master

Allow proxy configuration settings to include protocol
parents 2c9ef681 f514eed1
No related branches found
No related tags found
No related merge requests found
...@@ -99,7 +99,7 @@ module Geocoder ...@@ -99,7 +99,7 @@ module Geocoder
protocol = "http#{'s' if configuration.use_https}" protocol = "http#{'s' if configuration.use_https}"
proxy_name = "#{protocol}_proxy" proxy_name = "#{protocol}_proxy"
if proxy = configuration.send(proxy_name) if proxy = configuration.send(proxy_name)
proxy_url = protocol + '://' + proxy proxy_url = !!(proxy =~ /^#{protocol}/) ? proxy : protocol + '://' + proxy
begin begin
uri = URI.parse(proxy_url) uri = URI.parse(proxy_url)
rescue URI::InvalidURIError rescue URI::InvalidURIError
......
...@@ -20,4 +20,17 @@ class ProxyTest < Test::Unit::TestCase ...@@ -20,4 +20,17 @@ class ProxyTest < Test::Unit::TestCase
Geocoder::Lookup::Google.new.send(:http_client) Geocoder::Lookup::Google.new.send(:http_client)
end end
end end
def test_accepts_proxy_with_http_protocol
Geocoder.configure(:http_proxy => 'http://localhost')
lookup = Geocoder::Lookup::Google.new
assert lookup.send(:http_client).proxy_class?
end
def test_accepts_proxy_with_https_protocol
Geocoder.configure(:https_proxy => 'https://localhost')
Geocoder.configure(:use_https => true)
lookup = Geocoder::Lookup::Google.new
assert lookup.send(:http_client).proxy_class?
end
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment