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

create_alert_issue_spec.rb « alert_management « mutations « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47ee338ad346a4e9d91ad28bb67e21e054bdeb8c (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Mutations::AlertManagement::CreateAlertIssue do
  let_it_be(:current_user) { create(:user) }
  let_it_be(:project) { create(:project) }
  let_it_be(:alert) { create(:alert_management_alert, project: project, status: 'triggered') }
  let(:args) { { project_path: project.full_path, iid: alert.iid } }

  specify { expect(described_class).to require_graphql_authorizations(:update_alert_management_alert) }

  describe '#resolve' do
    subject(:resolve) { mutation_for(project, current_user).resolve(args) }

    context 'user has access to project' do
      before do
        project.add_developer(current_user)
      end

      context 'when CreateAlertIssueService responds with success' do
        it 'returns the issue with no errors' do
          expect(resolve).to eq(
            alert: alert.reload,
            issue: Issue.last!,
            errors: []
          )
        end

        it_behaves_like 'an incident management tracked event', :incident_management_incident_created
        it_behaves_like 'an incident management tracked event', :incident_management_alert_create_incident
      end

      context 'when CreateAlertIssue responds with an error' do
        before do
          allow_any_instance_of(::AlertManagement::CreateAlertIssueService)
            .to receive(:execute)
            .and_return(ServiceResponse.error(payload: { issue: nil }, message: 'An issue already exists'))
        end

        it 'returns errors' do
          expect(resolve).to eq(
            alert: alert,
            issue: nil,
            errors: ['An issue already exists']
          )
        end
      end
    end

    context 'when resource is not accessible to the user' do
      it 'raises an error if the resource is not accessible to the user' do
        expect { subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
      end
    end
  end

  private

  def mutation_for(project, user)
    described_class.new(object: project, context: { current_user: user }, field: nil)
  end
end