db307b6948
This reverts commit 589205c8a5f22f1ddd9b5db94d4e09336c2b666b. 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: I8b110c5335c4fb0f69d25974228e12db0340222b
47 lines
1.1 KiB
Ruby
47 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'neutron::db::postgresql' do
|
|
shared_examples 'neutron::db::postgresql' do
|
|
let :req_params do
|
|
{ :password => 'neutronpass' }
|
|
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('neutron::deps') }
|
|
|
|
it { is_expected.to contain_openstacklib__db__postgresql('neutron').with(
|
|
:user => 'neutron',
|
|
:password => 'neutronpass',
|
|
:dbname => 'neutron',
|
|
: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 'neutron::db::postgresql'
|
|
end
|
|
end
|
|
end
|