0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 13:08:40 +08:00
discourse/spec/lib/content_security_policy_spec.rb
David Taylor fc0d388c24
UX: Do not include upgrade-insecure-requests in report-only CSP (#41414)
This directive is not supported in report-only CSP, and causes confusing
errors to be logged to the browser console. Omit it in report-only mode.
2026-07-03 09:56:08 +01:00

172 lines
5.4 KiB
Ruby
Vendored

# frozen_string_literal: true
RSpec.describe ContentSecurityPolicy do
after { DiscoursePluginRegistry.reset! }
describe "base-uri" do
it "is set to self" do
base_uri = parse(policy)["base-uri"]
expect(base_uri).to eq(["'self'"])
end
end
describe "object-src" do
it "is set to none" do
object_srcs = parse(policy)["object-src"]
expect(object_srcs).to eq(["'none'"])
end
end
describe "upgrade-insecure-requests" do
it "is not included when force_https is off" do
SiteSetting.force_https = false
expect(parse(policy)["upgrade-insecure-requests"]).to eq(nil)
end
it "is included when force_https is on" do
SiteSetting.force_https = true
expect(parse(policy)["upgrade-insecure-requests"]).to eq([])
end
it "is omitted from a report-only policy since browsers ignore it there" do
SiteSetting.force_https = true
expect(parse(policy(report_only: true))["upgrade-insecure-requests"]).to eq(nil)
end
end
describe "strict-dynamic script-src and worker-src" do
it "includes strict-dynamic keyword" do
script_srcs = parse(policy)["script-src"]
expect(script_srcs).to include("'strict-dynamic'")
end
it "allows wasm compilation" do
script_srcs = parse(policy)["script-src"]
expect(script_srcs).to include("'wasm-unsafe-eval'")
end
it "sets worker-src to self and blob:" do
worker_src = parse(policy)["worker-src"]
expect(worker_src).to contain_exactly("'self'", "blob:")
end
it "includes the CDN asset host in worker-src so the worker chunk can be imported" do
set_cdn_url "https://cdn.example.com"
worker_src = parse(policy)["worker-src"]
expect(worker_src).to contain_exactly("'self'", "blob:", "https://cdn.example.com/assets/")
end
it "includes the s3 asset CDN host in worker-src" do
global_setting :s3_bucket, "test_bucket"
global_setting :s3_region, "ap-australia"
global_setting :s3_access_key_id, "123"
global_setting :s3_secret_access_key, "123"
global_setting :s3_cdn_url, "https://s3cdn.example.com"
worker_src = parse(policy)["worker-src"]
expect(worker_src).to contain_exactly("'self'", "blob:", "https://s3cdn.example.com/assets/")
end
end
describe "manifest-src" do
it "is set to self" do
expect(parse(policy)["manifest-src"]).to eq(["'self'"])
end
end
describe "report-uri" do
it "is not included when content_security_policy_report_uri is blank" do
SiteSetting.content_security_policy_report_uri = ""
expect(parse(policy)["report-uri"]).to eq(nil)
expect(parse(policy)["script-src"]).to_not include("'report-sample'")
end
it "points to the configured endpoint and enables report-sample when set" do
SiteSetting.content_security_policy_report_uri = "https://csp.example.com/report"
expect(parse(policy)["report-uri"]).to eq(["https://csp.example.com/report"])
expect(parse(policy)["script-src"]).to include("'report-sample'")
end
end
describe "frame-ancestors" do
context "with content_security_policy_frame_ancestors enabled" do
before do
SiteSetting.content_security_policy_frame_ancestors = true
Fabricate(:embeddable_host, host: "https://a.org")
Fabricate(:embeddable_host, host: "https://b.org")
end
it "always has self" do
frame_ancestors = parse(policy)["frame-ancestors"]
expect(frame_ancestors).to include("'self'")
end
it "includes all EmbeddableHost" do
frame_ancestors = parse(policy)["frame-ancestors"]
expect(frame_ancestors).to include("https://a.org")
expect(frame_ancestors).to include("https://b.org")
end
end
context "with content_security_policy_frame_ancestors disabled" do
before { SiteSetting.content_security_policy_frame_ancestors = false }
it "does not set frame-ancestors" do
frame_ancestors = parse(policy)["frame-ancestors"]
expect(frame_ancestors).to be_nil
end
end
end
context "with a plugin" do
let(:plugin_class) do
Class.new(Plugin::Instance) do
attr_accessor :enabled
def enabled?
@enabled
end
end
end
it "can extend frame_ancestors" do
SiteSetting.content_security_policy_frame_ancestors = true
plugin =
plugin_class.new(nil, "#{Rails.root.join("spec/fixtures/plugins/csp_extension/plugin.rb")}")
plugin.activate!
Discourse.plugins << plugin
plugin.enabled = true
expect(parse(policy)["frame-ancestors"]).to include("'self'")
expect(parse(policy)["frame-ancestors"]).to include("https://frame-ancestors-plugin.ext")
plugin.enabled = false
expect(parse(policy)["frame-ancestors"]).to_not include("https://frame-ancestors-plugin.ext")
Discourse.plugins.delete plugin
DiscoursePluginRegistry.reset!
end
end
it "can be extended by site setting" do
SiteSetting.content_security_policy_script_src = "'unsafe-eval'"
expect(parse(policy)["script-src"]).to include("'unsafe-eval'")
end
def parse(csp_string)
csp_string
.split(";")
.map do |policy|
directive, *sources = policy.split
[directive, sources]
end
.to_h
end
def policy(theme_id = nil, path_info: "/", report_only: false)
ContentSecurityPolicy.policy(theme_id, path_info: path_info, report_only: report_only)
end
end