Sha256: ced070b2a72adbcad7d0054fedc66f753891db2607de6bf4c65ebb522188f618
Contents?: true
Size: 1.91 KB
Versions: 4
Compression:
Stored size: 1.91 KB
Contents
require 'spec_helper' # This controller is meant to be something that inherits config from application controller # all values are defaulted because no initializer is configured, and the values in app controller # only provide csp => false describe ThingsController, :type => :controller do describe "headers" do it "sets the X-XSS-Protection header" do get :index expect(response.headers['X-XSS-Protection']).to eq(SecureHeaders::XXssProtection::Constants::DEFAULT_VALUE) end it "sets the X-Frame-Options header" do get :index expect(response.headers['X-Frame-Options']).to eq(SecureHeaders::XFrameOptions::Constants::DEFAULT_VALUE) end it "sets the X-WebKit-CSP header" do get :index expect(response.headers['Content-Security-Policy-Report-Only']).to eq(nil) end #mock ssl it "sets the Strict-Transport-Security header" do request.env['HTTPS'] = 'on' get :index expect(response.headers['Strict-Transport-Security']).to eq(SecureHeaders::StrictTransportSecurity::Constants::DEFAULT_VALUE) end it "sets the X-Download-Options header" do get :index expect(response.headers['X-Download-Options']).to eq(SecureHeaders::XDownloadOptions::Constants::DEFAULT_VALUE) end it "sets the X-Content-Type-Options header" do get :index expect(response.headers['X-Content-Type-Options']).to eq(SecureHeaders::XContentTypeOptions::Constants::DEFAULT_VALUE) 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 expect(response.headers['X-Content-Type-Options']).to eq(SecureHeaders::XContentTypeOptions::Constants::DEFAULT_VALUE) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems