summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/graphql/mutations/merge_requests/permission_check_shared_examples.rb
blob: 1ddbad1cea77d6f98b3a6955a61fac1b8c8fda77 (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 'permission level for merge request mutation is correctly verified' do
  before do
    merge_request.assignees = []
    merge_request.reviewers = []
    merge_request.author = nil
  end

  shared_examples_for 'when the user does not have access to the resource' do |raise_for_assigned|
    it 'raises an error' do
      expect { subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
    end

    context 'even if assigned to the merge request' do
      before do
        merge_request.assignees.push(user)
      end

      it 'does not modify merge request' do
        if raise_for_assigned
          expect { subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
        else
          # In some cases we simply do nothing instead of raising
          # https://gitlab.com/gitlab-org/gitlab/-/issues/196241
          expect(subject[:merge_request]).to eq merge_request
        end
      end
    end

    context 'even if reviewer of the merge request' do
      before do
        merge_request.reviewers.push(user)
      end

      it 'raises an error' do
        expect { subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
      end
    end

    context 'even if author of the merge request' do
      before do
        merge_request.author = user
      end

      it 'raises an error' do
        expect { subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
      end
    end
  end

  context 'when the user is not a project member' do
    it_behaves_like 'when the user does not have access to the resource', true
  end

  context 'when the user is a project member' do
    context 'with guest role' do
      before do
        merge_request.project.add_guest(user)
      end

      it_behaves_like 'when the user does not have access to the resource', true
    end

    context 'with reporter role' do
      before do
        merge_request.project.add_reporter(user)
      end

      it_behaves_like 'when the user does not have access to the resource', false
    end
  end
end