debian-mirror-gitlab/spec/initializers/database_config_spec.rb

71 lines
1.7 KiB
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe 'Database config initializer' do
2019-12-26 22:10:19 +05:30
subject do
load Rails.root.join('config/initializers/database_config.rb')
end
2021-09-04 01:27:46 +05:30
around do |example|
original_config = ActiveRecord::Base.connection_db_config
example.run
ActiveRecord::Base.establish_connection(original_config)
end
2019-12-26 22:10:19 +05:30
before do
2020-10-24 23:57:45 +05:30
allow(Gitlab::Runtime).to receive(:max_threads).and_return(max_threads)
2019-12-26 22:10:19 +05:30
end
2020-10-24 23:57:45 +05:30
let(:max_threads) { 8 }
2019-12-26 22:10:19 +05:30
2021-10-27 15:23:28 +05:30
it 'retains the correct database name for the connection' do
previous_db_name = Gitlab::Database.main.scope.connection.pool.db_config.name
2019-12-26 22:10:19 +05:30
2021-10-27 15:23:28 +05:30
subject
2021-09-04 01:27:46 +05:30
2021-10-27 15:23:28 +05:30
expect(Gitlab::Database.main.scope.connection.pool.db_config.name).to eq(previous_db_name)
2020-10-24 23:57:45 +05:30
end
2019-12-26 22:10:19 +05:30
2021-10-27 15:23:28 +05:30
context 'when no custom headroom is specified' do
it 'sets the pool size based on the number of worker threads' do
old = ActiveRecord::Base.connection_db_config.pool
2019-12-26 22:10:19 +05:30
2021-10-27 15:23:28 +05:30
expect(old).not_to eq(18)
2021-09-04 01:27:46 +05:30
2021-10-27 15:23:28 +05:30
expect { subject }
.to change { ActiveRecord::Base.connection_db_config.pool }
.from(old)
.to(18)
2020-10-24 23:57:45 +05:30
end
2019-12-26 22:10:19 +05:30
2021-10-27 15:23:28 +05:30
it 'overwrites custom pool settings' do
config = Gitlab::Database.main.config.merge(pool: 42)
2020-06-23 00:09:42 +05:30
2021-10-27 15:23:28 +05:30
allow(Gitlab::Database.main).to receive(:config).and_return(config)
subject
2021-09-04 01:27:46 +05:30
expect(ActiveRecord::Base.connection_db_config.pool).to eq(18)
2020-10-24 23:57:45 +05:30
end
end
2020-06-23 00:09:42 +05:30
2020-10-24 23:57:45 +05:30
context "when specifying headroom through an ENV variable" do
let(:headroom) { 15 }
2020-06-23 00:09:42 +05:30
2020-10-24 23:57:45 +05:30
before do
stub_env("DB_POOL_HEADROOM", headroom)
2020-06-23 00:09:42 +05:30
end
2019-12-26 22:10:19 +05:30
2020-10-24 23:57:45 +05:30
it "adds headroom on top of the calculated size" do
2021-10-27 15:23:28 +05:30
old = ActiveRecord::Base.connection_db_config.pool
2021-09-04 01:27:46 +05:30
2021-10-27 15:23:28 +05:30
expect { subject }
.to change { ActiveRecord::Base.connection_db_config.pool }
.from(old)
.to(23)
2019-12-26 22:10:19 +05:30
end
end
end