2017-09-10 17:25:29 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
require Rails.root.join('db', 'post_migrate', '20170502101023_cleanup_namespaceless_pending_delete_projects.rb')
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
describe CleanupNamespacelessPendingDeleteProjects, :migration, schema: 20180222043024 do
|
2019-03-02 22:35:43 +05:30
|
|
|
let(:projects) { table(:projects) }
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
|
|
|
# Stub after_save callbacks that will fail when Project has no namespace
|
2018-03-17 18:26:18 +05:30
|
|
|
allow_any_instance_of(Project).to receive(:ensure_storage_path_exists).and_return(nil)
|
2017-09-10 17:25:29 +05:30
|
|
|
allow_any_instance_of(Project).to receive(:update_project_statistics).and_return(nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#up' do
|
|
|
|
it 'only cleans up pending delete projects' do
|
2019-03-02 22:35:43 +05:30
|
|
|
projects.create!(name: 'gitlab', path: 'gitlab-org/gitlab-ce', namespace_id: 1)
|
|
|
|
projects.create!(name: 'gitlab', path: 'gitlab-org/gitlab-ee', namespace_id: 2, pending_delete: true)
|
|
|
|
project = Project.new(pending_delete: true, namespace_id: nil)
|
2017-09-10 17:25:29 +05:30
|
|
|
project.save(validate: false)
|
|
|
|
|
|
|
|
expect(NamespacelessProjectDestroyWorker).to receive(:bulk_perform_async).with([[project.id]])
|
|
|
|
|
|
|
|
described_class.new.up
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does nothing when no pending delete projects without namespace found' do
|
2019-03-02 22:35:43 +05:30
|
|
|
projects.create!(name: 'gitlab', path: 'gitlab-org/gitlab-ce', namespace_id: 1)
|
|
|
|
projects.create!(name: 'gitlab', path: 'gitlab-org/gitlab-ee', namespace_id: 2, pending_delete: true)
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
expect(NamespacelessProjectDestroyWorker).not_to receive(:bulk_perform_async)
|
|
|
|
|
|
|
|
described_class.new.up
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|