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

Version Path
candlepin-api-0.4.0 bundle/ruby/1.8/gems/rack-1.3.5/test/spec_static.rb
candlepin-api-0.4.0 bundle/ruby/gems/rack-1.3.5/test/spec_static.rb
candlepin-api-0.4.0 bundle/ruby/1.9.1/gems/rack-1.3.5/test/spec_static.rb
rack-1.3.10 test/spec_static.rb
rack-1.3.9 test/spec_static.rb
rack-1.3.8 test/spec_static.rb
rack-1.3.7 test/spec_static.rb
rack-1.3.6 test/spec_static.rb
rack-1.3.5 test/spec_static.rb
rack-1.3.4 test/spec_static.rb
rack-1.3.3 test/spec_static.rb
rack-1.3.2 test/spec_static.rb
rack-1.3.1 test/spec_static.rb
search_biomodel-1.0.0 search_biomodel/ruby/1.8/gems/rack-1.3.0/test/spec_static.rb
rack-1.3.0 test/spec_static.rb
rack-1.3.0.beta2 test/spec_static.rb
rack-1.3.0.beta test/spec_static.rb