Updates
SVG-Edit -> 2.5final Vendored Rack -> 1.2.1
This commit is contained in:
parent
6338a3bcb2
commit
0d8f680d4f
82 changed files with 138 additions and 70 deletions
56
vendor/plugins/rack/test/spec_commonlogger.rb
vendored
Normal file
56
vendor/plugins/rack/test/spec_commonlogger.rb
vendored
Normal file
|
@ -0,0 +1,56 @@
|
|||
require 'rack/commonlogger'
|
||||
require 'rack/mock'
|
||||
|
||||
describe Rack::CommonLogger do
|
||||
obj = 'foobar'
|
||||
length = obj.size
|
||||
|
||||
app = lambda { |env|
|
||||
[200,
|
||||
{"Content-Type" => "text/html", "Content-Length" => length.to_s},
|
||||
[obj]]}
|
||||
app_without_length = lambda { |env|
|
||||
[200,
|
||||
{"Content-Type" => "text/html"},
|
||||
[]]}
|
||||
app_with_zero_length = lambda { |env|
|
||||
[200,
|
||||
{"Content-Type" => "text/html", "Content-Length" => "0"},
|
||||
[]]}
|
||||
|
||||
should "log to rack.errors by default" do
|
||||
res = Rack::MockRequest.new(Rack::CommonLogger.new(app)).get("/")
|
||||
|
||||
res.errors.should.not.be.empty
|
||||
res.errors.should =~ /"GET \/ " 200 #{length} /
|
||||
end
|
||||
|
||||
should "log to anything with +write+" do
|
||||
log = StringIO.new
|
||||
res = Rack::MockRequest.new(Rack::CommonLogger.new(app, log)).get("/")
|
||||
|
||||
log.string.should =~ /"GET \/ " 200 #{length} /
|
||||
end
|
||||
|
||||
should "log - content length if header is missing" do
|
||||
res = Rack::MockRequest.new(Rack::CommonLogger.new(app_without_length)).get("/")
|
||||
|
||||
res.errors.should.not.be.empty
|
||||
res.errors.should =~ /"GET \/ " 200 - /
|
||||
end
|
||||
|
||||
should "log - content length if header is zero" do
|
||||
res = Rack::MockRequest.new(Rack::CommonLogger.new(app_with_zero_length)).get("/")
|
||||
|
||||
res.errors.should.not.be.empty
|
||||
res.errors.should =~ /"GET \/ " 200 - /
|
||||
end
|
||||
|
||||
def length
|
||||
123
|
||||
end
|
||||
|
||||
def self.obj
|
||||
"hello world"
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue