summaryrefslogtreecommitdiff
path: root/test/open-uri/test_open-uri.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-12 15:34:35 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-12 15:34:35 +0000
commit33d5c137751b8dba342beb8b9f7e200a6531df35 (patch)
treee3c3609c5918a5ca368d54c8b1c846981621827b /test/open-uri/test_open-uri.rb
parenta5971a12822f3de95ba975acbe3774a8fbabe589 (diff)
test invalid redirect location.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/open-uri/test_open-uri.rb')
-rw-r--r--test/open-uri/test_open-uri.rb29
1 files changed, 29 insertions, 0 deletions
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