puppet-heat/spec/classes/heat_db_postgresql_spec.rb
Takashi Kajinami b8c3e8cb71 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: I0824e84d9e3f0b85938512d37e74b8a9786fefbd
2022-02-16 00:22:53 +09:00

51 lines
1.2 KiB
Ruby

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