summaryrefslogtreecommitdiff
path: root/spec/support/database_load_balancing.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/database_load_balancing.rb')
-rw-r--r--spec/support/database_load_balancing.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/support/database_load_balancing.rb b/spec/support/database_load_balancing.rb
new file mode 100644
index 00000000000..03fa7886295
--- /dev/null
+++ b/spec/support/database_load_balancing.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+RSpec.configure do |config|
+ config.before(:each, :db_load_balancing) do
+ allow(Gitlab::Database::LoadBalancing).to receive(:enable?).and_return(true)
+
+ proxy = ::Gitlab::Database::LoadBalancing::ConnectionProxy.new([Gitlab::Database.main.config['host']])
+
+ allow(ActiveRecord::Base).to receive(:load_balancing_proxy).and_return(proxy)
+
+ ::Gitlab::Database::LoadBalancing::Session.clear_session
+ redis_shared_state_cleanup!
+ end
+
+ config.after(:each, :db_load_balancing) do
+ ::Gitlab::Database::LoadBalancing::Session.clear_session
+ redis_shared_state_cleanup!
+ end
+end