2020-07-23 08:09:23 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe IncidentManagement::Incidents::CreateService do
|
|
|
|
let_it_be(:project) { create(:project) }
|
|
|
|
let_it_be(:user) { User.alert_bot }
|
2021-06-28 23:07:32 -04:00
|
|
|
|
2020-07-23 08:09:23 -04:00
|
|
|
let(:description) { 'Incident description' }
|
|
|
|
|
|
|
|
describe '#execute' do
|
|
|
|
subject(:create_incident) { described_class.new(project, user, title: title, description: description).execute }
|
|
|
|
|
|
|
|
context 'when incident has title and description' do
|
|
|
|
let(:title) { 'Incident title' }
|
|
|
|
let(:new_issue) { Issue.last! }
|
|
|
|
|
|
|
|
it 'responds with success' do
|
|
|
|
expect(create_incident).to be_success
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates an incident issue' do
|
|
|
|
expect { create_incident }.to change(Issue, :count).by(1)
|
|
|
|
end
|
|
|
|
|
2020-09-14 11:09:28 -04:00
|
|
|
it 'created issue has correct attributes', :aggregate_failures do
|
2020-07-23 08:09:23 -04:00
|
|
|
create_incident
|
2020-09-14 11:09:28 -04:00
|
|
|
|
|
|
|
expect(new_issue.title).to eq(title)
|
|
|
|
expect(new_issue.description).to eq(description)
|
|
|
|
expect(new_issue.author).to eq(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'incident issue' do
|
|
|
|
before do
|
|
|
|
create_incident
|
2020-07-29 05:09:33 -04:00
|
|
|
end
|
2020-09-14 11:09:28 -04:00
|
|
|
|
|
|
|
let(:issue) { new_issue }
|
2020-07-23 08:09:23 -04:00
|
|
|
end
|
|
|
|
|
2020-09-14 14:09:48 -04:00
|
|
|
context 'with default severity' do
|
|
|
|
it 'sets the correct severity level to "unknown"' do
|
|
|
|
create_incident
|
|
|
|
expect(new_issue.severity).to eq(IssuableSeverity::DEFAULT)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with severity' do
|
|
|
|
using RSpec::Parameterized::TableSyntax
|
|
|
|
|
|
|
|
subject(:create_incident) { described_class.new(project, user, title: title, description: description, severity: severity).execute }
|
|
|
|
|
|
|
|
where(:severity, :incident_severity) do
|
|
|
|
'critical' | 'critical'
|
|
|
|
'high' | 'high'
|
|
|
|
'medium' | 'medium'
|
|
|
|
'low' | 'low'
|
|
|
|
'unknown' | 'unknown'
|
|
|
|
end
|
|
|
|
|
|
|
|
with_them do
|
|
|
|
it 'sets the correct severity level' do
|
|
|
|
create_incident
|
|
|
|
expect(new_issue.severity).to eq(incident_severity)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-07-23 08:09:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when incident has no title' do
|
|
|
|
let(:title) { '' }
|
|
|
|
|
|
|
|
it 'does not create an issue' do
|
|
|
|
expect { create_incident }.not_to change(Issue, :count)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'responds with errors' do
|
|
|
|
expect(create_incident).to be_error
|
|
|
|
expect(create_incident.message).to eq("Title can't be blank")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'result payload contains an Issue object' do
|
|
|
|
expect(create_incident.payload[:issue]).to be_kind_of(Issue)
|
|
|
|
end
|
2022-02-08 10:12:33 -05:00
|
|
|
|
|
|
|
context 'with alert' do
|
|
|
|
let(:alert) { create(:alert_management_alert, project: project) }
|
|
|
|
|
|
|
|
subject(:create_incident) { described_class.new(project, user, title: title, description: description, alert: alert).execute }
|
|
|
|
|
|
|
|
it 'associates the alert with the incident' do
|
|
|
|
expect(create_incident[:issue].alert_management_alert).to eq(alert)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'the alert prevents the issue from saving' do
|
|
|
|
let(:alert) { create(:alert_management_alert, :with_validation_errors, project: project) }
|
|
|
|
|
|
|
|
it 'responds with errors' do
|
|
|
|
expect(create_incident).to be_error
|
|
|
|
expect(create_incident.message).to eq('Hosts hosts array is over 255 chars')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-07-23 08:09:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|