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

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

  describe '#import' do
    it 'imports all the lfs objects' do
      importer = double(:importer)
      waiter = Gitlab::JobWaiter.new(2, '123')

      expect(Gitlab::GithubImport::Importer::LfsObjectsImporter)
        .to receive(:new)
        .with(project, nil)
        .and_return(importer)

      expect(importer)
        .to receive(:execute)
        .and_return(waiter)

      expect(Gitlab::GithubImport::AdvanceStageWorker)
        .to receive(:perform_async)
        .with(project.id, { '123' => 2 }, :finish)

      worker.import(project)
    end
  end
end