Sha256: fc264f0f796f8722c4a1c1059f001eac123e82b34373c81d498813ebb3f1cdf2
Contents?: true
Size: 1.45 KB
Versions: 17
Compression:
Stored size: 1.45 KB
Contents
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} HASH_OPTIONS = {:urls => {"/cgi/sekret" => 'cgi/test'}, :root => root} @request = Rack::MockRequest.new(Rack::Static.new(DummyApp.new, 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 "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
Version data entries
17 entries across 15 versions & 3 rubygems