summaryrefslogtreecommitdiff
path: root/spec/graphql/mutations/ci/job_token_scope/remove_project_spec.rb
blob: 7fb45e934744918091edf760af1fa431db6aae43 (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
81
82
83
84
85
86
87
88
89
90
# frozen_string_literal: true
require 'spec_helper'

RSpec.describe Mutations::Ci::JobTokenScope::RemoveProject, feature_category: :continuous_integration do
  let(:mutation) do
    described_class.new(object: nil, context: { current_user: current_user }, field: nil)
  end

  describe '#resolve' do
    let_it_be(:project) { create(:project, ci_outbound_job_token_scope_enabled: true).tap(&:save!) }
    let_it_be(:target_project) { create(:project) }

    let_it_be(:link) do
      create(:ci_job_token_project_scope_link,
        source_project: project,
        target_project: target_project)
    end

    let(:target_project_path) { target_project.full_path }
    let(:links_relation) { Ci::JobToken::ProjectScopeLink.with_source(project).with_target(target_project) }

    subject do
      mutation.resolve(project_path: project.full_path, target_project_path: target_project_path)
    end

    context 'when user is not logged in' do
      let(:current_user) { nil }

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

    context 'when user is logged in' do
      let(:current_user) { create(:user) }

      context 'when user does not have permissions to admin project' do
        it 'raises error' do
          expect { subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
        end
      end

      context 'when user has permissions to admin project and read target project' do
        before do
          project.add_maintainer(current_user)
          target_project.add_guest(current_user)
        end

        context 'with no direction specified' do
          it 'defaults to removing an outbound link to the target project' do
            expect do
              expect(subject).to include(ci_job_token_scope: be_present, errors: be_empty)
            end.to change { Ci::JobToken::ProjectScopeLink.count }.by(-1)

            expect(links_relation.outbound.reload).to be_empty
          end
        end

        context 'with direction specified' do
          let(:service) { instance_double('Ci::JobTokenScope::RemoveProjectService') }

          subject do
            mutation.resolve(project_path: project.full_path, target_project_path: target_project_path, direction: 'inbound')
          end

          it 'executes project removal for the correct direction' do
            expect(::Ci::JobTokenScope::RemoveProjectService)
              .to receive(:new).with(project, current_user).and_return(service)
            expect(service).to receive(:execute).with(target_project, direction: 'inbound')
              .and_return(instance_double('ServiceResponse', "success?": true))

            subject
          end
        end

        context 'when the service returns an error' do
          let(:service) { instance_double('Ci::JobTokenScope::RemoveProjectService') }

          it 'returns an error response' do
            expect(::Ci::JobTokenScope::RemoveProjectService).to receive(:new).with(project, current_user).and_return(service)
            expect(service).to receive(:execute).with(target_project, direction: :outbound).and_return(ServiceResponse.error(message: 'The error message'))

            expect(subject.fetch(:ci_job_token_scope)).to be_nil
            expect(subject.fetch(:errors)).to include("The error message")
          end
        end
      end
    end
  end
end