1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/rack-protection/spec/frame_options_spec.rb
2012-12-10 16:48:21 +01:00

39 lines
1.3 KiB
Ruby

require File.expand_path('../spec_helper.rb', __FILE__)
describe Rack::Protection::FrameOptions do
it_behaves_like "any rack application"
it 'should set the X-Frame-Options' do
get('/', {}, 'wants' => 'text/html').headers["X-Frame-Options"].should == "SAMEORIGIN"
end
it 'should not set the X-Frame-Options for other content types' do
get('/', {}, 'wants' => 'text/foo').headers["X-Frame-Options"].should be_nil
end
it 'should allow changing the protection mode' do
# I have no clue what other modes are available
mock_app do
use Rack::Protection::FrameOptions, :frame_options => :deny
run DummyApp
end
get('/', {}, 'wants' => 'text/html').headers["X-Frame-Options"].should == "DENY"
end
it 'should allow changing the protection mode to a string' do
# I have no clue what other modes are available
mock_app do
use Rack::Protection::FrameOptions, :frame_options => "ALLOW-FROM foo"
run DummyApp
end
get('/', {}, 'wants' => 'text/html').headers["X-Frame-Options"].should == "ALLOW-FROM foo"
end
it 'should not override the header if already set' do
mock_app with_headers("X-Frame-Options" => "allow")
get('/', {}, 'wants' => 'text/html').headers["X-Frame-Options"].should == "allow"
end
end