mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
125 lines
4.8 KiB
Ruby
125 lines
4.8 KiB
Ruby
require File.expand_path('../helper', __FILE__)
|
|
require 'stringio'
|
|
|
|
class RequestTest < Minitest::Test
|
|
it 'responds to #user_agent' do
|
|
request = Sinatra::Request.new({'HTTP_USER_AGENT' => 'Test'})
|
|
assert request.respond_to?(:user_agent)
|
|
assert_equal 'Test', request.user_agent
|
|
end
|
|
|
|
it 'parses POST params when Content-Type is form-dataish' do
|
|
request = Sinatra::Request.new(
|
|
'REQUEST_METHOD' => 'PUT',
|
|
'CONTENT_TYPE' => 'application/x-www-form-urlencoded',
|
|
'rack.input' => StringIO.new('foo=bar')
|
|
)
|
|
assert_equal 'bar', request.params['foo']
|
|
end
|
|
|
|
it 'is secure when the url scheme is https' do
|
|
request = Sinatra::Request.new('rack.url_scheme' => 'https')
|
|
assert request.secure?
|
|
end
|
|
|
|
it 'is not secure when the url scheme is http' do
|
|
request = Sinatra::Request.new('rack.url_scheme' => 'http')
|
|
assert !request.secure?
|
|
end
|
|
|
|
it 'respects X-Forwarded-Proto header for proxied SSL' do
|
|
request = Sinatra::Request.new('HTTP_X_FORWARDED_PROTO' => 'https')
|
|
assert request.secure?
|
|
end
|
|
|
|
it 'is possible to marshal params' do
|
|
request = Sinatra::Request.new(
|
|
'REQUEST_METHOD' => 'PUT',
|
|
'CONTENT_TYPE' => 'application/x-www-form-urlencoded',
|
|
'rack.input' => StringIO.new('foo=bar')
|
|
)
|
|
Sinatra::IndifferentHash[request.params]
|
|
dumped = Marshal.dump(request.params)
|
|
assert_equal 'bar', Marshal.load(dumped)['foo']
|
|
end
|
|
|
|
it "exposes the preferred type's parameters" do
|
|
request = Sinatra::Request.new(
|
|
'HTTP_ACCEPT' => 'image/jpeg; compress=0.25'
|
|
)
|
|
assert_equal({ 'compress' => '0.25' }, request.preferred_type.params)
|
|
end
|
|
|
|
it "raises Sinatra::BadRequest when params contain conflicting types" do
|
|
request = Sinatra::Request.new 'QUERY_STRING' => 'foo=&foo[]='
|
|
assert_raises(Sinatra::BadRequest) { request.params }
|
|
end
|
|
|
|
it "makes accept types behave like strings" do
|
|
request = Sinatra::Request.new('HTTP_ACCEPT' => 'image/jpeg; compress=0.25')
|
|
assert request.accept?('image/jpeg')
|
|
assert_equal 'image/jpeg', request.preferred_type.to_s
|
|
assert_equal 'image/jpeg; compress=0.25', request.preferred_type.to_s(true)
|
|
assert_equal 'image/jpeg', request.preferred_type.to_str
|
|
assert_equal 'image', request.preferred_type.split('/').first
|
|
|
|
String.instance_methods.each do |method|
|
|
next unless "".respond_to? method
|
|
assert request.preferred_type.respond_to?(method), "responds to #{method}"
|
|
end
|
|
end
|
|
|
|
it "accepts types when wildcards are requested" do
|
|
request = Sinatra::Request.new('HTTP_ACCEPT' => 'image/*')
|
|
assert request.accept?('image/jpeg')
|
|
end
|
|
|
|
it "properly decodes MIME type parameters" do
|
|
request = Sinatra::Request.new(
|
|
'HTTP_ACCEPT' => 'image/jpeg;unquoted=0.25;quoted="0.25";chartest="\";,\x"'
|
|
)
|
|
expected = { 'unquoted' => '0.25', 'quoted' => '0.25', 'chartest' => '";,x' }
|
|
assert_equal(expected, request.preferred_type.params)
|
|
end
|
|
|
|
it 'accepts */* when HTTP_ACCEPT is not present in the request' do
|
|
request = Sinatra::Request.new Hash.new
|
|
assert_equal 1, request.accept.size
|
|
assert request.accept?('text/html')
|
|
assert_equal '*/*', request.preferred_type.to_s
|
|
assert_equal '*/*', request.preferred_type.to_s(true)
|
|
end
|
|
|
|
it 'accepts */* when HTTP_ACCEPT is blank in the request' do
|
|
request = Sinatra::Request.new 'HTTP_ACCEPT' => ''
|
|
assert_equal 1, request.accept.size
|
|
assert request.accept?('text/html')
|
|
assert_equal '*/*', request.preferred_type.to_s
|
|
assert_equal '*/*', request.preferred_type.to_s(true)
|
|
end
|
|
|
|
it 'will not accept types not specified in HTTP_ACCEPT when HTTP_ACCEPT is provided' do
|
|
request = Sinatra::Request.new 'HTTP_ACCEPT' => 'application/json'
|
|
assert !request.accept?('text/html')
|
|
end
|
|
|
|
it 'will accept types that fulfill HTTP_ACCEPT parameters' do
|
|
request = Sinatra::Request.new 'HTTP_ACCEPT' => 'application/rss+xml; version="http://purl.org/rss/1.0/"'
|
|
|
|
assert request.accept?('application/rss+xml; version="http://purl.org/rss/1.0/"')
|
|
assert request.accept?('application/rss+xml; version="http://purl.org/rss/1.0/"; charset=utf-8')
|
|
assert !request.accept?('application/rss+xml; version="https://cyber.harvard.edu/rss/rss.html"')
|
|
end
|
|
|
|
it 'will accept more generic types that include HTTP_ACCEPT parameters' do
|
|
request = Sinatra::Request.new 'HTTP_ACCEPT' => 'application/rss+xml; charset=utf-8; version="http://purl.org/rss/1.0/"'
|
|
|
|
assert request.accept?('application/rss+xml')
|
|
assert request.accept?('application/rss+xml; version="http://purl.org/rss/1.0/"')
|
|
end
|
|
|
|
it 'will accept types matching HTTP_ACCEPT when parameters in arbitrary order' do
|
|
request = Sinatra::Request.new 'HTTP_ACCEPT' => 'application/rss+xml; charset=utf-8; version="http://purl.org/rss/1.0/"'
|
|
assert request.accept?('application/rss+xml; version="http://purl.org/rss/1.0/"; charset=utf-8')
|
|
end
|
|
end
|