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

timeline_event_spec.rb « incident_management « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d288cc1a75d578afc0dfef2c2a1f5ec618e615ce (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe IncidentManagement::TimelineEvent do
  let_it_be(:project) { create(:project) }
  let_it_be(:incident) { create(:incident, project: project) }
  let_it_be(:timeline_event) { create(:incident_management_timeline_event, project: project, incident: incident) }

  describe 'associations' do
    it { is_expected.to belong_to(:project) }
    it { is_expected.to belong_to(:author) }
    it { is_expected.to belong_to(:incident) }
    it { is_expected.to belong_to(:updated_by_user) }
    it { is_expected.to belong_to(:promoted_from_note) }
    it { is_expected.to have_many(:timeline_event_tag_links).class_name('IncidentManagement::TimelineEventTagLink') }

    it do
      is_expected.to have_many(:timeline_event_tags)
      .class_name('IncidentManagement::TimelineEventTag').through(:timeline_event_tag_links)
    end
  end

  describe 'validations' do
    subject { build(:incident_management_timeline_event) }

    it { is_expected.to validate_presence_of(:project) }
    it { is_expected.to validate_presence_of(:incident) }
    it { is_expected.to validate_presence_of(:note) }
    it { is_expected.to validate_length_of(:note).is_at_most(10_000) }
    it { is_expected.to validate_length_of(:note_html).is_at_most(10_000) }
    it { is_expected.to validate_presence_of(:occurred_at) }
    it { is_expected.to validate_presence_of(:action) }
    it { is_expected.to validate_length_of(:action).is_at_most(128) }
  end

  describe '.order_occurred_at_asc_id_asc' do
    let_it_be(:occurred_3mins_ago) do
      create(:incident_management_timeline_event, project: project, occurred_at: 3.minutes.ago)
    end

    let_it_be(:occurred_2mins_ago) do
      create(:incident_management_timeline_event, project: project, occurred_at: 2.minutes.ago)
    end

    subject(:order) { described_class.order_occurred_at_asc_id_asc }

    it 'sorts timeline events by occurred_at' do
      is_expected.to eq([occurred_3mins_ago, occurred_2mins_ago, timeline_event])
    end

    context 'when two events occured at the same time' do
      let_it_be(:also_occurred_2mins_ago) do
        create(:incident_management_timeline_event, project: project, occurred_at: occurred_2mins_ago.occurred_at)
      end

      it 'sorts timeline events by occurred_at then sorts by id' do
        occurred_2mins_ago.touch # Interact with record of earlier id to switch default DB ordering

        is_expected.to eq([occurred_3mins_ago, occurred_2mins_ago, also_occurred_2mins_ago, timeline_event])
      end
    end
  end

  describe '#cache_markdown_field' do
    let(:note) { 'note **bold** _italic_ `code` ![image](/path/img.png) :+1:👍' }

    let(:expected_image_html) do
      '<a class="with-attachment-icon" href="/path/img.png" target="_blank" rel="noopener noreferrer">image</a>'
    end

    # rubocop:disable Layout/LineLength
    let(:expected_emoji_html) do
      '<gl-emoji title="thumbs up sign" data-name="thumbsup" data-unicode-version="6.0">👍</gl-emoji><gl-emoji title="thumbs up sign" data-name="thumbsup" data-unicode-version="6.0">👍</gl-emoji>'
    end

    let(:expected_note_html) do
      %Q(<p>note <strong>bold</strong> <em>italic</em> <code>code</code> #{expected_image_html} #{expected_emoji_html}</p>)
    end
    # rubocop:enable Layout/LineLength

    before do
      allow(Banzai::Renderer).to receive(:cacheless_render_field).and_call_original
    end

    context 'on create' do
      let(:timeline_event) do
        build(:incident_management_timeline_event, project: project, incident: incident, note: note)
      end

      it 'updates note_html', :aggregate_failures do
        expect(Banzai::Renderer).to receive(:cacheless_render_field)
          .with(timeline_event, :note, { skip_project_check: false })

        expect { timeline_event.save! }.to change { timeline_event.note_html }.to(expected_note_html)
      end
    end

    context 'on update' do
      let(:timeline_event) { create(:incident_management_timeline_event, project: project, incident: incident) }

      it 'updates note_html', :aggregate_failures do
        expect(Banzai::Renderer).to receive(:cacheless_render_field)
          .with(timeline_event, :note, { skip_project_check: false })

        expect { timeline_event.update!(note: note) }.to change { timeline_event.note_html }.to(expected_note_html)
      end
    end
  end
end