2016-12-21 12:31:30 -05:00
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
require Rails.root.join('db', 'post_migrate', '20161221153951_rename_reserved_project_names.rb')
|
|
|
|
|
2018-02-12 09:32:37 -05:00
|
|
|
# This migration is using factories, which set fields that don't actually
|
|
|
|
# exist in the DB schema previous to 20161221153951. Thus we just use the
|
|
|
|
# latest schema when testing this migration.
|
|
|
|
# This is ok-ish because:
|
|
|
|
# 1. This migration is a data migration
|
|
|
|
# 2. It only relies on very stable DB fields: routes.id, routes.path, namespaces.id, projects.namespace_id
|
|
|
|
# Ideally, the test should not use factories and rely on the `table` helper instead.
|
|
|
|
describe RenameReservedProjectNames, :migration, schema: :latest do
|
2016-12-21 12:31:30 -05:00
|
|
|
let(:migration) { described_class.new }
|
2018-03-30 11:18:44 -04:00
|
|
|
let!(:project) { create(:project) } # rubocop:disable RSpec/FactoriesInMigrationSpecs
|
2016-12-21 12:31:30 -05:00
|
|
|
|
|
|
|
before do
|
|
|
|
project.path = 'projects'
|
|
|
|
project.save!(validate: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#up' do
|
|
|
|
context 'when project repository exists' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
project.create_repository
|
|
|
|
end
|
2016-12-21 12:31:30 -05:00
|
|
|
|
|
|
|
context 'when no exception is raised' do
|
|
|
|
it 'renames project with reserved names' do
|
|
|
|
migration.up
|
|
|
|
|
|
|
|
expect(project.reload.path).to eq('projects0')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when exception is raised during rename' do
|
|
|
|
before do
|
2018-10-17 07:33:54 -04:00
|
|
|
service = instance_double('service')
|
|
|
|
|
|
|
|
allow(service)
|
|
|
|
.to receive(:execute)
|
|
|
|
.and_raise(Projects::AfterRenameService::RenameFailedError)
|
|
|
|
|
2019-01-21 22:33:32 -05:00
|
|
|
expect(migration)
|
|
|
|
.to receive(:after_rename_service)
|
2018-10-17 07:33:54 -04:00
|
|
|
.and_return(service)
|
2016-12-21 12:31:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'captures exception from project rename' do
|
|
|
|
expect { migration.up }.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when project repository does not exist' do
|
|
|
|
it 'does not raise error' do
|
|
|
|
expect { migration.up }.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|