Skip to content

Commit

Permalink
[ruby/open-uri] Add :max_redirects option
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane authored and matzbot committed Dec 7, 2023
1 parent 7d32830 commit d97479f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/open-uri.rb
Expand Up @@ -108,6 +108,7 @@ module OpenURI
:ftp_active_mode => false,
:redirect => true,
:encoding => nil,
:max_redirects => nil,
}

def OpenURI.check_options(options) # :nodoc:
Expand Down Expand Up @@ -211,6 +212,7 @@ def OpenURI.open_loop(uri, options) # :nodoc:
end

uri_set = {}
max_redirects = options[:max_redirects]
buf = nil
while true
redirect = catch(:open_uri_redirect) {
Expand Down Expand Up @@ -238,6 +240,7 @@ def OpenURI.open_loop(uri, options) # :nodoc:
uri = redirect
raise "HTTP redirection loop: #{uri}" if uri_set.include? uri.to_s
uri_set[uri.to_s] = true
raise "Too many redirects" if max_redirects && uri_set.size > max_redirects
else
break
end
Expand Down
19 changes: 19 additions & 0 deletions test/open-uri/test_open-uri.rb
Expand Up @@ -558,6 +558,25 @@ def test_redirect_auth_failure_r1
}
end

def test_max_redirects_success
with_http {|srv, dr, url|
srv.mount_proc("/r1/") {|req, res| res.status = 301; res["location"] = "#{url}/r2"; res.body = "r1" }
srv.mount_proc("/r2/") {|req, res| res.status = 301; res["location"] = "#{url}/r3"; res.body = "r2" }
srv.mount_proc("/r3/") {|req, res| res.body = "r3" }
URI.open("#{url}/r1/", max_redirects: 2) { |f| assert_equal("r3", f.read) }
}
end

def test_max_redirects_too_many
with_http {|srv, dr, url|
srv.mount_proc("/r1/") {|req, res| res.status = 301; res["location"] = "#{url}/r2"; res.body = "r1" }
srv.mount_proc("/r2/") {|req, res| res.status = 301; res["location"] = "#{url}/r3"; res.body = "r2" }
srv.mount_proc("/r3/") {|req, res| res.body = "r3" }
exc = assert_raise(RuntimeError) { URI.open("#{url}/r1/", max_redirects: 1) {} }
assert_equal("Too many redirects", exc.message)
}
end

def test_userinfo
assert_raise(ArgumentError) { URI.open("http://user:pass@127.0.0.1/") {} }
end
Expand Down

0 comments on commit d97479f

Please sign in to comment.