2019-12-26 22:10:19 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'Database config initializer' do
|
|
|
|
subject do
|
|
|
|
load Rails.root.join('config/initializers/database_config.rb')
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(ActiveRecord::Base).to receive(:establish_connection)
|
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
context "when using multi-threaded runtime" do
|
|
|
|
let(:max_threads) { 8 }
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
before do
|
2020-03-13 15:44:24 +05:30
|
|
|
allow(Gitlab::Runtime).to receive(:multi_threaded?).and_return(true)
|
|
|
|
allow(Gitlab::Runtime).to receive(:max_threads).and_return(max_threads)
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context "and no existing pool size is set" do
|
|
|
|
before do
|
|
|
|
stub_database_config(pool_size: nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "sets it to the max number of worker threads" do
|
2020-03-13 15:44:24 +05:30
|
|
|
expect { subject }.to change { Gitlab::Database.config['pool'] }.from(nil).to(max_threads)
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "and the existing pool size is smaller than the max number of worker threads" do
|
|
|
|
before do
|
2020-03-13 15:44:24 +05:30
|
|
|
stub_database_config(pool_size: max_threads - 1)
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "sets it to the max number of worker threads" do
|
2020-03-13 15:44:24 +05:30
|
|
|
expect { subject }.to change { Gitlab::Database.config['pool'] }.by(1)
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "and the existing pool size is larger than the max number of worker threads" do
|
|
|
|
before do
|
2020-03-13 15:44:24 +05:30
|
|
|
stub_database_config(pool_size: max_threads + 1)
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "keeps the configured pool size" do
|
|
|
|
expect { subject }.not_to change { Gitlab::Database.config['pool'] }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
context "when using single-threaded runtime" do
|
2019-12-26 22:10:19 +05:30
|
|
|
it "does nothing" do
|
|
|
|
expect { subject }.not_to change { Gitlab::Database.config['pool'] }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def stub_database_config(pool_size:)
|
|
|
|
config = {
|
|
|
|
'adapter' => 'postgresql',
|
|
|
|
'host' => 'db.host.com',
|
|
|
|
'pool' => pool_size
|
|
|
|
}.compact
|
|
|
|
|
|
|
|
allow(Gitlab::Database).to receive(:config).and_return(config)
|
|
|
|
end
|
|
|
|
end
|