Sha256: 990251822cf4dc1858b5c7c6e04020ed5db303b327ba8d797fb520864db516f5
Contents?: true
Size: 1.32 KB
Versions: 3
Compression:
Stored size: 1.32 KB
Contents
# frozen_string_literal: true RSpec.describe "HTTP headers", type: :integration do it "returns HTTP headers" do with_project do generate "action web home#index --url=/" server do get "/" expect(last_response.status).to eq(200) expect(last_response.headers.keys).to eq( %w[ X-Frame-Options X-Content-Type-Options X-Xss-Protection Content-Security-Policy Content-Type Content-Length Server Date Connection ] ) expect(last_response.headers["X-Frame-Options"]).to eq("DENY") expect(last_response.headers["X-Content-Type-Options"]).to eq("nosniff") expect(last_response.headers["X-Xss-Protection"]).to eq("1; mode=block") expect(last_response.headers["Content-Security-Policy"]).to eq("form-action 'self'; frame-ancestors 'self'; base-uri 'self'; default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self' https: data:; style-src 'self' 'unsafe-inline' https:; font-src 'self'; object-src 'none'; plugin-types app/pdf; child-src 'self'; frame-src 'self'; media-src 'self'") expect(last_response.headers["Content-Type"]).to eq("text/html; charset=utf-8") expect(Integer(last_response.headers["Content-Length"])).to be > 0 end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
hanami-2.0.0.beta2 | spec/integration/http_headers_spec.rb |
hanami-2.0.0.beta1.1 | spec/integration/http_headers_spec.rb |
hanami-2.0.0.beta1 | spec/integration/http_headers_spec.rb |