fafba49337
This patch switches Murano to use $::os_service_default fact as default value for params instead of using deplicated defaults from project Change-Id: Ie5d669bffd34dc77191155623fab466481aede34 Related-bug: #1515273
79 lines
3.0 KiB
Ruby
79 lines
3.0 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'murano::db' do
|
|
|
|
shared_examples 'murano::db' do
|
|
context 'with default parameters' do
|
|
it { is_expected.to contain_murano_config('database/connection').with_value('mysql://murano:secrete@localhost:3306/murano') }
|
|
it { is_expected.to contain_murano_config('database/idle_timeout').with_value('<SERVICE DEFAULT>') }
|
|
it { is_expected.to contain_murano_config('database/min_pool_size').with_value('<SERVICE DEFAULT>') }
|
|
it { is_expected.to contain_murano_config('database/max_retries').with_value('<SERVICE DEFAULT>') }
|
|
it { is_expected.to contain_murano_config('database/retry_interval').with_value('<SERVICE DEFAULT>') }
|
|
it { is_expected.to contain_murano_config('database/max_pool_size').with_value('<SERVICE DEFAULT>') }
|
|
it { is_expected.to contain_murano_config('database/max_overflow').with_value('<SERVICE DEFAULT>') }
|
|
end
|
|
|
|
context 'with specific parameters' do
|
|
let :params do
|
|
{ :database_connection => 'mysql://murano:murano@localhost/murano',
|
|
: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',
|
|
}
|
|
end
|
|
|
|
it { is_expected.to contain_murano_config('database/connection').with_value('mysql://murano:murano@localhost/murano') }
|
|
it { is_expected.to contain_murano_config('database/idle_timeout').with_value('3601') }
|
|
it { is_expected.to contain_murano_config('database/min_pool_size').with_value('2') }
|
|
it { is_expected.to contain_murano_config('database/max_retries').with_value('11') }
|
|
it { is_expected.to contain_murano_config('database/retry_interval').with_value('11') }
|
|
it { is_expected.to contain_murano_config('database/max_pool_size').with_value('11') }
|
|
it { is_expected.to contain_murano_config('database/max_overflow').with_value('21') }
|
|
end
|
|
|
|
context 'with postgresql backend' do
|
|
let :params do
|
|
{ :database_connection => 'postgresql://murano:murano@localhost/murano', }
|
|
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
|
|
{ :database_connection => 'sqlite://murano:murano@localhost/murano', }
|
|
end
|
|
|
|
it_raises 'a Puppet::Error', /validate_re/
|
|
end
|
|
end
|
|
|
|
context 'on Debian platforms' do
|
|
let :facts do
|
|
@default_facts.merge({ :osfamily => 'Debian',
|
|
:operatingsystem => 'Debian',
|
|
:operatingsystemrelease => 'jessie',
|
|
})
|
|
end
|
|
|
|
it_configures 'murano::db'
|
|
end
|
|
|
|
context 'on Redhat platforms' do
|
|
let :facts do
|
|
@default_facts.merge({ :osfamily => 'RedHat',
|
|
:operatingsystemrelease => '7.1',
|
|
})
|
|
end
|
|
|
|
it_configures 'murano::db'
|
|
end
|
|
|
|
end
|