require 'spec_helper' IDENTIFIER = %r{\h+/\S+} describe NamespaceFileUploader do let(:group) { build_stubbed(:group) } let(:uploader) { described_class.new(group) } let(:upload) { create(:upload, :namespace_upload, model: group) } subject { uploader } it_behaves_like 'builds correct paths', store_dir: %r[uploads/-/system/namespace/\d+], upload_path: IDENTIFIER, absolute_path: %r[#{CarrierWave.root}/uploads/-/system/namespace/\d+/#{IDENTIFIER}] context "object_store is REMOTE" do before do stub_uploads_object_storage end include_context 'with storage', described_class::Store::REMOTE it_behaves_like 'builds correct paths', store_dir: %r[namespace/\d+/\h+], upload_path: IDENTIFIER end context '.base_dir' do it 'returns local storage base_dir without store param' do expect(described_class.base_dir(group)).to eq("uploads/-/system/namespace/#{group.id}") end it 'returns local storage base_dir when store param is Store::LOCAL' do expect(described_class.base_dir(group, ObjectStorage::Store::LOCAL)).to eq("uploads/-/system/namespace/#{group.id}") end it 'returns remote base_dir when store param is Store::REMOTE' do expect(described_class.base_dir(group, ObjectStorage::Store::REMOTE)).to eq("namespace/#{group.id}") end end describe '#workhorse_local_upload_path' do it 'returns the correct path in uploads directory' do expect(described_class.workhorse_local_upload_path).to end_with('/uploads/tmp/uploads') end end describe "#migrate!" do before do uploader.store!(fixture_file_upload(File.join('spec/fixtures/doc_sample.txt'))) stub_uploads_object_storage end it_behaves_like "migrates", to_store: described_class::Store::REMOTE it_behaves_like "migrates", from_store: described_class::Store::REMOTE, to_store: described_class::Store::LOCAL end end