mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
2530fa50e9
ENV["REQUEST_URI"] is better to get correct Request-URI than ENV["SCRIPT_NAME"] + ENV["PATH_INFO"]. [ruby-dev:26235] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8531 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
53 lines
2 KiB
Ruby
53 lines
2 KiB
Ruby
require "webrick"
|
|
require File.join(File.dirname(__FILE__), "utils.rb")
|
|
require "test/unit"
|
|
begin
|
|
loadpath = $:.dup
|
|
$:.replace($: | [File.expand_path("../ruby", File.dirname(__FILE__))])
|
|
require 'envutil'
|
|
ensure
|
|
$:.replace(loadpath)
|
|
end
|
|
|
|
class TestWEBrickCGI < Test::Unit::TestCase
|
|
def test_cgi
|
|
accepted = started = stopped = 0
|
|
requested0 = requested1 = 0
|
|
config = {
|
|
:CGIInterpreter => EnvUtil.rubybin,
|
|
:DocumentRoot => File.dirname(__FILE__),
|
|
:DirectoryIndex => ["webrick.cgi"],
|
|
}
|
|
TestWEBrick.start_httpserver(config){|server, addr, port|
|
|
http = Net::HTTP.new(addr, port)
|
|
req = Net::HTTP::Get.new("/webrick.cgi")
|
|
http.request(req){|res| assert_equal("/webrick.cgi", res.body)}
|
|
req = Net::HTTP::Get.new("/webrick.cgi/path/info")
|
|
http.request(req){|res| assert_equal("/path/info", res.body)}
|
|
req = Net::HTTP::Get.new("/webrick.cgi/%3F%3F%3F?foo=bar")
|
|
http.request(req){|res| assert_equal("/???", res.body)}
|
|
req = Net::HTTP::Get.new("/webrick.cgi/%A4%DB%A4%B2/%A4%DB%A4%B2")
|
|
http.request(req){|res|
|
|
assert_equal("/\xA4\xDB\xA4\xB2/\xA4\xDB\xA4\xB2", res.body)}
|
|
req = Net::HTTP::Get.new("/webrick.cgi?a=1;a=2;b=x")
|
|
http.request(req){|res| assert_equal("a=1, a=2, b=x", res.body)}
|
|
req = Net::HTTP::Get.new("/webrick.cgi?a=1&a=2&b=x")
|
|
http.request(req){|res| assert_equal("a=1, a=2, b=x", res.body)}
|
|
|
|
req = Net::HTTP::Post.new("/webrick.cgi?a=x;a=y;b=1")
|
|
req["Content-Type"] = "application/x-www-form-urlencoded"
|
|
http.request(req, "a=1;a=2;b=x"){|res|
|
|
assert_equal("a=1, a=2, b=x", res.body)}
|
|
req = Net::HTTP::Post.new("/webrick.cgi?a=x&a=y&b=1")
|
|
req["Content-Type"] = "application/x-www-form-urlencoded"
|
|
http.request(req, "a=1&a=2&b=x"){|res|
|
|
assert_equal("a=1, a=2, b=x", res.body)}
|
|
req = Net::HTTP::Get.new("/")
|
|
http.request(req){|res|
|
|
ary = res.body.to_a
|
|
assert_match(%r{/$}, ary[0])
|
|
assert_match(%r{/webrick.cgi$}, ary[1])
|
|
}
|
|
}
|
|
end
|
|
end
|