Sha256: de90a5fe9b941d4a3451c77e8f992d1d3dbeff72a021549e2b3072a8cd795a1e
Contents?: true
Size: 1.77 KB
Versions: 8
Compression:
Stored size: 1.77 KB
Contents
require 'test/spec' require 'rack/mock' require 'rack/contrib/host_meta' require 'rack/contrib/not_found' context "Rack::HostMeta" do setup do app = Rack::Builder.new do use Rack::Lint use Rack::ContentLength use Rack::HostMeta do link :uri => '/robots.txt', :rel => 'robots' link :uri => '/w3c/p3p.xml', :rel => 'privacy', :type => 'application/p3p.xml' link :pattern => '{uri};json_schema', :rel => 'describedby', :type => 'application/x-schema+json' end run Rack::NotFound.new('test/404.html') end @response = Rack::MockRequest.new(app).get('/host-meta') end specify "should respond to /host-meta" do @response.status.should.equal 200 end specify "should respond with the correct media type" do @response['Content-Type'].should.equal 'application/host-meta' end specify "should include a Link entry for each Link item in the config block" do @response.body.should.match(/Link:\s*<\/robots.txt>;.*\n/) @response.body.should.match(/Link:\s*<\/w3c\/p3p.xml>;.*/) end specify "should include a Link-Pattern entry for each Link-Pattern item in the config" do @response.body.should.match(/Link-Pattern:\s*<\{uri\};json_schema>;.*/) end specify "should include a rel attribute for each Link or Link-Pattern entry where specified" do @response.body.should.match(/rel="robots"/) @response.body.should.match(/rel="privacy"/) @response.body.should.match(/rel="describedby"/) end specify "should include a type attribute for each Link or Link-Pattern entry where specified" do @response.body.should.match(/Link:\s*<\/w3c\/p3p.xml>;.*type.*application\/p3p.xml/) @response.body.should.match(/Link-Pattern:\s*<\{uri\};json_schema>;.*type.*application\/x-schema\+json/) end end
Version data entries
8 entries across 8 versions & 2 rubygems