debian-mirror-gitlab/spec/support/shared_examples/alert_notification_service_shared_examples.rb

30 lines
775 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
RSpec.shared_examples 'Alert Notification Service sends notification email' do
let(:notification_service) { spy }
2021-03-11 19:13:27 +05:30
it 'sends a notification' do
2020-10-24 23:57:45 +05:30
expect(NotificationService)
.to receive(:new)
.and_return(notification_service)
expect(notification_service)
.to receive_message_chain(:async, :prometheus_alerts_fired)
expect(subject).to be_success
end
end
2021-03-11 19:13:27 +05:30
RSpec.shared_examples 'Alert Notification Service sends no notifications' do |http_status: nil|
2020-10-24 23:57:45 +05:30
it 'does not notify' do
2021-03-11 19:13:27 +05:30
expect(NotificationService).not_to receive(:new)
2020-10-24 23:57:45 +05:30
2021-03-11 19:13:27 +05:30
if http_status.present?
expect(subject).to be_error
expect(subject.http_status).to eq(http_status)
else
expect(subject).to be_success
end
2020-10-24 23:57:45 +05:30
end
end