puppet-zaqar/spec/classes/zaqar_db_postgresql_spec.rb
Takashi Kajinami 668ed60043 Revert "CentOS 9: Disable unit tests dependent on puppet-postgresql"
This reverts commit 1e36ec00e5.

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: Ia74b45251e22419d44713f3be85cbf0591504ccb
2022-07-24 01:04:54 +09:00

49 lines
1.1 KiB
Ruby

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