summaryrefslogtreecommitdiff
path: root/spec/workers/gitlab/github_import/stage/import_base_data_worker_spec.rb
blob: 8c80d660287cad96d3896040e5e074dcd8eba18c (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
require 'spec_helper'

describe Gitlab::GithubImport::Stage::ImportBaseDataWorker do
  let(:project) { create(:project) }
  let(:worker) { described_class.new }

  describe '#import' do
    it 'imports the base data of a project' do
      importer = double(:importer)
      client = double(:client)

      described_class::IMPORTERS.each do |klass|
        expect(klass)
          .to receive(:new)
          .with(project, client)
          .and_return(importer)

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

      expect(project).to receive(:refresh_import_jid_expiration)

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

      worker.import(client, project)
    end
  end
end