puppet-manila/spec/classes/manila_db_postgresql_spec.rb
Takashi Kajinami 56d07186d8 Revert "CentOS 9: Disable unit tests dependent on puppet-postgresql"
This reverts commit a8fa9f2788e269306964cb235b69121f8acdd6ea.

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.
This also reverts commit a36a020f47063f561605c6e33b3c4574e643e9ca which
fixed the typo in the original commit.

Depends-on: https://review.opendev.org/850705
Change-Id: Icf69dc0461e3171d55e9583e0164d450477f68c1
2022-07-24 00:46:45 +09:00

48 lines
1.1 KiB
Ruby

require 'spec_helper'
describe 'manila::db::postgresql' do
shared_examples_for 'manila::db::postgresql' do
let :req_params do
{ :password => 'manilapass' }
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('manila::deps') }
it { is_expected.to contain_openstacklib__db__postgresql('manila').with(
:user => 'manila',
:password => 'manilapass',
:dbname => 'manila',
: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_configures 'manila::db::postgresql'
end
end
end