BigW Consortium Gitlab

lfs_object_uploader_spec.rb 963 Bytes
Newer Older
1 2 3
require 'spec_helper'

describe LfsObjectUploader do
4 5 6
  let(:lfs_object) { create(:lfs_object, :with_file) }
  let(:uploader) { described_class.new(lfs_object) }
  let(:path) { Gitlab.config.lfs.storage_path }
7 8 9 10 11 12 13 14 15 16 17 18

  describe '#move_to_cache' do
    it 'is true' do
      expect(uploader.move_to_cache).to eq(true)
    end
  end

  describe '#move_to_store' do
    it 'is true' do
      expect(uploader.move_to_store).to eq(true)
    end
  end
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39

  describe '#store_dir' do
    subject { uploader.store_dir }

    it { is_expected.to start_with(path) }
    it { is_expected.to end_with("#{lfs_object.oid[0, 2]}/#{lfs_object.oid[2, 2]}") }
  end

  describe '#cache_dir' do
    subject { uploader.cache_dir }

    it { is_expected.to start_with(path) }
    it { is_expected.to end_with('/tmp/cache') }
  end

  describe '#work_dir' do
    subject { uploader.work_dir }

    it { is_expected.to start_with(path) }
    it { is_expected.to end_with('/tmp/work') }
  end
40
end