summaryrefslogtreecommitdiff
path: root/spec/features/users/zuora_csp_spec.rb
blob: b07c923fa544808eb9b318fa70fcd7f85ad9ca8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Zuora content security policy', feature_category: :purchase do
  let(:user) { create(:user) }
  let(:project) { create(:project) }
  let(:pipeline) { create(:ci_pipeline, project: project) }

  before do
    project.add_developer(user)
    sign_in(user)
  end

  it 'has proper Content Security Policy headers' do
    visit pipeline_path(pipeline)

    expect(response_headers['Content-Security-Policy']).to include('https://*.zuora.com')
  end
end