summaryrefslogtreecommitdiff
path: root/spec/lib/bulk_imports/importers/groups_importer_spec.rb
blob: 4865034b0cdeb5bf5e76b1bf54788934032bfc6c (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 BulkImports::Importers::GroupsImporter do
  let_it_be(:bulk_import) { create(:bulk_import) }

  subject { described_class.new(bulk_import.id) }

  describe '#execute' do
    context "when there is entities to be imported" do
      let!(:bulk_import_entity) { create(:bulk_import_entity, bulk_import: bulk_import) }

      it "starts the bulk_import and imports its entities" do
        expect(BulkImports::Importers::GroupImporter).to receive(:new)
          .with(bulk_import_entity).and_return(double(execute: true))
        expect(BulkImportWorker).to receive(:perform_async).with(bulk_import.id)

        subject.execute

        expect(bulk_import.reload).to be_started
      end
    end

    context "when there is no entities to be imported" do
      it "starts the bulk_import and imports its entities" do
        expect(BulkImports::Importers::GroupImporter).not_to receive(:new)
        expect(BulkImportWorker).not_to receive(:perform_async)

        subject.execute

        expect(bulk_import.reload).to be_finished
      end
    end
  end
end