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:
Tobias Urdin 2019-01-18 10:05:21 +01:00
parent e2cad3594b
commit 758c0dd90e
1 changed files with 11 additions and 107 deletions

View File

@ -1,11 +1,11 @@
require 'spec_helper' require 'spec_helper'
describe 'aodh::db' do describe 'aodh::db' do
shared_examples 'aodh::db' do shared_examples 'aodh::db' do
context 'with default parameters' 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>', :db_max_retries => '<SERVICE DEFAULT>',
:connection => 'sqlite:////var/lib/aodh/aodh.sqlite', :connection => 'sqlite:////var/lib/aodh/aodh.sqlite',
:idle_timeout => '<SERVICE DEFAULT>', :idle_timeout => '<SERVICE DEFAULT>',
@ -16,12 +16,12 @@ describe 'aodh::db' do
:max_overflow => '<SERVICE DEFAULT>', :max_overflow => '<SERVICE DEFAULT>',
:pool_timeout => '<SERVICE DEFAULT>', :pool_timeout => '<SERVICE DEFAULT>',
)} )}
end end
context 'with specific parameters' do context 'with specific parameters' do
let :params do let :params do
{ :database_db_max_retries => '-1', {
:database_db_max_retries => '-1',
:database_connection => 'mysql+pymysql://aodh:aodh@localhost/aodh', :database_connection => 'mysql+pymysql://aodh:aodh@localhost/aodh',
:slave_connection => 'mysql+pymysql://aodh:aodh@localhost2/aodh', :slave_connection => 'mysql+pymysql://aodh:aodh@localhost2/aodh',
:database_idle_timeout => '3601', :database_idle_timeout => '3601',
@ -33,7 +33,10 @@ describe 'aodh::db' do
:database_pool_timeout => '21', :database_pool_timeout => '21',
} }
end 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', :db_max_retries => '-1',
:connection => 'mysql+pymysql://aodh:aodh@localhost/aodh', :connection => 'mysql+pymysql://aodh:aodh@localhost/aodh',
:slave_connection => 'mysql+pymysql://aodh:aodh@localhost2/aodh', :slave_connection => 'mysql+pymysql://aodh:aodh@localhost2/aodh',
@ -45,117 +48,18 @@ describe 'aodh::db' do
:max_overflow => '21', :max_overflow => '21',
:pool_timeout => '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
end end
on_supported_os({ on_supported_os({
:supported_os => OSDefaults.get_supported_os :supported_os => OSDefaults.get_supported_os
}).each do |os,facts| }).each do |os,facts|
context "on #{os}" do context "on #{os}" do
let (:facts) do let (:facts) do
facts.merge!(OSDefaults.get_facts()) facts.merge!(OSDefaults.get_facts())
end end
case facts[:osfamily] it_behaves_like 'aodh::db'
when 'Debian'
it_configures 'aodh::db on Debian'
when 'RedHat'
it_configures 'aodh::db on RedHat'
end
it_configures 'aodh::db'
end end
end end
end end