3f2e78cec8
This reverts commit b8c3e8cb71
.
Reason for revert:
puppet-postgresql 8.1.0 was released and now the module supports RHEL 9
(and CentOS 9 effectively).
Note:
This change adds the service_provider fact in test fact data because
it is required by puppet-postgresql.
Depends-on: https://review.opendev.org/850705
Change-Id: I811c35baba816e1340d857f2e5113487500c315f
49 lines
1.1 KiB
Ruby
49 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'heat::db::postgresql' do
|
|
|
|
shared_examples_for 'heat::db::postgresql' do
|
|
let :req_params do
|
|
{ :password => 'heatpass' }
|
|
end
|
|
|
|
let :pre_condition do
|
|
'include postgresql::server'
|
|
end
|
|
|
|
context 'with only required parameters' do
|
|
let :params do
|
|
req_params
|
|
end
|
|
|
|
it { is_expected.to contain_class('heat::deps') }
|
|
|
|
it { is_expected.to contain_openstacklib__db__postgresql('heat').with(
|
|
:user => 'heat',
|
|
:password => 'heatpass',
|
|
:dbname => 'heat',
|
|
:encoding => nil,
|
|
:privileges => 'ALL',
|
|
)}
|
|
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({
|
|
# puppet-postgresql requires the service_provider fact provided by
|
|
# puppetlabs-postgresql.
|
|
:service_provider => 'systemd'
|
|
}))
|
|
end
|
|
|
|
it_behaves_like 'heat::db::postgresql'
|
|
end
|
|
end
|
|
|
|
end
|