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

common_system_notes_service_spec.rb « issuable « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f92b662be1f8cf63961dc27b40459c0794fe5be (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
require 'spec_helper'

describe Issuable::CommonSystemNotesService do
  let(:user) { create(:user) }
  let(:project) { create(:project) }
  let(:issuable) { create(:issue) }

  shared_examples 'system note creation' do |update_params, note_text|
    subject { described_class.new(project, user).execute(issuable, [])}

    before do
      issuable.assign_attributes(update_params)
      issuable.save
    end

    it 'creates 1 system note with the correct content' do
      expect { subject }.to change { Note.count }.from(0).to(1)

      note = Note.last
      expect(note.note).to match(note_text)
      expect(note.noteable_type).to eq('Issue')
    end
  end

  describe '#execute' do
    it_behaves_like 'system note creation', { title: 'New title' }, 'changed title'
    it_behaves_like 'system note creation', { description: 'New description' }, 'changed the description'
    it_behaves_like 'system note creation', { discussion_locked: true }, 'locked this issue'
    it_behaves_like 'system note creation', { time_estimate: 5 }, 'changed time estimate'

    context 'when new label is added' do
      before do
        label = create(:label, project: project)
        issuable.labels << label
      end

      it_behaves_like 'system note creation', {}, /added ~\w+ label/
    end

    context 'when new milestone is assigned' do
      before do
        milestone = create(:milestone, project: project)
        issuable.milestone_id = milestone.id
      end

      it_behaves_like 'system note creation', {}, 'changed milestone'
    end
  end
end