Steal stages statuses migration

This commit is contained in:
Grzegorz Bizon 2017-09-12 13:52:25 +02:00
parent bff004d44b
commit 9106975d3c
2 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,15 @@
class CleanStagesStatusesMigration < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
Gitlab::BackgroundMigration.steal('MigrateStageStatus')
end
def down
# noop
end
end

View File

@ -0,0 +1,35 @@
require 'spec_helper'
require Rails.root.join('db', 'migrate', '20170912113435_clean_stages_statuses_migration.rb')
describe CleanStagesStatusesMigration, :migration, :sidekiq, :redis do
let(:migration) { spy('migration') }
before do
allow(Gitlab::BackgroundMigration::MigrateStageStatus)
.to receive(:new).and_return(migration)
end
context 'when there are pending background migrations' do
it 'processes pending jobs synchronously' do
Sidekiq::Testing.disable! do
BackgroundMigrationWorker
.perform_in(2.minutes, 'MigrateStageStatus', [1, 1])
BackgroundMigrationWorker
.perform_async('MigrateStageStatus', [1, 1])
migrate!
expect(migration).to have_received(:perform).with(1, 1).twice
end
end
end
context 'when there are no background migrations pending' do
it 'does nothing' do
Sidekiq::Testing.disable! do
migrate!
expect(migration).not_to have_received(:perform)
end
end
end
end