debian-mirror-gitlab/spec/services/projects/alerting/notify_service_spec.rb

286 lines
10 KiB
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Projects::Alerting::NotifyService do
2020-11-24 15:15:51 +05:30
let_it_be_with_reload(:project) { create(:project, :repository) }
2020-03-13 15:44:24 +05:30
before do
2020-06-23 00:09:42 +05:30
allow(ProjectServiceWorker).to receive(:perform_async)
2020-03-13 15:44:24 +05:30
end
describe '#execute' do
let(:token) { 'invalid-token' }
2020-05-24 23:13:21 +05:30
let(:starts_at) { Time.current.change(usec: 0) }
2020-06-23 00:09:42 +05:30
let(:fingerprint) { 'testing' }
2021-02-22 17:27:13 +05:30
let(:service) { described_class.new(project, payload) }
2020-11-24 15:15:51 +05:30
let_it_be(:environment) { create(:environment, project: project) }
let(:environment) { create(:environment, project: project) }
let(:ended_at) { nil }
2020-03-13 15:44:24 +05:30
let(:payload_raw) do
{
2020-05-24 23:13:21 +05:30
title: 'alert title',
start_time: starts_at.rfc3339,
2020-11-24 15:15:51 +05:30
end_time: ended_at&.rfc3339,
2020-05-24 23:13:21 +05:30
severity: 'low',
monitoring_tool: 'GitLab RSpec',
service: 'GitLab Test Suite',
description: 'Very detailed description',
2020-06-23 00:09:42 +05:30
hosts: ['1.1.1.1', '2.2.2.2'],
2020-11-24 15:15:51 +05:30
fingerprint: fingerprint,
gitlab_environment_name: environment.name
2020-05-24 23:13:21 +05:30
}.with_indifferent_access
2020-03-13 15:44:24 +05:30
end
2020-10-24 23:57:45 +05:30
2020-03-13 15:44:24 +05:30
let(:payload) { ActionController::Parameters.new(payload_raw).permit! }
2021-01-29 00:20:46 +05:30
subject { service.execute(token, nil) }
2020-03-13 15:44:24 +05:30
2021-03-11 19:13:27 +05:30
shared_examples 'notifications are handled correctly' do
2020-03-13 15:44:24 +05:30
context 'with valid token' do
2021-01-29 00:20:46 +05:30
let(:token) { integration.token }
2020-11-24 15:15:51 +05:30
let(:incident_management_setting) { double(send_email?: email_enabled, create_issue?: issue_enabled, auto_close_incident?: auto_close_enabled) }
2020-04-08 14:13:33 +05:30
let(:email_enabled) { false }
let(:issue_enabled) { false }
2020-11-24 15:15:51 +05:30
let(:auto_close_enabled) { false }
2020-04-08 14:13:33 +05:30
before do
allow(service)
.to receive(:incident_management_setting)
.and_return(incident_management_setting)
end
2020-05-24 23:13:21 +05:30
context 'with valid payload' do
2020-07-28 23:09:34 +05:30
shared_examples 'assigns the alert properties' do
it 'ensure that created alert has all data properly assigned' do
subject
expect(last_alert_attributes).to match(
project_id: project.id,
title: payload_raw.fetch(:title),
started_at: Time.zone.parse(payload_raw.fetch(:start_time)),
severity: payload_raw.fetch(:severity),
2021-01-03 14:25:43 +05:30
status: AlertManagement::Alert.status_value(:triggered),
2020-07-28 23:09:34 +05:30
events: 1,
2021-02-22 17:27:13 +05:30
domain: 'operations',
2020-07-28 23:09:34 +05:30
hosts: payload_raw.fetch(:hosts),
payload: payload_raw.with_indifferent_access,
issue_id: nil,
description: payload_raw.fetch(:description),
monitoring_tool: payload_raw.fetch(:monitoring_tool),
service: payload_raw.fetch(:service),
fingerprint: Digest::SHA1.hexdigest(fingerprint),
2020-11-24 15:15:51 +05:30
environment_id: environment.id,
2020-07-28 23:09:34 +05:30
ended_at: nil,
2020-11-24 15:15:51 +05:30
prometheus_alert_id: nil
2020-07-28 23:09:34 +05:30
)
end
end
2020-05-24 23:13:21 +05:30
let(:last_alert_attributes) do
AlertManagement::Alert.last.attributes
.except('id', 'iid', 'created_at', 'updated_at')
.with_indifferent_access
end
2020-07-28 23:09:34 +05:30
it_behaves_like 'creates an alert management alert'
it_behaves_like 'assigns the alert properties'
2020-06-23 00:09:42 +05:30
2021-03-11 19:13:27 +05:30
it 'passes the integration to alert processing' do
expect(Gitlab::AlertManagement::Payload)
.to receive(:parse)
.with(project, payload.to_h, integration: integration)
.and_call_original
subject
end
2020-11-24 15:15:51 +05:30
it 'creates a system note corresponding to alert creation' do
expect { subject }.to change(Note, :count).by(1)
2021-01-03 14:25:43 +05:30
expect(Note.last.note).to include(payload_raw.fetch(:monitoring_tool))
2020-11-24 15:15:51 +05:30
end
2020-06-23 00:09:42 +05:30
context 'existing alert with same fingerprint' do
let(:fingerprint_sha) { Digest::SHA1.hexdigest(fingerprint) }
2020-07-28 23:09:34 +05:30
let!(:alert) { create(:alert_management_alert, project: project, fingerprint: fingerprint_sha) }
it_behaves_like 'adds an alert management alert event'
2020-11-24 15:15:51 +05:30
context 'end time given' do
let(:ended_at) { Time.current.change(nsec: 0) }
it 'does not resolve the alert' do
expect { subject }.not_to change { alert.reload.status }
end
it 'does not set the ended at' do
subject
expect(alert.reload.ended_at).to be_nil
end
it_behaves_like 'does not an create alert management alert'
2021-04-17 20:07:23 +05:30
it_behaves_like 'creates single system note based on the source of the alert'
2020-11-24 15:15:51 +05:30
context 'auto_close_enabled setting enabled' do
let(:auto_close_enabled) { true }
it 'resolves the alert and sets the end time', :aggregate_failures do
subject
alert.reload
expect(alert.resolved?).to eq(true)
expect(alert.ended_at).to eql(ended_at)
end
2021-04-17 20:07:23 +05:30
it_behaves_like 'creates status-change system note for an auto-resolved alert'
2020-11-24 15:15:51 +05:30
context 'related issue exists' do
let(:alert) { create(:alert_management_alert, :with_issue, project: project, fingerprint: fingerprint_sha) }
let(:issue) { alert.issue }
2021-01-03 14:25:43 +05:30
it { expect { subject }.to change { issue.reload.state }.from('opened').to('closed') }
it { expect { subject }.to change(ResourceStateEvent, :count).by(1) }
2020-11-24 15:15:51 +05:30
end
2021-01-29 00:20:46 +05:30
context 'with issue enabled' do
let(:issue_enabled) { true }
it_behaves_like 'does not process incident issues'
end
2020-11-24 15:15:51 +05:30
end
end
2020-07-28 23:09:34 +05:30
context 'existing alert is resolved' do
let!(:alert) { create(:alert_management_alert, :resolved, project: project, fingerprint: fingerprint_sha) }
2020-06-23 00:09:42 +05:30
2020-07-28 23:09:34 +05:30
it_behaves_like 'creates an alert management alert'
it_behaves_like 'assigns the alert properties'
2020-06-23 00:09:42 +05:30
end
2020-07-28 23:09:34 +05:30
context 'existing alert is ignored' do
let!(:alert) { create(:alert_management_alert, :ignored, project: project, fingerprint: fingerprint_sha) }
it_behaves_like 'adds an alert management alert event'
2020-06-23 00:09:42 +05:30
end
2020-07-28 23:09:34 +05:30
context 'two existing alerts, one resolved one open' do
let!(:resolved_existing_alert) { create(:alert_management_alert, :resolved, project: project, fingerprint: fingerprint_sha) }
let!(:alert) { create(:alert_management_alert, project: project, fingerprint: fingerprint_sha) }
2020-06-23 00:09:42 +05:30
2020-07-28 23:09:34 +05:30
it_behaves_like 'adds an alert management alert event'
2020-06-23 00:09:42 +05:30
end
end
2020-11-24 15:15:51 +05:30
context 'end time given' do
let(:ended_at) { Time.current }
it_behaves_like 'creates an alert management alert'
it_behaves_like 'assigns the alert properties'
end
2020-05-24 23:13:21 +05:30
context 'with a minimal payload' do
let(:payload_raw) do
{
title: 'alert title',
start_time: starts_at.rfc3339
}
end
2020-07-28 23:09:34 +05:30
it_behaves_like 'creates an alert management alert'
2020-05-24 23:13:21 +05:30
it 'created alert has all data properly assigned' do
subject
expect(last_alert_attributes).to match(
project_id: project.id,
title: payload_raw.fetch(:title),
started_at: Time.zone.parse(payload_raw.fetch(:start_time)),
severity: 'critical',
2021-01-03 14:25:43 +05:30
status: AlertManagement::Alert.status_value(:triggered),
2020-05-24 23:13:21 +05:30
events: 1,
hosts: [],
2021-02-22 17:27:13 +05:30
domain: 'operations',
2020-05-24 23:13:21 +05:30
payload: payload_raw.with_indifferent_access,
issue_id: nil,
description: nil,
monitoring_tool: nil,
service: nil,
fingerprint: nil,
2020-07-28 23:09:34 +05:30
ended_at: nil,
prometheus_alert_id: nil,
environment_id: nil
2020-05-24 23:13:21 +05:30
)
end
2021-01-03 14:25:43 +05:30
2021-04-17 20:07:23 +05:30
it_behaves_like 'creates single system note based on the source of the alert'
2020-05-24 23:13:21 +05:30
end
end
2020-11-24 15:15:51 +05:30
context 'with overlong payload' do
2021-01-03 14:25:43 +05:30
let(:deep_size_object) { instance_double(Gitlab::Utils::DeepSize, valid?: false) }
before do
allow(Gitlab::Utils::DeepSize).to receive(:new).and_return(deep_size_object)
2020-11-24 15:15:51 +05:30
end
it_behaves_like 'does not process incident issues due to error', http_status: :bad_request
it_behaves_like 'does not an create alert management alert'
end
2020-04-08 14:13:33 +05:30
it_behaves_like 'does not process incident issues'
context 'issue enabled' do
let(:issue_enabled) { true }
2020-03-13 15:44:24 +05:30
2020-06-23 00:09:42 +05:30
it_behaves_like 'processes incident issues'
2020-03-13 15:44:24 +05:30
2020-06-23 00:09:42 +05:30
context 'when alert already exists' do
let(:fingerprint_sha) { Digest::SHA1.hexdigest(fingerprint) }
2020-07-28 23:09:34 +05:30
let!(:alert) { create(:alert_management_alert, project: project, fingerprint: fingerprint_sha) }
2020-06-23 00:09:42 +05:30
context 'when existing alert does not have an associated issue' do
it_behaves_like 'processes incident issues'
end
context 'when existing alert has an associated issue' do
2020-07-28 23:09:34 +05:30
let!(:alert) { create(:alert_management_alert, :with_issue, project: project, fingerprint: fingerprint_sha) }
2020-06-23 00:09:42 +05:30
it_behaves_like 'does not process incident issues'
end
end
2020-04-08 14:13:33 +05:30
end
context 'with emails turned on' do
let(:email_enabled) { true }
2020-03-13 15:44:24 +05:30
2020-10-24 23:57:45 +05:30
it_behaves_like 'Alert Notification Service sends notification email'
2020-03-13 15:44:24 +05:30
end
end
context 'with invalid token' do
2020-04-22 19:07:51 +05:30
it_behaves_like 'does not process incident issues due to error', http_status: :unauthorized
2020-07-28 23:09:34 +05:30
it_behaves_like 'does not an create alert management alert'
2020-03-13 15:44:24 +05:30
end
2021-01-29 00:20:46 +05:30
end
context 'with an HTTP Integration' do
let_it_be_with_reload(:integration) { create(:alert_management_http_integration, project: project) }
subject { service.execute(token, integration) }
2021-03-11 19:13:27 +05:30
it_behaves_like 'notifications are handled correctly' do
2021-01-29 00:20:46 +05:30
let(:source) { integration.name }
end
2020-03-13 15:44:24 +05:30
2021-01-29 00:20:46 +05:30
context 'with deactivated HTTP Integration' do
2020-11-24 15:15:51 +05:30
before do
2021-01-29 00:20:46 +05:30
integration.update!(active: false)
2020-11-24 15:15:51 +05:30
end
2020-03-13 15:44:24 +05:30
2020-04-22 19:07:51 +05:30
it_behaves_like 'does not process incident issues due to error', http_status: :forbidden
2020-07-28 23:09:34 +05:30
it_behaves_like 'does not an create alert management alert'
2020-04-08 14:13:33 +05:30
end
2020-03-13 15:44:24 +05:30
end
end
end