
Remove code that is redundantly tested. This should not be tested here but in puppet-oslo where this logic resides. If we keep this and we do changes in puppet-oslo we will break these unit tests, this is something we need to sort out for all modules. Change-Id: I3ed2a61090a871fcbefc174713ff6d58cedebf1c
61 lines
1.8 KiB
Ruby
61 lines
1.8 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'trove::db' do
|
|
shared_examples 'trove::db' do
|
|
context 'with default parameters' do
|
|
it { should contain_class('trove::deps') }
|
|
|
|
it { should contain_oslo__db('trove_config').with(
|
|
:connection => 'sqlite:////var/lib/trove/trove.sqlite',
|
|
: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>',
|
|
:pool_timeout => '<SERVICE DEFAULT>',
|
|
)}
|
|
end
|
|
|
|
context 'with specific parameters' do
|
|
let :params do
|
|
{
|
|
:database_connection => 'mysql+pymysql://trove:trove@localhost/trove',
|
|
:database_idle_timeout => '3601',
|
|
:database_min_pool_size => '2',
|
|
:database_max_pool_size => '21',
|
|
:database_max_retries => '11',
|
|
:database_max_overflow => '21',
|
|
:database_pool_timeout => '21',
|
|
:database_retry_interval => '11',
|
|
}
|
|
end
|
|
|
|
it { should contain_class('trove::deps') }
|
|
|
|
it { should contain_oslo__db('trove_config').with(
|
|
:connection => 'mysql+pymysql://trove:trove@localhost/trove',
|
|
:idle_timeout => '3601',
|
|
:min_pool_size => '2',
|
|
:max_pool_size => '21',
|
|
: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 'trove::db'
|
|
end
|
|
end
|
|
end
|