2015-11-05 16:07:28 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'magnum::db' do
|
|
|
|
|
|
|
|
shared_examples 'magnum::db' do
|
|
|
|
context 'with default parameters' do
|
2017-04-10 19:34:51 +08:00
|
|
|
it { is_expected.to contain_oslo__db('magnum_config').with(
|
|
|
|
:db_max_retries => '<SERVICE DEFAULT>',
|
2018-03-05 08:57:21 +08:00
|
|
|
:connection => 'mysql+pymysql://magnum:magnum@localhost:3306/magnum',
|
2017-04-10 19:34:51 +08:00
|
|
|
:idle_timeout => '<SERVICE DEFAULT>',
|
|
|
|
:min_pool_size => '<SERVICE DEFAULT>',
|
|
|
|
:max_pool_size => '<SERVICE DEFAULT>',
|
|
|
|
:max_retries => '<SERVICE DEFAULT>',
|
|
|
|
:retry_interval => '<SERVICE DEFAULT>',
|
|
|
|
:max_overflow => '<SERVICE DEFAULT>',
|
2018-03-22 11:09:50 +08:00
|
|
|
:pool_timeout => '<SERVICE DEFAULT>',
|
2017-04-10 19:34:51 +08:00
|
|
|
)}
|
2015-11-05 16:07:28 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'with specific parameters' do
|
|
|
|
let :params do
|
2018-03-05 08:57:21 +08:00
|
|
|
{ :database_connection => 'mysql+pymysql://magnum:magnum@localhost/magnum',
|
2015-11-05 16:07:28 +00:00
|
|
|
:database_idle_timeout => '3601',
|
|
|
|
:database_min_pool_size => '2',
|
|
|
|
:database_max_retries => '11',
|
|
|
|
:database_retry_interval => '11',
|
|
|
|
:database_max_pool_size => '11',
|
|
|
|
:database_max_overflow => '21',
|
2018-03-22 11:09:50 +08:00
|
|
|
:database_pool_timeout => '21',
|
2016-05-18 10:40:52 +08:00
|
|
|
:database_db_max_retries => '-1',
|
2015-11-05 16:07:28 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2017-04-10 19:34:51 +08:00
|
|
|
it { is_expected.to contain_oslo__db('magnum_config').with(
|
|
|
|
:db_max_retries => '-1',
|
2018-03-05 08:57:21 +08:00
|
|
|
:connection => 'mysql+pymysql://magnum:magnum@localhost/magnum',
|
2017-04-10 19:34:51 +08:00
|
|
|
:idle_timeout => '3601',
|
|
|
|
:min_pool_size => '2',
|
|
|
|
:max_pool_size => '11',
|
|
|
|
:max_retries => '11',
|
|
|
|
:retry_interval => '11',
|
|
|
|
:max_overflow => '21',
|
2018-03-22 11:09:50 +08:00
|
|
|
:pool_timeout => '21',
|
2017-04-10 19:34:51 +08:00
|
|
|
)}
|
2015-11-05 16:07:28 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'with postgresql backend' do
|
|
|
|
let :params do
|
2017-04-10 19:34:51 +08:00
|
|
|
{ :database_connection => 'postgresql://magnum:magnum@localhost/magnum', }
|
2015-11-05 16:07:28 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'install the proper backend package' do
|
|
|
|
is_expected.to contain_package('python-psycopg2').with(:ensure => 'present')
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with incorrect database_connection string' do
|
|
|
|
let :params do
|
2018-07-17 12:29:57 +02:00
|
|
|
{ :database_connection => 'invalid://magnum:magnum@localhost/magnum', }
|
2015-11-05 16:07:28 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it_raises 'a Puppet::Error', /validate_re/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-22 14:15:11 -07: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-11-05 16:07:28 +00:00
|
|
|
|
2016-04-22 14:15:11 -07:00
|
|
|
it_configures 'magnum::db'
|
2015-11-05 16:07:28 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|