summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/github_import/sequential_importer_spec.rb
blob: 05d3243f80685fc0bcef565f8d3f40b52e33b686 (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
require 'spec_helper'

describe Gitlab::GithubImport::SequentialImporter do
  describe '#execute' do
    it 'imports a project in sequence' do
      repository = double(:repository)
      project = double(:project, id: 1, repository: repository)
      importer = described_class.new(project, token: 'foo')

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

      described_class::SEQUENTIAL_IMPORTERS.each do |klass|
        instance = double(:instance)

        expect(klass).to receive(:new)
          .with(project, importer.client)
          .and_return(instance)

        expect(instance).to receive(:execute)
      end

      described_class::PARALLEL_IMPORTERS.each do |klass|
        instance = double(:instance)

        expect(klass).to receive(:new)
          .with(project, importer.client, parallel: false)
          .and_return(instance)

        expect(instance).to receive(:execute)
      end

      expect(importer.execute).to eq(true)
    end
  end
end