
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: I032ee01505e0cbc125b0e219c436b77c93f57720
61 lines
1.2 KiB
Ruby
61 lines
1.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'heat::db::postgresql' do
|
|
|
|
let :req_params do
|
|
{ :password => 'pw' }
|
|
end
|
|
|
|
let :pre_condition do
|
|
'include ::postgresql::server
|
|
include ::heat
|
|
'
|
|
end
|
|
|
|
context 'on a RedHat osfamily' do
|
|
let :facts do
|
|
{
|
|
:osfamily => 'RedHat',
|
|
:operatingsystemrelease => '7.0',
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
}
|
|
end
|
|
|
|
context 'with only required parameters' do
|
|
let :params do
|
|
req_params
|
|
end
|
|
|
|
it { is_expected.to contain_postgresql__server__db('heat').with(
|
|
:user => 'heat',
|
|
:password => 'md5fd5c4fca491370aab732f903e2fb7c99'
|
|
)}
|
|
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
|
|
|
|
it { is_expected.to contain_postgresql__server__db('heat').with(
|
|
:user => 'heat',
|
|
:password => 'md5fd5c4fca491370aab732f903e2fb7c99'
|
|
)}
|
|
end
|
|
|
|
end
|
|
|
|
end
|