Sha256: fe357dab7b372d3348a0263d4e0d0209b8e7d9230e356ceccc4040ace811aec2
Contents?: true
Size: 1.49 KB
Versions: 2
Compression:
Stored size: 1.49 KB
Contents
require 'spec_helper' describe OtherThingsController do describe "headers" do before(:each) do # Chrome request.env['HTTP_USER_AGENT'] = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.56 Safari/536.5' end it "sets the X-XSS-Protection header" do get :index response.headers['X-XSS-Protection'].should == '1; mode=block' end it "sets the X-Frame-Options header" do get :index response.headers['X-Frame-Options'].should == 'SAMEORIGIN' end it "sets the X-WebKit-CSP header" do get :index response.headers['Content-Security-Policy-Report-Only'].should == "default-src 'self'; img-src data:; report-uri somewhere;" end #mock ssl it "sets the Strict-Transport-Security header" do request.env['HTTPS'] = 'on' get :index response.headers['Strict-Transport-Security'].should == "max-age=315576000" end it "sets the X-Content-Type-Options header" do get :index response.headers['X-Content-Type-Options'].should == "nosniff" end context "using IE" do it "sets the X-Content-Type-Options header" do request.env['HTTP_USER_AGENT'] = "Mozilla/5.0 (compatible; MSIE 10.6; Windows NT 6.1; Trident/5.0; InfoPath.2; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727) 3gpp-gba UNTRUSTED/1.0" get :index response.headers['X-Content-Type-Options'].should == "nosniff" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
secure_headers-1.1.1 | fixtures/rails_3_2_12/spec/controllers/other_things_controller_spec.rb |
secure_headers-1.1.0 | fixtures/rails_3_2_12/spec/controllers/other_things_controller_spec.rb |