summaryrefslogtreecommitdiff
path: root/spec/services/system_notes/alert_management_service_spec.rb
blob: 4ebaa54534c64c65f3e3889f39a9cd48d1e6fe26 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ::SystemNotes::AlertManagementService do
  let_it_be(:author)   { create(:user) }
  let_it_be(:project)  { create(:project, :repository) }
  let_it_be(:noteable) { create(:alert_management_alert, :with_issue, :acknowledged, project: project) }

  describe '#create_new_alert' do
    subject { described_class.new(noteable: noteable, project: project).create_new_alert('Some Service') }

    it_behaves_like 'a system note' do
      let(:author) { User.alert_bot }
      let(:action) { 'new_alert_added' }
    end

    it 'has the appropriate message' do
      expect(subject.note).to eq('logged an alert from **Some Service**')
    end
  end

  describe '#change_alert_status' do
    subject { described_class.new(noteable: noteable, project: project, author: author).change_alert_status(noteable) }

    it_behaves_like 'a system note' do
      let(:action) { 'status' }
    end

    it 'has the appropriate message' do
      expect(subject.note).to eq("changed the status to **Acknowledged**")
    end
  end

  describe '#new_alert_issue' do
    let_it_be(:issue) { noteable.issue }

    subject { described_class.new(noteable: noteable, project: project, author: author).new_alert_issue(issue) }

    it_behaves_like 'a system note' do
      let(:action) { 'alert_issue_added' }
    end

    it 'has the appropriate message' do
      expect(subject.note).to eq("created issue #{issue.to_reference(project)} for this alert")
    end
  end

  describe '#closed_alert_issue' do
    let_it_be(:issue) { noteable.issue }

    subject { described_class.new(noteable: noteable, project: project, author: author).closed_alert_issue(issue) }

    it_behaves_like 'a system note' do
      let(:action) { 'status' }
    end

    it 'has the appropriate message' do
      expect(subject.note).to eq("changed the status to **Resolved** by closing issue #{issue.to_reference(project)}")
    end
  end
end