Remove redundantly tested code
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: I946583c1f348e57d1738d30db7f48ccf80e27e48
This commit is contained in:
parent
e2cad3594b
commit
758c0dd90e
@ -1,11 +1,11 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'aodh::db' do
|
||||
|
||||
shared_examples 'aodh::db' do
|
||||
|
||||
context 'with default parameters' do
|
||||
it { is_expected.to contain_oslo__db('aodh_config').with(
|
||||
it { should contain_class('aodh::deps') }
|
||||
|
||||
it { should contain_oslo__db('aodh_config').with(
|
||||
:db_max_retries => '<SERVICE DEFAULT>',
|
||||
:connection => 'sqlite:////var/lib/aodh/aodh.sqlite',
|
||||
:idle_timeout => '<SERVICE DEFAULT>',
|
||||
@ -16,12 +16,12 @@ describe 'aodh::db' do
|
||||
:max_overflow => '<SERVICE DEFAULT>',
|
||||
:pool_timeout => '<SERVICE DEFAULT>',
|
||||
)}
|
||||
|
||||
end
|
||||
|
||||
context 'with specific parameters' do
|
||||
let :params do
|
||||
{ :database_db_max_retries => '-1',
|
||||
{
|
||||
:database_db_max_retries => '-1',
|
||||
:database_connection => 'mysql+pymysql://aodh:aodh@localhost/aodh',
|
||||
:slave_connection => 'mysql+pymysql://aodh:aodh@localhost2/aodh',
|
||||
:database_idle_timeout => '3601',
|
||||
@ -33,7 +33,10 @@ describe 'aodh::db' do
|
||||
:database_pool_timeout => '21',
|
||||
}
|
||||
end
|
||||
it { is_expected.to contain_oslo__db('aodh_config').with(
|
||||
|
||||
it { should contain_class('aodh::deps') }
|
||||
|
||||
it { should contain_oslo__db('aodh_config').with(
|
||||
:db_max_retries => '-1',
|
||||
:connection => 'mysql+pymysql://aodh:aodh@localhost/aodh',
|
||||
:slave_connection => 'mysql+pymysql://aodh:aodh@localhost2/aodh',
|
||||
@ -45,117 +48,18 @@ describe 'aodh::db' do
|
||||
:max_overflow => '21',
|
||||
:pool_timeout => '21',
|
||||
)}
|
||||
|
||||
end
|
||||
|
||||
context 'with postgresql backend' do
|
||||
let :params do
|
||||
{ :database_connection => 'postgresql://localhost:1234/aodh', }
|
||||
end
|
||||
|
||||
it 'install the proper backend package' do
|
||||
is_expected.to contain_package('python-psycopg2').with(:ensure => 'present')
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
context 'with MySQL-python library as backend package' do
|
||||
let :params do
|
||||
{ :database_connection => 'mysql://aodh:aodh@localhost/aodh', }
|
||||
end
|
||||
|
||||
it { is_expected.to contain_package('python-mysqldb').with(:ensure => 'present') }
|
||||
end
|
||||
|
||||
context 'with mongodb backend' do
|
||||
let :params do
|
||||
{ :database_connection => 'mongodb://localhost:1234/aodh', }
|
||||
end
|
||||
|
||||
it 'installs python-mongodb package' do
|
||||
is_expected.to contain_package('python-pymongo').with(
|
||||
:ensure => 'present',
|
||||
:name => 'python-pymongo',
|
||||
:tag => 'openstack'
|
||||
)
|
||||
is_expected.to contain_oslo__db('aodh_config').with(
|
||||
:connection => 'mongodb://localhost:1234/aodh',
|
||||
)
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
context 'with incorrect database_connection string' do
|
||||
let :params do
|
||||
{ :database_connection => 'redis://aodh:aodh@localhost/aodh', }
|
||||
end
|
||||
|
||||
it_raises 'a Puppet::Error', /validate_re/
|
||||
end
|
||||
|
||||
context 'with incorrect pymysql database_connection string' do
|
||||
let :params do
|
||||
{ :database_connection => 'foo+pymysql://aodh:aodh@localhost/aodh', }
|
||||
end
|
||||
|
||||
it_raises 'a Puppet::Error', /validate_re/
|
||||
end
|
||||
end
|
||||
|
||||
shared_examples_for 'aodh::db on Debian' do
|
||||
context 'with sqlite backend' do
|
||||
let :params do
|
||||
{ :database_connection => 'sqlite:///var/lib/aodh/aodh.sqlite', }
|
||||
end
|
||||
|
||||
it 'install the proper backend package' do
|
||||
is_expected.to contain_package('python-pysqlite2').with(
|
||||
:ensure => 'present',
|
||||
:name => 'python-pysqlite2',
|
||||
:tag => 'openstack'
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
context 'using pymysql driver' do
|
||||
let :params do
|
||||
{ :database_connection => 'mysql+pymysql://aodh:aodh@localhost/aodh', }
|
||||
end
|
||||
|
||||
it 'install the proper backend package' do
|
||||
is_expected.to contain_package('python-pymysql').with(
|
||||
:ensure => 'present',
|
||||
:name => 'python-pymysql',
|
||||
:tag => 'openstack'
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
shared_examples_for 'aodh::db on RedHat' do
|
||||
context 'using pymysql driver' do
|
||||
let :params do
|
||||
{ :database_connection => 'mysql+pymysql://aodh:aodh@localhost/aodh', }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
on_supported_os({
|
||||
:supported_os => OSDefaults.get_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
|
||||
|
||||
case facts[:osfamily]
|
||||
when 'Debian'
|
||||
it_configures 'aodh::db on Debian'
|
||||
when 'RedHat'
|
||||
it_configures 'aodh::db on RedHat'
|
||||
end
|
||||
it_configures 'aodh::db'
|
||||
it_behaves_like 'aodh::db'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user