puppet-aodh/spec/classes/aodh_db_postgresql_spec.rb
Takashi Kajinami 0f1d26cdb6 CentOS 9: Disable unit tests dependent on puppet-postgresql
The puppt-postgresql module does not support CentOS 9 yet and requires
some version parameters to be run on CentOS 9. This change disables
unit tests requiring that module, until the module supports CentOS 9.

Change-Id: I8b3d2308689bbb5453c4f2762bf67c3ba3624f1a
2022-02-16 00:17:08 +09:00

51 lines
1.1 KiB
Ruby

require 'spec_helper'
describe 'aodh::db::postgresql' do
let :req_params do
{ :password => 'aodhpass' }
end
let :pre_condition do
'include postgresql::server'
end
shared_examples 'aodh::db::postgresql' do
context 'with only required parameters' do
let :params do
req_params
end
it { is_expected.to contain_class('aodh::deps') }
it { is_expected.to contain_openstacklib__db__postgresql('aodh').with(
:user => 'aodh',
:password => 'aodhpass',
:dbname => 'aodh',
: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({
:concat_basedir => '/var/lib/puppet/concat'
}))
end
# TODO(tkajinam): Remove this once puppet-postgresql supports CentOS 9
unless facts[:osfamily] == 'RedHat' and facts[:operatingsystemmajrelease].to_i >= 9
it_configures 'aodh::db::postgresql'
end
end
end
end