eba3b93c56
This reverts commit be42177491
.
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: I8010b341a0425fadabe1696f95591bc1d41b0761
47 lines
1.0 KiB
Ruby
47 lines
1.0 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'keystone::db::postgresql' do
|
|
shared_examples 'keystone::db::postgresql' do
|
|
let :req_params do
|
|
{
|
|
:password => 'keystonepass',
|
|
}
|
|
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_openstacklib__db__postgresql('keystone').with(
|
|
:user => 'keystone',
|
|
:password => 'keystonepass',
|
|
:dbname => 'keystone',
|
|
: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 'keystone::db::postgresql'
|
|
end
|
|
end
|
|
end
|