From 33d5c137751b8dba342beb8b9f7e200a6531df35 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 12 Sep 2009 15:34:35 +0000 Subject: test invalid redirect location. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/open-uri/test_open-uri.rb | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'test/open-uri/test_open-uri.rb') diff --git a/test/open-uri/test_open-uri.rb b/test/open-uri/test_open-uri.rb index 44dcf7d876..27e4e4c604 100644 --- a/test/open-uri/test_open-uri.rb +++ b/test/open-uri/test_open-uri.rb @@ -240,6 +240,32 @@ class TestOpenURI < Test::Unit::TestCase assert_equal("ab\r\n", content) ensure Thread.kill(th) + th.join + end + } + end + + def test_redirect_invalid + TCPServer.open("127.0.0.1", 0) {|serv| + port = serv.addr[1] + th = Thread.new { + sock = serv.accept + begin + req = sock.gets("\r\n\r\n") + assert_match(%r{\AGET /foo/bar }, req) + sock.print "HTTP/1.0 302 Found\r\n" + sock.print "Location: ::\r\n\r\n" + ensure + sock.close + end + } + begin + assert_raise(OpenURI::HTTPError) { + URI("http://127.0.0.1:#{port}/foo/bar").read + } + ensure + Thread.kill(th) + th.join end } end @@ -456,6 +482,7 @@ class TestOpenURI < Test::Unit::TestCase assert_equal("content", content) ensure Thread.kill(th) + th.join end } end @@ -482,6 +509,7 @@ class TestOpenURI < Test::Unit::TestCase } ensure Thread.kill(th) + th.join end } end @@ -508,6 +536,7 @@ class TestOpenURI < Test::Unit::TestCase assert_equal("ab\r\n", content) ensure Thread.kill(th) + th.join end } end -- cgit v1.2.3