a933deb802
The idle_timeout parameter is deprecated, use connection_recycle_time instead[1]. [1]https://review.opendev.org/#/c/334182/ Change-Id: I71d8829b17007a56d1310e401def7894f33f0e14 Depends-On: https://review.opendev.org/656106/ Closes-Bug: #1826692
64 lines
2.2 KiB
Ruby
64 lines
2.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::db' do
|
|
shared_examples 'cinder::db' do
|
|
context 'with default parameters' do
|
|
it { is_expected.to contain_class('cinder::deps') }
|
|
|
|
it { is_expected.to contain_oslo__db('cinder_config').with(
|
|
:db_max_retries => '<SERVICE DEFAULT>',
|
|
:connection => 'sqlite:////var/lib/cinder/cinder.sqlite',
|
|
:connection_recycle_time => '<SERVICE DEFAULT>',
|
|
:min_pool_size => '<SERVICE DEFAULT>',
|
|
:max_pool_size => '<SERVICE DEFAULT>',
|
|
:max_retries => '<SERVICE DEFAULT>',
|
|
:retry_interval => '<SERVICE DEFAULT>',
|
|
:max_overflow => '<SERVICE DEFAULT>',
|
|
:pool_timeout => '<SERVICE DEFAULT>',
|
|
)}
|
|
end
|
|
|
|
context 'with specific parameters' do
|
|
let :params do
|
|
{
|
|
:database_db_max_retries => '-1',
|
|
:database_connection => 'mysql+pymysql://cinder:cinder@localhost/cinder',
|
|
:database_connection_recycle_time => '3601',
|
|
:database_min_pool_size => '2',
|
|
:database_max_pool_size => '11',
|
|
:database_max_retries => '11',
|
|
:database_retry_interval => '11',
|
|
:database_max_overflow => '21',
|
|
:database_pool_timeout => '21',
|
|
}
|
|
end
|
|
|
|
it { is_expected.to contain_class('cinder::deps') }
|
|
|
|
it { is_expected.to contain_oslo__db('cinder_config').with(
|
|
:db_max_retries => '-1',
|
|
:connection => 'mysql+pymysql://cinder:cinder@localhost/cinder',
|
|
:connection_recycle_time => '3601',
|
|
:min_pool_size => '2',
|
|
:max_pool_size => '11',
|
|
:max_retries => '11',
|
|
:retry_interval => '11',
|
|
:max_overflow => '21',
|
|
:pool_timeout => '21',
|
|
)}
|
|
end
|
|
end
|
|
|
|
on_supported_os({
|
|
:supported_os => OSDefaults.get_supported_os
|
|
}).each do |os,facts|
|
|
context "on #{os}" do
|
|
let (:facts) do
|
|
facts.merge!(OSDefaults.get_facts())
|
|
end
|
|
|
|
it_behaves_like 'cinder::db'
|
|
end
|
|
end
|
|
end
|