summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-05 14:29:46 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-05 14:29:46 +0000
commitf4c848e158e469e031aa29a503526345e97cab75 (patch)
tree62869a9fdebaaa1ed1d3c0321ff177df87060d9f
parentd1ad4934f5e2900324ec7ab6136d9c9ceac3c590 (diff)
* test/open-uri/test_open-uri.rb: Don't ignore webrick's log.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48287 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--test/open-uri/test_open-uri.rb21
2 files changed, 20 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 2ef63901a8..431f08eadd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Nov 5 23:24:45 2014 Tanaka Akira <akr@fsij.org>
+
+ * test/open-uri/test_open-uri.rb: Don't ignore webrick's log.
+
Wed Nov 5 19:20:08 2014 Tanaka Akira <akr@fsij.org>
* lib/webrick/server.rb: Stop lisntner loop properly.
diff --git a/test/open-uri/test_open-uri.rb b/test/open-uri/test_open-uri.rb
index 51af8842d1..ce00b343f7 100644
--- a/test/open-uri/test_open-uri.rb
+++ b/test/open-uri/test_open-uri.rb
@@ -13,19 +13,26 @@ class TestOpenURI < Test::Unit::TestCase
def NullLog.<<(arg)
end
- def with_http
+ def with_http(capture_log=false)
+ if capture_log
+ log = StringIO.new('')
+ logger = WEBrick::Log.new(log, WEBrick::BasicLog::WARN)
+ else
+ log = nil
+ logger = WEBrick::Log.new($stdout, WEBrick::BasicLog::WARN)
+ end
Dir.mktmpdir {|dr|
srv = WEBrick::HTTPServer.new({
:DocumentRoot => dr,
:ServerType => Thread,
- :Logger => WEBrick::Log.new(NullLog),
+ :Logger => logger,
:AccessLog => [[NullLog, ""]],
:BindAddress => '127.0.0.1',
:Port => 0})
_, port, _, host = srv.listeners[0].addr
begin
th = srv.start
- yield srv, dr, "http://#{host}:#{port}"
+ yield srv, dr, "http://#{host}:#{port}", log
ensure
srv.shutdown
th.join
@@ -76,9 +83,10 @@ class TestOpenURI < Test::Unit::TestCase
end
def test_404
- with_http {|srv, dr, url|
+ with_http(true) {|srv, dr, url, log|
exc = assert_raise(OpenURI::HTTPError) { open("#{url}/not-exist") {} }
assert_equal("404", exc.io.status[0])
+ assert_match(%r{ERROR `/not-exist' not found}, log.string)
}
end
@@ -400,7 +408,7 @@ class TestOpenURI < Test::Unit::TestCase
end
def test_redirect_auth
- with_http {|srv, dr, url|
+ with_http(true) {|srv, dr, url, log|
srv.mount_proc("/r1/") {|req, res| res.status = 301; res["location"] = "#{url}/r2" }
srv.mount_proc("/r2/") {|req, res|
if req["Authorization"] != "Basic #{['user:pass'].pack('m').chomp}"
@@ -410,11 +418,14 @@ class TestOpenURI < Test::Unit::TestCase
}
exc = assert_raise(OpenURI::HTTPError) { open("#{url}/r2/") {} }
assert_equal("401", exc.io.status[0])
+ assert_match(/ERROR WEBrick::HTTPStatus::Unauthorized/, log.string)
+ log.rewind; log.truncate(0)
open("#{url}/r2/", :http_basic_authentication=>['user', 'pass']) {|f|
assert_equal("r2", f.read)
}
exc = assert_raise(OpenURI::HTTPError) { open("#{url}/r1/", :http_basic_authentication=>['user', 'pass']) {} }
assert_equal("401", exc.io.status[0])
+ assert_match(/ERROR WEBrick::HTTPStatus::Unauthorized/, log.string)
}
end