summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/uri/generic.rb15
-rw-r--r--test/uri/test_generic.rb8
3 files changed, 25 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 44116e071e..dec603b943 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Feb 13 17:30:49 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * lib/uri/generic.rb (URI::Generic#find_proxy): support CIDR in
+ no_proxy. [ruby-core:73769] [Feature#12062]
+
Sat Feb 13 17:11:58 2016 Fabian Wiesel <fabian.wiesel@sap.com>
* lib/uri/generic.rb (find_proxy): exclude white-spaces and allow
diff --git a/lib/uri/generic.rb b/lib/uri/generic.rb
index f2a2d567e3..3c4cb6e530 100644
--- a/lib/uri/generic.rb
+++ b/lib/uri/generic.rb
@@ -1547,9 +1547,18 @@ module URI
name = 'no_proxy'
if no_proxy = ENV[name] || ENV[name.upcase]
no_proxy.scan(/(?!\.)([^:,\s]+)(?::(\d+))?/) {|host, port|
- if /(\A|\.)#{Regexp.quote host}\z/i =~ self.host &&
- (!port || self.port == port.to_i)
- return nil
+ if (!port || self.port == port.to_i)
+ if /(\A|\.)#{Regexp.quote host}\z/i =~ self.host
+ return nil
+ else
+ require 'ipaddr'
+ return nil if
+ begin
+ IPAddr.new(host)
+ rescue IPAddr::InvalidAddressError
+ next
+ end.include?(self.host)
+ end
end
}
end
diff --git a/test/uri/test_generic.rb b/test/uri/test_generic.rb
index ad189fc13a..3510129832 100644
--- a/test/uri/test_generic.rb
+++ b/test/uri/test_generic.rb
@@ -841,6 +841,14 @@ class URI::TestGeneric < Test::Unit::TestCase
}
end
+ def test_find_proxy_no_proxy_cidr
+ with_env('http_proxy'=>'http://127.0.0.1:8080', 'no_proxy'=>'192.0.2.0/24') {
+ assert_equal(URI('http://127.0.0.1:8080'), URI("http://192.0.1.1/").find_proxy)
+ assert_nil(URI("http://192.0.2.1/").find_proxy)
+ assert_nil(URI("http://192.0.2.2/").find_proxy)
+ }
+ end
+
def test_find_proxy_bad_value
with_env('http_proxy'=>'') {
assert_nil(URI("http://192.0.2.1/").find_proxy)