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

alert_notification_service_shared_examples.rb « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1568e4357a1fe759dd0be58af38a2adaeaad7aeb (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
# frozen_string_literal: true

RSpec.shared_examples 'Alert Notification Service sends notification email' do
  let(:notification_service) { spy }

  it 'sends a notification for firing alerts only' do
    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

RSpec.shared_examples 'Alert Notification Service sends no notifications' do |http_status:|
  let(:notification_service) { spy }
  let(:create_events_service) { spy }

  it 'does not notify' do
    expect(notification_service).not_to receive(:async)
    expect(create_events_service).not_to receive(:execute)

    expect(subject).to be_error
    expect(subject.http_status).to eq(http_status)
  end
end