summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/services/alert_management/alert_processing/incident_resolution_shared_examples.rb
blob: 132f1e0422e07fbaf70514dd52e8e8bde59f7fa7 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true

# Expects usage of 'incident settings enabled' context.
#
# This shared_example requires the following variables:
# - `alert`, alert for which related incidents should be closed
# - `project`, project of the alert
RSpec.shared_examples 'closes related incident if enabled' do
  context 'with issue' do
    before do
      alert.update!(issue: create(:issue, project: project))
    end

    it { expect { subject }.to change { alert.issue.reload.closed? }.from(false).to(true) }
    it { expect { subject }.to change(ResourceStateEvent, :count).by(1) }
  end

  context 'without issue' do
    it { expect { subject }.not_to change { alert.reload.issue } }
    it { expect { subject }.not_to change(ResourceStateEvent, :count) }
  end

  context 'with incident setting disabled' do
    let(:auto_close_incident) { false }

    it_behaves_like 'does not close related incident'
  end
end

RSpec.shared_examples 'does not close related incident' do
  context 'with issue' do
    before do
      alert.update!(issue: create(:issue, project: project))
    end

    it { expect { subject }.not_to change { alert.issue.reload.state } }
    it { expect { subject }.not_to change(ResourceStateEvent, :count) }
  end

  context 'without issue' do
    it { expect { subject }.not_to change { alert.reload.issue } }
    it { expect { subject }.not_to change(ResourceStateEvent, :count) }
  end
end