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

configuration_controller_spec.rb « security « projects « controllers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1ce0fcd85db3096f8fd7ec10bd3e702730fc8ef8 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::Security::ConfigurationController do
  let(:project) { create(:project, :public) }
  let(:user) { create(:user) }

  before do
    allow(controller).to receive(:ensure_security_and_compliance_enabled!)

    sign_in(user)
  end

  describe 'GET show' do
    context 'when user has guest access' do
      before do
        project.add_guest(user)
      end

      it 'denies access' do
        get :show, params: { namespace_id: project.namespace, project_id: project }

        expect(response).to have_gitlab_http_status(:forbidden)
      end
    end

    context 'when user has developer access' do
      before do
        project.add_developer(user)
      end

      it 'grants access' do
        get :show, params: { namespace_id: project.namespace, project_id: project }

        expect(response).to have_gitlab_http_status(:ok)
        expect(response).to render_template(:show)
      end

      it 'responds with configuration data json' do
        get :show, params: { namespace_id: project.namespace, project_id: project, format: :json }

        features = json_response['features']
        sast_feature = features.find { |feature| feature['type'] == 'sast' }
        dast_feature = features.find { |feature| feature['type'] == 'dast' }

        expect(response).to have_gitlab_http_status(:ok)
        expect(sast_feature['available']).to be_truthy
        expect(dast_feature['available']).to be_falsey
      end

      context 'with feature flag unify_security_configuration turned off' do
        before do
          stub_feature_flags(unify_security_configuration: false)
        end

        it 'responds with empty configuration data json' do
          get :show, params: { namespace_id: project.namespace, project_id: project, format: :json }

          expect(response).to have_gitlab_http_status(:ok)
          expect(json_response).to be_empty
        end
      end
    end
  end
end