summaryrefslogtreecommitdiff
path: root/spec/workers/new_note_worker_spec.rb
blob: 8fdbb35afd0d640b64283b0638c2d1cc7db85f29 (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 NewNoteWorker do
  context 'when Note found' do
    let(:note) { create(:note) }

    it "calls NotificationService#new_note" do
      expect_any_instance_of(NotificationService).to receive(:new_note).with(note)

      described_class.new.perform(note.id)
    end

    it "calls Notes::PostProcessService#execute" do
      notes_post_process_service = double(Notes::PostProcessService)
      allow(Notes::PostProcessService).to receive(:new).with(note) { notes_post_process_service }

      expect(notes_post_process_service).to receive(:execute)

      described_class.new.perform(note.id)
    end
  end

  context 'when Note not found' do
    let(:unexistent_note_id) { 999 }

    it 'logs NewNoteWorker process skipping' do
      expect(Rails.logger).to receive(:error).
        with("NewNoteWorker: couldn't find note with ID=999, skipping job")

      described_class.new.perform(unexistent_note_id)
    end

    it 'does not raise errors' do
      expect { described_class.new.perform(unexistent_note_id) }.not_to raise_error
    end

    it "does not call NotificationService#new_note" do
      expect_any_instance_of(NotificationService).not_to receive(:new_note)

      described_class.new.perform(unexistent_note_id)
    end

    it "does not call Notes::PostProcessService#execute" do
      expect_any_instance_of(Notes::PostProcessService).not_to receive(:execute)

      described_class.new.perform(unexistent_note_id)
    end
  end
end