Test multiple operating systems for barbican::db::postgresql
Change-Id: Ia04c644949cc7998d7f42d28563a9a4747c76e74
This commit is contained in:
@@ -2,21 +2,13 @@ require 'spec_helper'
|
|||||||
|
|
||||||
describe 'barbican::db::postgresql' do
|
describe 'barbican::db::postgresql' do
|
||||||
|
|
||||||
let :req_params do
|
shared_examples_for 'barbican::db::postgresql' do
|
||||||
{ :password => 'pw' }
|
let :req_params do
|
||||||
end
|
{ :password => 'pw' }
|
||||||
|
end
|
||||||
|
|
||||||
let :pre_condition do
|
let :pre_condition do
|
||||||
'include postgresql::server'
|
'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'
|
|
||||||
})
|
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with only required parameters' do
|
context 'with only required parameters' do
|
||||||
@@ -32,27 +24,19 @@ describe 'barbican::db::postgresql' do
|
|||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'on a Debian osfamily' do
|
on_supported_os({
|
||||||
let :facts do
|
:supported_os => OSDefaults.get_supported_os
|
||||||
@default_facts.merge({
|
}).each do |os,facts|
|
||||||
:operatingsystemrelease => '7.8',
|
context "on #{os}" do
|
||||||
:operatingsystem => 'Debian',
|
let (:facts) do
|
||||||
:osfamily => 'Debian',
|
facts.merge(OSDefaults.get_facts({
|
||||||
:concat_basedir => '/var/lib/puppet/concat'
|
:processorcount => 8,
|
||||||
})
|
:concat_basedir => '/var/lib/puppet/concat'
|
||||||
end
|
}))
|
||||||
|
|
||||||
context 'with only required parameters' do
|
|
||||||
let :params do
|
|
||||||
req_params
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it { is_expected.to contain_postgresql__server__db('barbican').with(
|
it_configures 'barbican::db::postgresql'
|
||||||
:user => 'barbican',
|
|
||||||
:password => 'md5699e09b3c7579f59869b882716fd7299'
|
|
||||||
)}
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user