debian-mirror-gitlab/spec/features/jira_connect/subscriptions_spec.rb

45 lines
1.5 KiB
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Subscriptions Content Security Policy' do
2022-05-07 20:08:51 +05:30
include ContentSecurityPolicyHelpers
2020-11-24 15:15:51 +05:30
let(:installation) { create(:jira_connect_installation) }
let(:qsh) { Atlassian::Jwt.create_query_string_hash('https://gitlab.test/subscriptions', 'GET', 'https://gitlab.test') }
let(:jwt) { Atlassian::Jwt.encode({ iss: installation.client_key, qsh: qsh }, installation.shared_secret) }
subject { response_headers['Content-Security-Policy'] }
context 'when there is no global config' do
before do
2022-05-07 20:08:51 +05:30
setup_csp_for_controller(JiraConnect::SubscriptionsController)
2020-11-24 15:15:51 +05:30
end
it 'does not add CSP directives' do
visit jira_connect_subscriptions_path(jwt: jwt)
is_expected.to be_blank
end
end
context 'when a global CSP config exists' do
before do
csp = ActionDispatch::ContentSecurityPolicy.new do |p|
p.script_src :self, 'https://some-cdn.test'
p.style_src :self, 'https://some-cdn.test'
end
2022-05-07 20:08:51 +05:30
setup_existing_csp_for_controller(JiraConnect::SubscriptionsController, csp)
2020-11-24 15:15:51 +05:30
end
it 'appends to CSP directives' do
visit jira_connect_subscriptions_path(jwt: jwt)
is_expected.to include("frame-ancestors 'self' https://*.atlassian.net")
2021-12-11 22:18:48 +05:30
is_expected.to include("script-src 'self' https://some-cdn.test https://connect-cdn.atl-paas.net")
is_expected.to include("style-src 'self' https://some-cdn.test 'unsafe-inline'")
2020-11-24 15:15:51 +05:30
end
end
end