1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
require 'rack/static'
require 'rack/mock'
class DummyApp
def call(env)
[200, {}, ["Hello World"]]
end
end
describe Rack::Static do
root = File.expand_path(File.dirname(__FILE__))
OPTIONS = {:urls => ["/cgi"], :root => root}
STATIC_OPTIONS = {:urls => [""], :root => root, :index => 'static/index.html'}
HASH_OPTIONS = {:urls => {"/cgi/sekret" => 'cgi/test'}, :root => root}
@request = Rack::MockRequest.new(Rack::Static.new(DummyApp.new, OPTIONS))
@static_request = Rack::MockRequest.new(Rack::Static.new(DummyApp.new, STATIC_OPTIONS))
@hash_request = Rack::MockRequest.new(Rack::Static.new(DummyApp.new, HASH_OPTIONS))
it "serves files" do
res = @request.get("/cgi/test")
res.should.be.ok
res.body.should =~ /ruby/
end
it "404s if url root is known but it can't find the file" do
res = @request.get("/cgi/foo")
res.should.be.not_found
end
it "calls down the chain if url root is not known" do
res = @request.get("/something/else")
res.should.be.ok
res.body.should == "Hello World"
end
it "calls index file when requesting root" do
res = @static_request.get("/")
res.should.be.ok
res.body.should =~ /index!/
end
it "doesn't call index file if :index option was omitted" do
res = @request.get("/")
res.body.should == "Hello World"
end
it "serves hidden files" do
res = @hash_request.get("/cgi/sekret")
res.should.be.ok
res.body.should =~ /ruby/
end
it "calls down the chain if the URI is not specified" do
res = @hash_request.get("/something/else")
res.should.be.ok
res.body.should == "Hello World"
end
it "supports serving fixed cache-control" do
opts = OPTIONS.merge(:cache_control => 'public')
request = Rack::MockRequest.new(Rack::Static.new(DummyApp.new, opts))
res = request.get("/cgi/test")
res.should.be.ok
res.headers['Cache-Control'].should == 'public'
end
end
|