123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- 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
|