summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/policies/resource_access_token_shared_examples.rb
blob: cc91b73449a0ac3b4bfa0cfd605d997f13318740 (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
# frozen_string_literal: true

RSpec.shared_examples 'Self-managed Core resource access tokens' do
  before do
    allow(::Gitlab).to receive(:com?).and_return(false)
  end

  context 'with owner access' do
    let(:current_user) { owner }

    context 'create resource access tokens' do
      it { is_expected.to be_allowed(:create_resource_access_tokens) }

      context 'when resource access token creation is not allowed' do
        let(:group) { create(:group) }
        let(:project) { create(:project, group: group) }

        before do
          group.namespace_settings.update_column(:resource_access_token_creation_allowed, false)
        end

        it { is_expected.not_to be_allowed(:create_resource_access_tokens) }
      end

      context 'when parent group has project access token creation disabled' do
        let(:parent) { create(:group) }
        let(:group) { create(:group, parent: parent) }
        let(:project) { create(:project, group: group) }

        before do
          parent.namespace_settings.update_column(:resource_access_token_creation_allowed, false)
        end

        it { is_expected.not_to be_allowed(:create_resource_access_tokens) }
      end

      context 'with a personal namespace project' do
        let(:namespace) { create(:namespace) }
        let(:project) { create(:project, namespace: namespace) }

        before do
          project.add_maintainer(current_user)
        end

        it { is_expected.to be_allowed(:create_resource_access_tokens) }
      end
    end

    context 'read resource access tokens' do
      it { is_expected.to be_allowed(:read_resource_access_tokens) }
    end

    context 'destroy resource access tokens' do
      it { is_expected.to be_allowed(:destroy_resource_access_tokens) }
    end
  end

  context 'with developer access' do
    let(:current_user) { developer }

    context 'create resource access tokens' do
      it { is_expected.not_to be_allowed(:create_resource_access_tokens) }
    end

    context 'read resource access tokens' do
      it { is_expected.not_to be_allowed(:read_resource_access_tokens) }
    end

    context 'destroy resource access tokens' do
      it { is_expected.not_to be_allowed(:destroy_resource_access_tokens) }
    end
  end
end