summaryrefslogtreecommitdiff
path: root/spec/features/projects/sourcegraph_csp_spec.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-02-23 00:09:14 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-23 00:09:14 +0000
commit9c71f76e2b49c070c35cb209fe3729e01a7ce92c (patch)
treef48aa6258fc5af462df9f20df28531fdfbfd20ae /spec/features/projects/sourcegraph_csp_spec.rb
parented45528885b7b44c61f18175fe7cdbda12360669 (diff)
downloadgitlab-ce-9c71f76e2b49c070c35cb209fe3729e01a7ce92c.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/projects/sourcegraph_csp_spec.rb')
-rw-r--r--spec/features/projects/sourcegraph_csp_spec.rb90
1 files changed, 12 insertions, 78 deletions
diff --git a/spec/features/projects/sourcegraph_csp_spec.rb b/spec/features/projects/sourcegraph_csp_spec.rb
index 57d1e8e3034..385a797368c 100644
--- a/spec/features/projects/sourcegraph_csp_spec.rb
+++ b/spec/features/projects/sourcegraph_csp_spec.rb
@@ -5,94 +5,28 @@ require 'spec_helper'
describe 'Sourcegraph Content Security Policy' do
let_it_be(:user) { create(:user) }
let_it_be(:project) { create(:project, :repository, namespace: user.namespace) }
- let_it_be(:default_csp_values) { "'self' https://some-cdn.test" }
- let_it_be(:sourcegraph_url) { 'https://sourcegraph.test' }
- let(:sourcegraph_enabled) { true }
- subject do
- visit project_blob_path(project, File.join('master', 'README.md'))
-
- response_headers['Content-Security-Policy']
- end
-
- before do
- allow(Gitlab::CurrentSettings).to receive(:sourcegraph_url).and_return(sourcegraph_url)
- allow(Gitlab::CurrentSettings).to receive(:sourcegraph_enabled).and_return(sourcegraph_enabled)
-
- sign_in(user)
- end
-
- shared_context 'csp config' do |csp_rule|
+ shared_context 'disable feature' do
before do
- csp = ActionDispatch::ContentSecurityPolicy.new do |p|
- p.send(csp_rule, default_csp_values) if csp_rule
- end
-
- expect_next_instance_of(Projects::BlobController) do |controller|
- expect(controller).to receive(:current_content_security_policy).and_return(csp)
- end
+ allow(Gitlab::CurrentSettings).to receive(:sourcegraph_enabled).and_return(false)
end
end
- context 'when no CSP config' do
- include_context 'csp config', nil
+ it_behaves_like 'setting CSP connect-src' do
+ let_it_be(:whitelisted_url) { 'https://sourcegraph.test' }
+ let_it_be(:extended_controller_class) { Projects::BlobController }
- it 'does not add CSP directives' do
- is_expected.to be_blank
- end
- end
-
- describe 'when a CSP config exists for connect-src' do
- include_context 'csp config', :connect_src
+ subject do
+ visit project_blob_path(project, File.join('master', 'README.md'))
- context 'when sourcegraph enabled' do
- it 'appends to connect-src' do
- is_expected.to eql("connect-src #{default_csp_values} #{sourcegraph_url}")
- end
+ response_headers['Content-Security-Policy']
end
- context 'when sourcegraph disabled' do
- let(:sourcegraph_enabled) { false }
-
- it 'keeps original connect-src' do
- is_expected.to eql("connect-src #{default_csp_values}")
- end
- end
- end
-
- describe 'when a CSP config exists for default-src but not connect-src' do
- include_context 'csp config', :default_src
-
- context 'when sourcegraph enabled' do
- it 'uses default-src values in connect-src' do
- is_expected.to eql("default-src #{default_csp_values}; connect-src #{default_csp_values} #{sourcegraph_url}")
- end
- end
-
- context 'when sourcegraph disabled' do
- let(:sourcegraph_enabled) { false }
-
- it 'does not add connect-src' do
- is_expected.to eql("default-src #{default_csp_values}")
- end
- end
- end
-
- describe 'when a CSP config exists for font-src but not connect-src' do
- include_context 'csp config', :font_src
-
- context 'when sourcegraph enabled' do
- it 'uses default-src values in connect-src' do
- is_expected.to eql("font-src #{default_csp_values}; connect-src #{sourcegraph_url}")
- end
- end
-
- context 'when sourcegraph disabled' do
- let(:sourcegraph_enabled) { false }
+ before do
+ allow(Gitlab::CurrentSettings).to receive(:sourcegraph_url).and_return(whitelisted_url)
+ allow(Gitlab::CurrentSettings).to receive(:sourcegraph_enabled).and_return(true)
- it 'does not add connect-src' do
- is_expected.to eql("font-src #{default_csp_values}")
- end
+ sign_in(user)
end
end
end