33 lines
		
	
	
		
			947 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			947 B
		
	
	
	
		
			Ruby
		
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| 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) }
 | |
| 
 | |
|   shared_context 'disable feature' do
 | |
|     before do
 | |
|       allow(Gitlab::CurrentSettings).to receive(:sourcegraph_enabled).and_return(false)
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   it_behaves_like 'setting CSP', 'connect-src' do
 | |
|     let_it_be(:whitelisted_url) { 'https://sourcegraph.test' }
 | |
|     let_it_be(:extended_controller_class) { Projects::BlobController }
 | |
| 
 | |
|     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(whitelisted_url)
 | |
|       allow(Gitlab::CurrentSettings).to receive(:sourcegraph_enabled).and_return(true)
 | |
| 
 | |
|       sign_in(user)
 | |
|     end
 | |
|   end
 | |
| end
 |