debian-mirror-gitlab/spec/workers/background_migration_worker_spec.rb

87 lines
2.2 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
require 'spec_helper'
2020-03-13 15:44:24 +05:30
describe BackgroundMigrationWorker, :clean_gitlab_redis_shared_state do
2018-03-17 18:26:18 +05:30
let(:worker) { described_class.new }
2018-11-18 11:00:15 +05:30
describe '.minimum_interval' do
it 'returns 2 minutes' do
expect(described_class.minimum_interval).to eq(2.minutes.to_i)
end
end
2020-04-08 14:13:33 +05:30
describe '#perform' do
2017-09-10 17:25:29 +05:30
it 'performs a background migration' do
expect(Gitlab::BackgroundMigration)
.to receive(:perform)
.with('Foo', [10, 20])
2018-03-17 18:26:18 +05:30
worker.perform('Foo', [10, 20])
2017-09-10 17:25:29 +05:30
end
2018-03-17 18:26:18 +05:30
it 'reschedules a migration if it was performed recently' do
expect(worker)
.to receive(:always_perform?)
.and_return(false)
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
worker.lease_for('Foo').try_obtain
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
expect(Gitlab::BackgroundMigration)
.not_to receive(:perform)
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
expect(described_class)
.to receive(:perform_in)
.with(a_kind_of(Numeric), 'Foo', [10, 20])
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
worker.perform('Foo', [10, 20])
2017-09-10 17:25:29 +05:30
end
2018-11-18 11:00:15 +05:30
it 'reschedules a migration if the database is not healthy' do
allow(worker)
.to receive(:always_perform?)
.and_return(false)
allow(worker)
.to receive(:healthy_database?)
.and_return(false)
expect(described_class)
.to receive(:perform_in)
.with(a_kind_of(Numeric), 'Foo', [10, 20])
worker.perform('Foo', [10, 20])
end
2020-04-08 14:13:33 +05:30
it 'sets the class that will be executed as the caller_id' do
expect(Gitlab::BackgroundMigration).to receive(:perform) do
expect(Labkit::Context.current.to_h).to include('meta.caller_id' => 'Foo')
end
worker.perform('Foo', [10, 20])
end
2018-11-18 11:00:15 +05:30
end
describe '#healthy_database?' do
2019-10-12 21:52:04 +05:30
context 'when replication lag is too great' do
it 'returns false' do
allow(Postgresql::ReplicationSlot)
.to receive(:lag_too_great?)
.and_return(true)
2018-11-18 11:00:15 +05:30
2019-10-12 21:52:04 +05:30
expect(worker.healthy_database?).to eq(false)
2018-11-18 11:00:15 +05:30
end
context 'when replication lag is small enough' do
it 'returns true' do
allow(Postgresql::ReplicationSlot)
.to receive(:lag_too_great?)
.and_return(false)
expect(worker.healthy_database?).to eq(true)
end
end
end
2017-09-10 17:25:29 +05:30
end
end