2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe Projects::Alerting::NotificationsController do
|
2020-03-13 15:44:24 +05:30
|
|
|
let_it_be(:project) { create(:project) }
|
|
|
|
let_it_be(:environment) { create(:environment, project: project) }
|
2021-01-29 00:20:46 +05:30
|
|
|
let(:params) { project_params }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
describe 'POST #create' do
|
|
|
|
around do |example|
|
|
|
|
ForgeryProtection.with_forgery_protection { example.run }
|
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
shared_examples 'process alert payload' do |notify_service_class|
|
|
|
|
let(:service_response) { ServiceResponse.success }
|
|
|
|
let(:notify_service) { instance_double(notify_service_class, execute: service_response) }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
before do
|
|
|
|
allow(notify_service_class).to receive(:new).and_return(notify_service)
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
def make_request
|
2021-01-29 00:20:46 +05:30
|
|
|
post :create, params: params, body: payload.to_json, as: :json
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
context 'when notification service succeeds' do
|
|
|
|
let(:permitted_params) { ActionController::Parameters.new(payload).permit! }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
it 'responds with ok' do
|
|
|
|
make_request
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
it 'does not pass excluded parameters to the notify service' do
|
|
|
|
make_request
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
expect(notify_service_class)
|
|
|
|
.to have_received(:new)
|
2021-02-22 17:27:13 +05:30
|
|
|
.with(project, permitted_params)
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
context 'when notification service fails' do
|
|
|
|
let(:service_response) { ServiceResponse.error(message: 'Unauthorized', http_status: :unauthorized) }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
it 'responds with the service response' do
|
|
|
|
make_request
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
expect(response).to have_gitlab_http_status(:unauthorized)
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
context 'bearer token' do
|
|
|
|
context 'when set' do
|
2021-01-29 00:20:46 +05:30
|
|
|
context 'when extractable' do
|
|
|
|
before do
|
|
|
|
request.headers['HTTP_AUTHORIZATION'] = 'Bearer some token'
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
it 'extracts bearer token' do
|
|
|
|
expect(notify_service).to receive(:execute).with('some token', nil)
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
make_request
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a corresponding integration' do
|
|
|
|
context 'with integration parameters specified' do
|
|
|
|
let_it_be_with_reload(:integration) { create(:alert_management_http_integration, project: project) }
|
|
|
|
let(:params) { project_params(endpoint_identifier: integration.endpoint_identifier, name: integration.name) }
|
|
|
|
|
|
|
|
context 'the integration is active' do
|
|
|
|
it 'extracts and finds the integration' do
|
|
|
|
expect(notify_service).to receive(:execute).with('some token', integration)
|
|
|
|
|
|
|
|
make_request
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the integration is inactive' do
|
|
|
|
before do
|
|
|
|
integration.update!(active: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not find an integration' do
|
|
|
|
expect(notify_service).to receive(:execute).with('some token', nil)
|
|
|
|
|
|
|
|
make_request
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without integration parameters specified' do
|
|
|
|
let_it_be(:integration) { create(:alert_management_http_integration, :legacy, project: project) }
|
|
|
|
|
|
|
|
it 'extracts and finds the legacy integration' do
|
|
|
|
expect(notify_service).to receive(:execute).with('some token', integration)
|
|
|
|
|
|
|
|
make_request
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
context 'when inextractable' do
|
|
|
|
it 'passes nil for a non-bearer token' do
|
|
|
|
request.headers['HTTP_AUTHORIZATION'] = 'some token'
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
expect(notify_service).to receive(:execute).with(nil, nil)
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
make_request
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
context 'when missing' do
|
|
|
|
it 'passes nil' do
|
2021-01-29 00:20:46 +05:30
|
|
|
expect(notify_service).to receive(:execute).with(nil, nil)
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
make_request
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
|
|
|
|
context 'generic alert payload' do
|
|
|
|
it_behaves_like 'process alert payload', Projects::Alerting::NotifyService do
|
|
|
|
let(:payload) { { title: 'Alert title' } }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'Prometheus alert payload' do
|
|
|
|
include PrometheusHelpers
|
|
|
|
|
|
|
|
it_behaves_like 'process alert payload', Projects::Prometheus::Alerts::NotifyService do
|
|
|
|
let(:payload) { prometheus_alert_payload }
|
|
|
|
end
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
private
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
def project_params(opts = {})
|
|
|
|
opts.reverse_merge(namespace_id: project.namespace, project_id: project)
|
|
|
|
end
|
|
|
|
end
|