summaryrefslogtreecommitdiff
path: root/spec/workers/create_note_diff_file_worker_spec.rb
blob: 6d1d6d93e44f5fcaa52684b5e2d535414a425e1b (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe CreateNoteDiffFileWorker do
  describe '#perform' do
    let(:diff_note) { create(:diff_note_on_merge_request) }

    it 'creates diff file' do
      diff_note.note_diff_file.destroy!

      expect_any_instance_of(DiffNote).to receive(:create_diff_file)
        .and_call_original

      described_class.new.perform(diff_note.id)
    end

    context "when the supplied diff_note_id doesn't belong to an existing DiffNote" do
      it "returns nil without raising an error" do
        expect_any_instance_of(DiffNote).not_to receive(:create_diff_file)
        .and_call_original

        described_class.new.perform(non_existing_record_id)
      end
    end

    context "when called with a missing diff_note id" do
      it "returns nil without creating diff file" do
        expect_any_instance_of(DiffNote).not_to receive(:create_diff_file)
        .and_call_original

        described_class.new.perform(nil)
      end
    end
  end
end