2015-08-03 12:47:08 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'neutron::db' do
|
|
|
|
shared_examples 'neutron::db' do
|
|
|
|
context 'with default parameters' do
|
2018-11-28 17:43:42 +01:00
|
|
|
it { should contain_oslo__db('neutron_config').with(
|
2019-04-28 15:00:11 +08:00
|
|
|
:db_max_retries => '<SERVICE DEFAULT>',
|
|
|
|
:connection => 'sqlite:////var/lib/neutron/ovs.sqlite',
|
|
|
|
:connection_recycle_time => '<SERVICE DEFAULT>',
|
|
|
|
:max_pool_size => '<SERVICE DEFAULT>',
|
|
|
|
:max_retries => '<SERVICE DEFAULT>',
|
|
|
|
:retry_interval => '<SERVICE DEFAULT>',
|
|
|
|
:max_overflow => '<SERVICE DEFAULT>',
|
|
|
|
:pool_timeout => '<SERVICE DEFAULT>',
|
2020-08-26 11:53:17 +08:00
|
|
|
:mysql_enable_ndb => '<SERVICE DEFAULT>',
|
2017-04-10 19:57:06 +08:00
|
|
|
)}
|
2015-08-03 12:47:08 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'with specific parameters' do
|
|
|
|
let :params do
|
2018-11-28 17:43:42 +01:00
|
|
|
{
|
2019-04-28 15:00:11 +08:00
|
|
|
:database_connection => 'mysql+pymysql://neutron:neutron@localhost/neutron',
|
|
|
|
:database_connection_recycle_time => '3601',
|
|
|
|
:database_max_pool_size => '11',
|
|
|
|
:database_max_retries => '11',
|
|
|
|
:database_retry_interval => '11',
|
|
|
|
:database_db_max_retries => '-1',
|
|
|
|
:database_max_overflow => '21',
|
|
|
|
:database_pool_timeout => '21',
|
2020-08-26 11:53:17 +08:00
|
|
|
:mysql_enable_ndb => true,
|
2017-06-01 11:10:51 +08:00
|
|
|
}
|
2015-08-03 12:47:08 +02:00
|
|
|
end
|
|
|
|
|
2018-11-28 17:43:42 +01:00
|
|
|
it { should contain_oslo__db('neutron_config').with(
|
2019-04-28 15:00:11 +08:00
|
|
|
:db_max_retries => '-1',
|
|
|
|
:connection => 'mysql+pymysql://neutron:neutron@localhost/neutron',
|
|
|
|
:connection_recycle_time => '3601',
|
|
|
|
:max_pool_size => '11',
|
|
|
|
:max_retries => '11',
|
|
|
|
:retry_interval => '11',
|
|
|
|
:max_overflow => '21',
|
|
|
|
:pool_timeout => '21',
|
2020-08-26 11:53:17 +08:00
|
|
|
:mysql_enable_ndb => true,
|
2017-04-10 19:57:06 +08:00
|
|
|
)}
|
2015-11-13 17:51:26 +01:00
|
|
|
end
|
2015-08-03 12:47:08 +02:00
|
|
|
end
|
|
|
|
|
2018-11-28 17:43:42 +01:00
|
|
|
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
|
2015-08-03 12:47:08 +02:00
|
|
|
|
2018-11-28 17:43:42 +01:00
|
|
|
it_behaves_like 'neutron::db'
|
2015-11-13 17:51:26 +01:00
|
|
|
end
|
2015-08-03 12:47:08 +02:00
|
|
|
end
|
|
|
|
end
|