gitlab-ce/spec/uploaders/pages/deployment_uploader_spec.rb

63 lines
1.7 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Pages::DeploymentUploader, feature_category: :pages do
let(:pages_deployment) { create(:pages_deployment) }
let(:uploader) { described_class.new(pages_deployment, :file) }
let(:file) do
fixture_file_upload("spec/fixtures/pages.zip")
end
subject { uploader }
it_behaves_like "builds correct paths",
store_dir: %r[/\h{2}/\h{2}/\h{64}/pages_deployments/\d+],
cache_dir: %r{pages/@hashed/tmp/cache},
work_dir: %r{pages/@hashed/tmp/work}
context 'when object store is REMOTE' do
before do
stub_pages_object_storage
end
describe '.default_store' do
it 'returns remote store when object storage is enabled' do
expect(described_class.default_store).to eq(ObjectStorage::Store::REMOTE)
end
end
it 'preserves original file when stores it' do
uploader.store!(file)
expect(File.exist?(file.path)).to be true
end
it_behaves_like 'builds correct paths',
store_dir: %r[\A\h{2}/\h{2}/\h{64}/pages_deployments/\d+\z]
end
context 'when file is stored in valid local_path' do
describe '.default_store' do
it 'returns local store when object storage is not enabled' do
expect(described_class.default_store).to eq(ObjectStorage::Store::LOCAL)
end
end
it 'builds the right file path' do
uploader.store!(file)
expect(uploader.file.path).to match(
%r[#{uploader.root}/@hashed/\h{2}/\h{2}/\h{64}/pages_deployments/#{pages_deployment.id}/pages.zip]
)
end
it 'preserves original file when stores it' do
uploader.store!(file)
expect(File.exist?(file.path)).to be true
end
end
end