387a4f4b2c
We've already migrated all the legacy artifacts to the new realm, which is ci_job_artifacts table. It's time to remove the old code base that is no longer used.
63 lines
1.6 KiB
Ruby
63 lines
1.6 KiB
Ruby
require 'rake_helper'
|
|
|
|
describe 'gitlab:artifacts namespace rake task' do
|
|
before(:context) do
|
|
Rake.application.rake_require 'tasks/gitlab/artifacts/migrate'
|
|
end
|
|
|
|
let(:object_storage_enabled) { false }
|
|
|
|
before do
|
|
stub_artifacts_object_storage(enabled: object_storage_enabled)
|
|
end
|
|
|
|
subject { run_rake_task('gitlab:artifacts:migrate') }
|
|
|
|
context 'job artifacts' do
|
|
let!(:artifact) { create(:ci_job_artifact, :archive, file_store: store) }
|
|
|
|
context 'when local storage is used' do
|
|
let(:store) { ObjectStorage::Store::LOCAL }
|
|
|
|
context 'and job does not have file store defined' do
|
|
let(:object_storage_enabled) { true }
|
|
let(:store) { nil }
|
|
|
|
it "migrates file to remote storage" do
|
|
subject
|
|
|
|
expect(artifact.reload.file_store).to eq(ObjectStorage::Store::REMOTE)
|
|
end
|
|
end
|
|
|
|
context 'and remote storage is defined' do
|
|
let(:object_storage_enabled) { true }
|
|
|
|
it "migrates file to remote storage" do
|
|
subject
|
|
|
|
expect(artifact.reload.file_store).to eq(ObjectStorage::Store::REMOTE)
|
|
end
|
|
end
|
|
|
|
context 'and remote storage is not defined' do
|
|
it "fails to migrate to remote storage" do
|
|
subject
|
|
|
|
expect(artifact.reload.file_store).to eq(ObjectStorage::Store::LOCAL)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when remote storage is used' do
|
|
let(:object_storage_enabled) { true }
|
|
let(:store) { ObjectStorage::Store::REMOTE }
|
|
|
|
it "file stays on remote storage" do
|
|
subject
|
|
|
|
expect(artifact.reload.file_store).to eq(ObjectStorage::Store::REMOTE)
|
|
end
|
|
end
|
|
end
|
|
end
|