Welcome to mirror list, hosted at ThFree Co, Russian Federation.

base_action_controller_shared_examples.rb « controllers « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2eab533ef7fd80b3b855e0e9a166d4587cbcf0c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# frozen_string_literal: true

# Requires `request` subject to be defined
#
# subject(:request) { get root_path }
RSpec.shared_examples 'Base action controller' do
  describe 'security headers' do
    describe 'Cross-Security-Policy' do
      context 'when configuring snowplow' do
        let(:snowplow_host) { 'snowplow.example.com' }

        shared_examples 'snowplow is not in the CSP' do
          it 'does not add the snowplow collector hostname to the CSP' do
            request

            expect(response.headers['Content-Security-Policy']).not_to include(snowplow_host)
          end
        end

        context 'when snowplow is enabled' do
          before do
            stub_application_setting(snowplow_enabled: true, snowplow_collector_hostname: snowplow_host)
          end

          it 'adds snowplow to the csp' do
            request

            expect(response.headers['Content-Security-Policy']).to include(snowplow_host)
          end
        end

        context 'when snowplow is enabled but host is not configured' do
          before do
            stub_application_setting(snowplow_enabled: true, snowplow_collector_hostname: nil)
          end

          it_behaves_like 'snowplow is not in the CSP'
        end

        context 'when snowplow is disabled' do
          before do
            stub_application_setting(snowplow_enabled: false, snowplow_collector_hostname: snowplow_host)
          end

          it_behaves_like 'snowplow is not in the CSP'
        end
      end

      context 'when configuring vite' do
        let(:vite_origin) { "#{ViteRuby.instance.config.host}:#{ViteRuby.instance.config.port}" }

        context 'when vite enabled during development',
          skip: 'https://gitlab.com/gitlab-org/gitlab/-/issues/424334' do
          before do
            stub_rails_env('development')
            stub_feature_flags(vite: true)
          end

          it 'adds vite csp' do
            request

            expect(response.headers['Content-Security-Policy']).to include(vite_origin)
          end
        end

        context 'when vite disabled' do
          before do
            stub_feature_flags(vite: false)
          end

          it "doesn't add vite csp" do
            request

            expect(response.headers['Content-Security-Policy']).not_to include(vite_origin)
          end
        end
      end
    end
  end
end