summaryrefslogtreecommitdiff
path: root/spec/workers/gitlab/github_import/stage/import_repository_worker_spec.rb
blob: 6d47d73b92eba1d606f674d7306ada5410902e60 (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
50
51
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::GithubImport::Stage::ImportRepositoryWorker do
  let(:project) { double(:project, id: 4) }
  let(:worker) { described_class.new }

  describe '#import' do
    before do
      expect(Gitlab::GithubImport::RefreshImportJidWorker)
        .to receive(:perform_in_the_future)
        .with(project.id, '123')

      expect(worker)
        .to receive(:jid)
        .and_return('123')
    end

    context 'when the import succeeds' do
      it 'schedules the importing of the base data' do
        client = double(:client)

        expect_any_instance_of(Gitlab::GithubImport::Importer::RepositoryImporter)
          .to receive(:execute)
          .and_return(true)

        expect(Gitlab::GithubImport::Stage::ImportBaseDataWorker)
          .to receive(:perform_async)
          .with(project.id)

        worker.import(client, project)
      end
    end

    context 'when the import fails' do
      it 'does not schedule the importing of the base data' do
        client = double(:client)

        expect_any_instance_of(Gitlab::GithubImport::Importer::RepositoryImporter)
          .to receive(:execute)
          .and_return(false)

        expect(Gitlab::GithubImport::Stage::ImportBaseDataWorker)
          .not_to receive(:perform_async)

        worker.import(client, project)
      end
    end
  end
end