38 lines
834 B
Ruby
38 lines
834 B
Ruby
![]() |
require 'spec_helper'
|
||
|
|
||
|
describe 'watcher::db::postgresql' do
|
||
|
|
||
|
let :pre_condition do
|
||
|
'include postgresql::server'
|
||
|
end
|
||
|
|
||
|
let :required_params do
|
||
|
{ :password => 'pw' }
|
||
|
end
|
||
|
|
||
|
shared_examples_for 'watcher-db-postgresql' do
|
||
|
context 'with only required parameters' do
|
||
|
let :params do
|
||
|
required_params
|
||
|
end
|
||
|
|
||
|
it { is_expected.to contain_postgresql__server__db('watcher').with(
|
||
|
:user => 'watcher',
|
||
|
:password => 'md5bb8678c96047fcce9b899ad5da021642'
|
||
|
)}
|
||
|
end
|
||
|
end
|
||
|
|
||
|
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({ :concat_basedir => '/var/lib/puppet/concat' }))
|
||
|
end
|
||
|
|
||
|
it_behaves_like 'watcher-db-postgresql'
|
||
|
end
|
||
|
end
|
||
|
end
|