Test multiple operating systems for barbican::db::postgresql

Change-Id: Ia04c644949cc7998d7f42d28563a9a4747c76e74
This commit is contained in:
ZhongShengping 2016-04-30 09:27:58 +08:00
parent 62a96ddad0
commit de308f1e63
1 changed files with 16 additions and 32 deletions

View File

@ -2,21 +2,13 @@ require 'spec_helper'
describe 'barbican::db::postgresql' do
let :req_params do
{ :password => 'pw' }
end
shared_examples_for 'barbican::db::postgresql' do
let :req_params do
{ :password => 'pw' }
end
let :pre_condition do
'include postgresql::server'
end
context 'on a RedHat osfamily' do
let :facts do
@default_facts.merge({
:osfamily => 'RedHat',
:operatingsystemrelease => '7.0',
:concat_basedir => '/var/lib/puppet/concat'
})
let :pre_condition do
'include postgresql::server'
end
context 'with only required parameters' do
@ -32,27 +24,19 @@ describe 'barbican::db::postgresql' do
end
context 'on a Debian osfamily' do
let :facts do
@default_facts.merge({
: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
on_supported_os({
:supported_os => OSDefaults.get_supported_os
}).each do |os,facts|
context "on #{os}" do
let (:facts) do
facts.merge(OSDefaults.get_facts({
:processorcount => 8,
:concat_basedir => '/var/lib/puppet/concat'
}))
end
it { is_expected.to contain_postgresql__server__db('barbican').with(
:user => 'barbican',
:password => 'md5699e09b3c7579f59869b882716fd7299'
)}
it_configures 'barbican::db::postgresql'
end
end
end