2013-04-23 12:03:38 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'cinder::db::postgresql' do
|
|
|
|
|
|
|
|
let :req_params do
|
2014-12-30 18:00:58 +01:00
|
|
|
{ :password => 'pw' }
|
2013-04-23 12:03:38 -04:00
|
|
|
end
|
|
|
|
|
2014-12-30 18:00:58 +01:00
|
|
|
let :pre_condition do
|
|
|
|
'include postgresql::server'
|
2013-04-23 12:03:38 -04:00
|
|
|
end
|
|
|
|
|
2014-12-30 18:00:58 +01:00
|
|
|
context 'on a RedHat osfamily' do
|
|
|
|
let :facts do
|
|
|
|
{
|
|
|
|
:osfamily => 'RedHat',
|
|
|
|
:operatingsystemrelease => '7.0',
|
|
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
|
|
}
|
2013-04-23 12:03:38 -04:00
|
|
|
end
|
2014-12-30 18:00:58 +01:00
|
|
|
|
|
|
|
context 'with only required parameters' do
|
|
|
|
let :params do
|
|
|
|
req_params
|
|
|
|
end
|
|
|
|
|
2015-02-22 22:29:32 +01:00
|
|
|
it { is_expected.to contain_postgresql__server__db('cinder').with(
|
2014-12-30 18:00:58 +01:00
|
|
|
:user => 'cinder',
|
|
|
|
:password => 'md506736c3030793e09882cc536063d433f'
|
|
|
|
)}
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on a Debian osfamily' do
|
|
|
|
let :facts do
|
|
|
|
{
|
|
|
|
:operatingsystemrelease => '7.8',
|
|
|
|
:operatingsystem => 'Debian',
|
|
|
|
:osfamily => 'Debian',
|
|
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with only required parameters' do
|
|
|
|
let :params do
|
|
|
|
req_params
|
|
|
|
end
|
|
|
|
|
2015-02-22 22:29:32 +01:00
|
|
|
it { is_expected.to contain_postgresql__server__db('cinder').with(
|
2014-12-30 18:00:58 +01:00
|
|
|
:user => 'cinder',
|
|
|
|
:password => 'md506736c3030793e09882cc536063d433f'
|
|
|
|
)}
|
|
|
|
end
|
|
|
|
|
2013-04-23 12:03:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|