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

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

require 'spec_helper'

RSpec.describe IncidentManagement::AddSeveritySystemNoteWorker do
  let_it_be(:project) { create(:project) }
  let_it_be(:user) { create(:user) }
  let_it_be(:incident) { create(:incident, project: project) }
  let_it_be(:issuable_severity) { create(:issuable_severity, issue: incident, severity: :medium) }

  describe '#perform' do
    let(:incident_id) { incident.id }
    let(:user_id) { user.id }

    subject(:perform) { described_class.new.perform(incident_id, user_id) }

    shared_examples 'does not add a system note' do
      it 'does not change incident notes count' do
        expect { perform }.not_to change { incident.notes.count }
      end
    end

    context 'when incident and user exist' do
      it 'creates a system note' do
        expect { perform }.to change { incident.notes.where(author: user).count }.by(1)
      end
    end

    context 'when incident does not exist' do
      let(:incident_id) { -1 }

      it_behaves_like 'does not add a system note'
    end

    context 'when incident_id is nil' do
      let(:incident_id) { nil }

      it_behaves_like 'does not add a system note'
    end

    context 'when issue is not an incident' do
      let_it_be(:issue) { create(:issue, project: project) }

      let(:incident_id) { issue.id }

      it_behaves_like 'does not add a system note'
    end

    context 'when user does not exist' do
      let(:user_id) { -1 }

      it_behaves_like 'does not add a system note'
    end

    context 'when user_id is nil' do
      let(:user_id) { nil }

      it_behaves_like 'does not add a system note'
    end
  end
end