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

relation_export_worker_spec.rb « bulk_imports « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63f1992d1863cb796d9e0232e44c1b4a176ab332 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe BulkImports::RelationExportWorker do
  let_it_be(:jid) { 'jid' }
  let_it_be(:relation) { 'labels' }
  let_it_be(:user) { create(:user) }
  let_it_be(:group) { create(:group) }

  let(:job_args) { [user.id, group.id, group.class.name, relation] }

  describe '#perform' do
    include_examples 'an idempotent worker' do
      context 'when export record does not exist' do
        let(:another_group) { create(:group) }
        let(:job_args) { [user.id, another_group.id, another_group.class.name, relation] }

        it 'creates export record' do
          another_group.add_owner(user)

          expect { perform_multiple(job_args) }
            .to change { another_group.bulk_import_exports.count }
            .from(0)
            .to(1)
        end
      end

      it 'executes RelationExportService' do
        group.add_owner(user)

        service = instance_double(BulkImports::RelationExportService)

        expect(BulkImports::RelationExportService)
          .to receive(:new)
          .with(user, group, relation, anything)
          .twice
          .and_return(service)
        expect(service)
          .to receive(:execute)
          .twice

        perform_multiple(job_args)
      end
    end
  end
end