From 2dfc9e162615a326eb639bd51ce0ae9ec3d439e4 Mon Sep 17 00:00:00 2001 From: naruse Date: Thu, 21 Jul 2011 08:27:08 +0000 Subject: * lib/webrick/httprequest.rb (WEBrick::HTTPRequest#each): Allow HTTP/0.9 request which doesn't has any header or body. patched by Felix Jodoin. [ruby-core:38040] [Bug #5022] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32593 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/webrick/test_httprequest.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test/webrick') diff --git a/test/webrick/test_httprequest.rb b/test/webrick/test_httprequest.rb index d8467d4b4e..0ce6b4f40f 100644 --- a/test/webrick/test_httprequest.rb +++ b/test/webrick/test_httprequest.rb @@ -3,6 +3,15 @@ require "stringio" require "test/unit" class TestWEBrickHTTPRequest < Test::Unit::TestCase + def test_simple_request + msg = <<-_end_of_message_ +GET / + _end_of_message_ + req = WEBrick::HTTPRequest.new(WEBrick::Config::HTTP) + req.parse(StringIO.new(msg)) + assert(req.meta_vars) # fails if @header was not initialized and iteration is attempted on the nil reference + end + def test_parse_09 msg = <<-_end_of_message_ GET / -- cgit v1.2.3