2015-12-16 08:07:31 +03:00
|
|
|
# frozen_string_literal: false
|
2005-01-07 14:05:22 +03:00
|
|
|
require "test/unit"
|
2010-02-02 16:58:56 +03:00
|
|
|
require_relative "utils.rb"
|
2005-01-07 14:05:22 +03:00
|
|
|
require "webrick"
|
|
|
|
require "stringio"
|
|
|
|
|
|
|
|
class WEBrick::TestFileHandler < Test::Unit::TestCase
|
2016-01-05 09:09:17 +03:00
|
|
|
def teardown
|
|
|
|
WEBrick::Utils::TimeoutHandler.terminate
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2005-01-07 14:05:22 +03:00
|
|
|
def default_file_handler(filename)
|
|
|
|
klass = WEBrick::HTTPServlet::DefaultFileHandler
|
|
|
|
klass.new(WEBrick::Config::HTTP, filename)
|
|
|
|
end
|
|
|
|
|
2008-05-18 17:33:24 +04:00
|
|
|
def windows?
|
|
|
|
File.directory?("\\")
|
|
|
|
end
|
|
|
|
|
2005-01-07 14:05:22 +03:00
|
|
|
def get_res_body(res)
|
2014-05-30 18:50:42 +04:00
|
|
|
body = res.body
|
|
|
|
if defined? body.read
|
|
|
|
begin
|
|
|
|
body.read
|
|
|
|
ensure
|
|
|
|
body.close
|
|
|
|
end
|
2006-02-03 12:15:42 +03:00
|
|
|
else
|
2014-05-30 18:50:42 +04:00
|
|
|
body
|
2006-02-03 12:15:42 +03:00
|
|
|
end
|
2005-01-07 14:05:22 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def make_range_request(range_spec)
|
2011-01-13 00:53:31 +03:00
|
|
|
msg = <<-END_OF_REQUEST
|
2005-01-07 14:05:22 +03:00
|
|
|
GET / HTTP/1.0
|
|
|
|
Range: #{range_spec}
|
|
|
|
|
2011-01-13 00:53:31 +03:00
|
|
|
END_OF_REQUEST
|
2005-01-07 14:05:22 +03:00
|
|
|
return StringIO.new(msg.gsub(/^ {6}/, ""))
|
|
|
|
end
|
|
|
|
|
|
|
|
def make_range_response(file, range_spec)
|
|
|
|
req = WEBrick::HTTPRequest.new(WEBrick::Config::HTTP)
|
|
|
|
req.parse(make_range_request(range_spec))
|
|
|
|
res = WEBrick::HTTPResponse.new(WEBrick::Config::HTTP)
|
|
|
|
size = File.size(file)
|
|
|
|
handler = default_file_handler(file)
|
|
|
|
handler.make_partial_content(req, res, file, size)
|
|
|
|
return res
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_make_partial_content
|
|
|
|
filename = __FILE__
|
|
|
|
filesize = File.size(filename)
|
|
|
|
|
|
|
|
res = make_range_response(filename, "bytes=#{filesize-100}-")
|
|
|
|
assert_match(%r{^text/plain}, res["content-type"])
|
2014-11-09 15:16:38 +03:00
|
|
|
assert_equal(100, get_res_body(res).size)
|
2005-01-07 14:05:22 +03:00
|
|
|
|
|
|
|
res = make_range_response(filename, "bytes=-100")
|
|
|
|
assert_match(%r{^text/plain}, res["content-type"])
|
2014-11-09 15:16:38 +03:00
|
|
|
assert_equal(100, get_res_body(res).size)
|
2005-01-07 14:05:22 +03:00
|
|
|
|
|
|
|
res = make_range_response(filename, "bytes=0-99")
|
|
|
|
assert_match(%r{^text/plain}, res["content-type"])
|
2014-11-09 15:16:38 +03:00
|
|
|
assert_equal(100, get_res_body(res).size)
|
2005-01-07 14:05:22 +03:00
|
|
|
|
|
|
|
res = make_range_response(filename, "bytes=100-199")
|
|
|
|
assert_match(%r{^text/plain}, res["content-type"])
|
2014-11-09 15:16:38 +03:00
|
|
|
assert_equal(100, get_res_body(res).size)
|
2005-01-07 14:05:22 +03:00
|
|
|
|
|
|
|
res = make_range_response(filename, "bytes=0-0")
|
|
|
|
assert_match(%r{^text/plain}, res["content-type"])
|
2014-11-09 15:16:38 +03:00
|
|
|
assert_equal(1, get_res_body(res).size)
|
2005-01-07 14:05:22 +03:00
|
|
|
|
|
|
|
res = make_range_response(filename, "bytes=-1")
|
|
|
|
assert_match(%r{^text/plain}, res["content-type"])
|
2014-11-09 15:16:38 +03:00
|
|
|
assert_equal(1, get_res_body(res).size)
|
2005-01-07 14:05:22 +03:00
|
|
|
|
|
|
|
res = make_range_response(filename, "bytes=0-0, -2")
|
|
|
|
assert_match(%r{^multipart/byteranges}, res["content-type"])
|
|
|
|
end
|
2008-03-03 17:31:30 +03:00
|
|
|
|
|
|
|
def test_filehandler
|
|
|
|
config = { :DocumentRoot => File.dirname(__FILE__), }
|
|
|
|
this_file = File.basename(__FILE__)
|
2010-01-18 11:16:07 +03:00
|
|
|
filesize = File.size(__FILE__)
|
|
|
|
this_data = File.open(__FILE__, "rb") {|f| f.read}
|
|
|
|
range = nil
|
|
|
|
bug2593 = '[ruby-dev:40030]'
|
|
|
|
|
2008-10-29 14:48:35 +03:00
|
|
|
TestWEBrick.start_httpserver(config) do |server, addr, port, log|
|
2008-03-03 17:31:30 +03:00
|
|
|
http = Net::HTTP.new(addr, port)
|
|
|
|
req = Net::HTTP::Get.new("/")
|
|
|
|
http.request(req){|res|
|
2008-10-29 14:48:35 +03:00
|
|
|
assert_equal("200", res.code, log.call)
|
|
|
|
assert_equal("text/html", res.content_type, log.call)
|
|
|
|
assert_match(/HREF="#{this_file}"/, res.body, log.call)
|
2008-03-03 17:31:30 +03:00
|
|
|
}
|
|
|
|
req = Net::HTTP::Get.new("/#{this_file}")
|
|
|
|
http.request(req){|res|
|
2008-10-29 14:48:35 +03:00
|
|
|
assert_equal("200", res.code, log.call)
|
|
|
|
assert_equal("text/plain", res.content_type, log.call)
|
|
|
|
assert_equal(File.read(__FILE__), res.body, log.call)
|
2008-03-03 17:31:30 +03:00
|
|
|
}
|
2010-01-18 11:16:07 +03:00
|
|
|
|
|
|
|
req = Net::HTTP::Get.new("/#{this_file}", "range"=>"bytes=#{filesize-100}-")
|
|
|
|
http.request(req){|res|
|
|
|
|
assert_equal("206", res.code, log.call)
|
|
|
|
assert_equal("text/plain", res.content_type, log.call)
|
|
|
|
assert_nothing_raised(bug2593) {range = res.content_range}
|
|
|
|
assert_equal((filesize-100)..(filesize-1), range, log.call)
|
|
|
|
assert_equal(this_data[-100..-1], res.body, log.call)
|
|
|
|
}
|
|
|
|
|
|
|
|
req = Net::HTTP::Get.new("/#{this_file}", "range"=>"bytes=-100")
|
|
|
|
http.request(req){|res|
|
|
|
|
assert_equal("206", res.code, log.call)
|
|
|
|
assert_equal("text/plain", res.content_type, log.call)
|
|
|
|
assert_nothing_raised(bug2593) {range = res.content_range}
|
|
|
|
assert_equal((filesize-100)..(filesize-1), range, log.call)
|
|
|
|
assert_equal(this_data[-100..-1], res.body, log.call)
|
|
|
|
}
|
|
|
|
|
|
|
|
req = Net::HTTP::Get.new("/#{this_file}", "range"=>"bytes=0-99")
|
|
|
|
http.request(req){|res|
|
|
|
|
assert_equal("206", res.code, log.call)
|
|
|
|
assert_equal("text/plain", res.content_type, log.call)
|
|
|
|
assert_nothing_raised(bug2593) {range = res.content_range}
|
|
|
|
assert_equal(0..99, range, log.call)
|
|
|
|
assert_equal(this_data[0..99], res.body, log.call)
|
|
|
|
}
|
|
|
|
|
|
|
|
req = Net::HTTP::Get.new("/#{this_file}", "range"=>"bytes=100-199")
|
|
|
|
http.request(req){|res|
|
|
|
|
assert_equal("206", res.code, log.call)
|
|
|
|
assert_equal("text/plain", res.content_type, log.call)
|
|
|
|
assert_nothing_raised(bug2593) {range = res.content_range}
|
|
|
|
assert_equal(100..199, range, log.call)
|
|
|
|
assert_equal(this_data[100..199], res.body, log.call)
|
|
|
|
}
|
|
|
|
|
|
|
|
req = Net::HTTP::Get.new("/#{this_file}", "range"=>"bytes=0-0")
|
|
|
|
http.request(req){|res|
|
|
|
|
assert_equal("206", res.code, log.call)
|
|
|
|
assert_equal("text/plain", res.content_type, log.call)
|
|
|
|
assert_nothing_raised(bug2593) {range = res.content_range}
|
|
|
|
assert_equal(0..0, range, log.call)
|
|
|
|
assert_equal(this_data[0..0], res.body, log.call)
|
|
|
|
}
|
|
|
|
|
|
|
|
req = Net::HTTP::Get.new("/#{this_file}", "range"=>"bytes=-1")
|
|
|
|
http.request(req){|res|
|
|
|
|
assert_equal("206", res.code, log.call)
|
|
|
|
assert_equal("text/plain", res.content_type, log.call)
|
|
|
|
assert_nothing_raised(bug2593) {range = res.content_range}
|
|
|
|
assert_equal((filesize-1)..(filesize-1), range, log.call)
|
|
|
|
assert_equal(this_data[-1, 1], res.body, log.call)
|
|
|
|
}
|
|
|
|
|
|
|
|
req = Net::HTTP::Get.new("/#{this_file}", "range"=>"bytes=0-0, -2")
|
|
|
|
http.request(req){|res|
|
|
|
|
assert_equal("206", res.code, log.call)
|
|
|
|
assert_equal("multipart/byteranges", res.content_type, log.call)
|
|
|
|
}
|
|
|
|
|
2008-03-03 17:31:30 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_non_disclosure_name
|
|
|
|
config = { :DocumentRoot => File.dirname(__FILE__), }
|
2014-11-09 17:01:20 +03:00
|
|
|
log_tester = lambda {|log, access_log|
|
2015-03-06 12:22:21 +03:00
|
|
|
log = log.reject {|s| /ERROR `.*\' not found\./ =~ s }
|
2014-11-09 17:01:20 +03:00
|
|
|
log = log.reject {|s| /WARN the request refers nondisclosure name/ =~ s }
|
|
|
|
assert_equal([], log)
|
|
|
|
}
|
2008-03-03 17:31:30 +03:00
|
|
|
this_file = File.basename(__FILE__)
|
2014-11-09 17:01:20 +03:00
|
|
|
TestWEBrick.start_httpserver(config, log_tester) do |server, addr, port, log|
|
2008-03-03 17:31:30 +03:00
|
|
|
http = Net::HTTP.new(addr, port)
|
|
|
|
doc_root_opts = server[:DocumentRootOptions]
|
|
|
|
doc_root_opts[:NondisclosureName] = %w(.ht* *~ test_*)
|
|
|
|
req = Net::HTTP::Get.new("/")
|
|
|
|
http.request(req){|res|
|
2008-10-29 14:48:35 +03:00
|
|
|
assert_equal("200", res.code, log.call)
|
|
|
|
assert_equal("text/html", res.content_type, log.call)
|
2008-03-03 17:31:30 +03:00
|
|
|
assert_no_match(/HREF="#{File.basename(__FILE__)}"/, res.body)
|
|
|
|
}
|
|
|
|
req = Net::HTTP::Get.new("/#{this_file}")
|
|
|
|
http.request(req){|res|
|
2008-10-29 14:48:35 +03:00
|
|
|
assert_equal("404", res.code, log.call)
|
2008-03-03 17:31:30 +03:00
|
|
|
}
|
|
|
|
doc_root_opts[:NondisclosureName] = %w(.ht* *~ TEST_*)
|
|
|
|
http.request(req){|res|
|
2008-10-29 14:48:35 +03:00
|
|
|
assert_equal("404", res.code, log.call)
|
2008-03-03 17:31:30 +03:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_directory_traversal
|
2015-03-06 12:22:21 +03:00
|
|
|
return if File.executable?(__FILE__) # skip on strange file system
|
|
|
|
|
2008-03-03 17:31:30 +03:00
|
|
|
config = { :DocumentRoot => File.dirname(__FILE__), }
|
2014-11-09 17:01:20 +03:00
|
|
|
log_tester = lambda {|log, access_log|
|
|
|
|
log = log.reject {|s| /ERROR bad URI/ =~ s }
|
2015-03-06 12:22:21 +03:00
|
|
|
log = log.reject {|s| /ERROR `.*\' not found\./ =~ s }
|
2014-11-09 17:01:20 +03:00
|
|
|
assert_equal([], log)
|
|
|
|
}
|
|
|
|
TestWEBrick.start_httpserver(config, log_tester) do |server, addr, port, log|
|
2008-03-03 17:31:30 +03:00
|
|
|
http = Net::HTTP.new(addr, port)
|
|
|
|
req = Net::HTTP::Get.new("/../../")
|
2008-10-29 14:48:35 +03:00
|
|
|
http.request(req){|res| assert_equal("400", res.code, log.call) }
|
2008-05-18 17:33:24 +04:00
|
|
|
req = Net::HTTP::Get.new("/..%5c../#{File.basename(__FILE__)}")
|
2008-10-29 14:48:35 +03:00
|
|
|
http.request(req){|res| assert_equal(windows? ? "200" : "404", res.code, log.call) }
|
2008-05-18 17:33:24 +04:00
|
|
|
req = Net::HTTP::Get.new("/..%5c..%5cruby.c")
|
2008-10-29 14:48:35 +03:00
|
|
|
http.request(req){|res| assert_equal("404", res.code, log.call) }
|
2008-03-03 17:31:30 +03:00
|
|
|
end
|
|
|
|
end
|
2008-05-18 17:33:24 +04:00
|
|
|
|
|
|
|
def test_unwise_in_path
|
|
|
|
if windows?
|
|
|
|
config = { :DocumentRoot => File.dirname(__FILE__), }
|
2008-10-29 14:48:35 +03:00
|
|
|
TestWEBrick.start_httpserver(config) do |server, addr, port, log|
|
2008-05-18 17:33:24 +04:00
|
|
|
http = Net::HTTP.new(addr, port)
|
|
|
|
req = Net::HTTP::Get.new("/..%5c..")
|
2008-10-29 14:48:35 +03:00
|
|
|
http.request(req){|res| assert_equal("301", res.code, log.call) }
|
2008-05-18 17:33:24 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_short_filename
|
2015-03-06 12:22:21 +03:00
|
|
|
return if File.executable?(__FILE__) # skip on strange file system
|
|
|
|
|
2008-05-18 17:33:24 +04:00
|
|
|
config = {
|
|
|
|
:CGIInterpreter => TestWEBrick::RubyBin,
|
|
|
|
:DocumentRoot => File.dirname(__FILE__),
|
|
|
|
:CGIPathEnv => ENV['PATH'],
|
|
|
|
}
|
2014-11-09 17:01:20 +03:00
|
|
|
log_tester = lambda {|log, access_log|
|
2015-03-06 12:22:21 +03:00
|
|
|
log = log.reject {|s| /ERROR `.*\' not found\./ =~ s }
|
2014-11-09 17:01:20 +03:00
|
|
|
log = log.reject {|s| /WARN the request refers nondisclosure name/ =~ s }
|
|
|
|
assert_equal([], log)
|
|
|
|
}
|
|
|
|
TestWEBrick.start_httpserver(config, log_tester) do |server, addr, port, log|
|
2008-05-18 17:33:24 +04:00
|
|
|
http = Net::HTTP.new(addr, port)
|
2011-03-28 20:52:20 +04:00
|
|
|
if windows?
|
2015-07-14 07:55:13 +03:00
|
|
|
root = config[:DocumentRoot].tr("/", "\\")
|
|
|
|
fname = IO.popen(%W[dir /x #{root}\\webrick_long_filename.cgi], &:read)
|
|
|
|
fname.sub!(/\A.*$^$.*$^$/m, '')
|
|
|
|
if fname
|
|
|
|
fname = fname[/\s(w.+?cgi)\s/i, 1]
|
|
|
|
fname.downcase!
|
2011-03-29 05:29:20 +04:00
|
|
|
end
|
2011-03-28 20:52:20 +04:00
|
|
|
else
|
|
|
|
fname = "webric~1.cgi"
|
|
|
|
end
|
|
|
|
req = Net::HTTP::Get.new("/#{fname}/test")
|
2008-05-18 17:33:24 +04:00
|
|
|
http.request(req) do |res|
|
|
|
|
if windows?
|
2008-10-29 14:48:35 +03:00
|
|
|
assert_equal("200", res.code, log.call)
|
|
|
|
assert_equal("/test", res.body, log.call)
|
2008-05-18 17:33:24 +04:00
|
|
|
else
|
2008-10-29 14:48:35 +03:00
|
|
|
assert_equal("404", res.code, log.call)
|
2008-05-18 17:33:24 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
req = Net::HTTP::Get.new("/.htaccess")
|
2008-10-29 14:48:35 +03:00
|
|
|
http.request(req) {|res| assert_equal("404", res.code, log.call) }
|
2008-05-18 17:33:24 +04:00
|
|
|
req = Net::HTTP::Get.new("/htacce~1")
|
2008-10-29 14:48:35 +03:00
|
|
|
http.request(req) {|res| assert_equal("404", res.code, log.call) }
|
2008-05-18 17:33:24 +04:00
|
|
|
req = Net::HTTP::Get.new("/HTACCE~1")
|
2008-10-29 14:48:35 +03:00
|
|
|
http.request(req) {|res| assert_equal("404", res.code, log.call) }
|
2008-05-18 17:33:24 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_script_disclosure
|
2015-03-06 12:22:21 +03:00
|
|
|
return if File.executable?(__FILE__) # skip on strange file system
|
|
|
|
|
2008-05-18 17:33:24 +04:00
|
|
|
config = {
|
|
|
|
:CGIInterpreter => TestWEBrick::RubyBin,
|
|
|
|
:DocumentRoot => File.dirname(__FILE__),
|
|
|
|
:CGIPathEnv => ENV['PATH'],
|
2011-01-14 05:02:12 +03:00
|
|
|
:RequestCallback => Proc.new{|req, res|
|
|
|
|
def req.meta_vars
|
|
|
|
meta = super
|
|
|
|
meta["RUBYLIB"] = $:.join(File::PATH_SEPARATOR)
|
2011-11-16 07:06:05 +04:00
|
|
|
meta[RbConfig::CONFIG['LIBPATHENV']] = ENV[RbConfig::CONFIG['LIBPATHENV']] if RbConfig::CONFIG['LIBPATHENV']
|
2011-01-14 05:02:12 +03:00
|
|
|
return meta
|
|
|
|
end
|
|
|
|
},
|
2008-05-18 17:33:24 +04:00
|
|
|
}
|
2014-11-09 17:01:20 +03:00
|
|
|
log_tester = lambda {|log, access_log|
|
2015-03-06 12:22:21 +03:00
|
|
|
log = log.reject {|s| /ERROR `.*\' not found\./ =~ s }
|
2014-11-09 17:01:20 +03:00
|
|
|
assert_equal([], log)
|
|
|
|
}
|
|
|
|
TestWEBrick.start_httpserver(config, log_tester) do |server, addr, port, log|
|
2008-05-18 17:33:24 +04:00
|
|
|
http = Net::HTTP.new(addr, port)
|
|
|
|
|
|
|
|
req = Net::HTTP::Get.new("/webrick.cgi/test")
|
|
|
|
http.request(req) do |res|
|
2008-10-29 14:48:35 +03:00
|
|
|
assert_equal("200", res.code, log.call)
|
|
|
|
assert_equal("/test", res.body, log.call)
|
2008-05-18 17:33:24 +04:00
|
|
|
end
|
|
|
|
|
2013-06-21 10:15:36 +04:00
|
|
|
resok = windows?
|
2008-05-18 17:33:24 +04:00
|
|
|
response_assertion = Proc.new do |res|
|
2013-06-21 10:15:36 +04:00
|
|
|
if resok
|
2008-10-29 14:48:35 +03:00
|
|
|
assert_equal("200", res.code, log.call)
|
|
|
|
assert_equal("/test", res.body, log.call)
|
2008-05-18 17:33:24 +04:00
|
|
|
else
|
2008-10-29 14:48:35 +03:00
|
|
|
assert_equal("404", res.code, log.call)
|
2008-05-18 17:33:24 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
req = Net::HTTP::Get.new("/webrick.cgi%20/test")
|
|
|
|
http.request(req, &response_assertion)
|
|
|
|
req = Net::HTTP::Get.new("/webrick.cgi./test")
|
|
|
|
http.request(req, &response_assertion)
|
2013-06-21 10:15:36 +04:00
|
|
|
resok &&= File.exist?(__FILE__+"::$DATA")
|
2008-05-18 17:33:24 +04:00
|
|
|
req = Net::HTTP::Get.new("/webrick.cgi::$DATA/test")
|
|
|
|
http.request(req, &response_assertion)
|
|
|
|
end
|
|
|
|
end
|
2017-12-22 04:07:50 +03:00
|
|
|
|
|
|
|
def test_erbhandler
|
|
|
|
config = { :DocumentRoot => File.dirname(__FILE__) }
|
|
|
|
log_tester = lambda {|log, access_log|
|
|
|
|
log = log.reject {|s| /ERROR `.*\' not found\./ =~ s }
|
|
|
|
assert_equal([], log)
|
|
|
|
}
|
|
|
|
TestWEBrick.start_httpserver(config, log_tester) do |server, addr, port, log|
|
|
|
|
http = Net::HTTP.new(addr, port)
|
|
|
|
req = Net::HTTP::Get.new("/webrick.rhtml")
|
|
|
|
http.request(req) do |res|
|
|
|
|
assert_equal("200", res.code, log.call)
|
|
|
|
assert_match %r!\Areq to http://[^/]+/webrick\.rhtml {}\n!, res.body
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2005-01-07 14:05:22 +03:00
|
|
|
end
|