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: I103f127b7fd56590099fec69b88387ddf72b9fcd
This commit is contained in:
parent
4140826105
commit
87e09a5454
@ -1,10 +1,11 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'panko::db' do
|
||||
|
||||
shared_examples 'panko::db' do
|
||||
context 'with default parameters' do
|
||||
it { is_expected.to contain_oslo__db('panko_config').with(
|
||||
it { should contain_class('panko::deps') }
|
||||
|
||||
it { should contain_oslo__db('panko_config').with(
|
||||
:db_max_retries => '<SERVICE DEFAULT>',
|
||||
:connection => 'sqlite:////var/lib/panko/panko.sqlite',
|
||||
:idle_timeout => '<SERVICE DEFAULT>',
|
||||
@ -31,7 +32,9 @@ describe 'panko::db' do
|
||||
}
|
||||
end
|
||||
|
||||
it { is_expected.to contain_oslo__db('panko_config').with(
|
||||
it { should contain_class('panko::deps') }
|
||||
|
||||
it { should contain_oslo__db('panko_config').with(
|
||||
:db_max_retries => '-1',
|
||||
:connection => 'mysql+pymysql://panko:panko@localhost/panko',
|
||||
:idle_timeout => '3601',
|
||||
@ -43,67 +46,6 @@ describe 'panko::db' do
|
||||
:pool_timeout => '21',
|
||||
)}
|
||||
end
|
||||
|
||||
context 'with postgresql backend' do
|
||||
let :params do
|
||||
{ :database_connection => 'postgresql://panko:panko@localhost/panko', }
|
||||
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://panko:panko@localhost/panko', }
|
||||
end
|
||||
|
||||
it { is_expected.to contain_package('python-mysqldb').with(:ensure => 'present') }
|
||||
end
|
||||
|
||||
context 'with incorrect database_connection string' do
|
||||
let :params do
|
||||
{ :database_connection => 'foodb://panko:panko@localhost/panko', }
|
||||
end
|
||||
|
||||
it_raises 'a Puppet::Error', /validate_re/
|
||||
end
|
||||
|
||||
context 'with incorrect pymysql database_connection string' do
|
||||
let :params do
|
||||
{ :database_connection => 'foo+pymysql://panko:panko@localhost/panko', }
|
||||
end
|
||||
|
||||
it_raises 'a Puppet::Error', /validate_re/
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
shared_examples_for 'panko::db on Debian' do
|
||||
context 'using pymysql driver' do
|
||||
let :params do
|
||||
{ :database_connection => 'mysql+pymysql://panko:panko@localhost/panko', }
|
||||
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 'panko::db on RedHat' do
|
||||
context 'using pymysql driver' do
|
||||
let :params do
|
||||
{ :database_connection => 'mysql+pymysql://panko:panko@localhost/panko', }
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
on_supported_os({
|
||||
@ -114,8 +56,7 @@ describe 'panko::db' do
|
||||
facts.merge!(OSDefaults.get_facts())
|
||||
end
|
||||
|
||||
it_configures 'panko::db'
|
||||
it_configures "panko::db on #{facts[:osfamily]}"
|
||||
it_behaves_like 'panko::db'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user