4653e8e027
Add mysql_enable_ndb parameter to select mysql storage engine. Change-Id: Id2e3858bbdc04dbad3e6157a5e1f67dfcdea12e8 Depends-On: https://review.opendev.org/#/c/748067 Closes-Bug: #1892952
60 lines
2.1 KiB
Ruby
60 lines
2.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'neutron::db' do
|
|
shared_examples 'neutron::db' do
|
|
context 'with default parameters' do
|
|
it { should contain_oslo__db('neutron_config').with(
|
|
: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>',
|
|
:mysql_enable_ndb => '<SERVICE DEFAULT>',
|
|
)}
|
|
end
|
|
|
|
context 'with specific parameters' do
|
|
let :params do
|
|
{
|
|
: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',
|
|
:mysql_enable_ndb => true,
|
|
}
|
|
end
|
|
|
|
it { should contain_oslo__db('neutron_config').with(
|
|
: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',
|
|
:mysql_enable_ndb => true,
|
|
)}
|
|
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 'neutron::db'
|
|
end
|
|
end
|
|
end
|