Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/workers/loose_foreign_keys/cleanup_worker_spec.rb')
-rw-r--r--spec/workers/loose_foreign_keys/cleanup_worker_spec.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/spec/workers/loose_foreign_keys/cleanup_worker_spec.rb b/spec/workers/loose_foreign_keys/cleanup_worker_spec.rb
index 3c628d036ff..497f95cf34d 100644
--- a/spec/workers/loose_foreign_keys/cleanup_worker_spec.rb
+++ b/spec/workers/loose_foreign_keys/cleanup_worker_spec.rb
@@ -4,6 +4,7 @@ require 'spec_helper'
RSpec.describe LooseForeignKeys::CleanupWorker do
include MigrationsHelpers
+ using RSpec::Parameterized::TableSyntax
def create_table_structure
migration = ActiveRecord::Migration.new.extend(Gitlab::Database::MigrationHelpers::LooseForeignKeyHelpers)
@@ -149,4 +150,31 @@ RSpec.describe LooseForeignKeys::CleanupWorker do
expect { described_class.new.perform }.not_to change { LooseForeignKeys::DeletedRecord.status_processed.count }
end
end
+
+ describe 'multi-database support' do
+ where(:current_minute, :configured_base_models, :expected_connection) do
+ 2 | { main: ApplicationRecord, ci: Ci::ApplicationRecord } | ApplicationRecord.connection
+ 3 | { main: ApplicationRecord, ci: Ci::ApplicationRecord } | Ci::ApplicationRecord.connection
+ 2 | { main: ApplicationRecord } | ApplicationRecord.connection
+ 3 | { main: ApplicationRecord } | ApplicationRecord.connection
+ end
+
+ with_them do
+ before do
+ allow(Gitlab::Database).to receive(:database_base_models).and_return(configured_base_models)
+ end
+
+ it 'uses the correct connection' do
+ LooseForeignKeys::DeletedRecord.count.times do
+ expect_next_found_instance_of(LooseForeignKeys::DeletedRecord) do |instance|
+ expect(instance.class.connection).to eq(expected_connection)
+ end
+ end
+
+ travel_to DateTime.new(2019, 1, 1, 10, current_minute) do
+ described_class.new.perform
+ end
+ end
+ end
+ end
end