
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: Idd96ef1789268841cefa5e773b490e0470d7b9a0
66 lines
1.6 KiB
Ruby
66 lines
1.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'nova::db::postgresql' do
|
|
|
|
shared_examples 'nova::db::postgresql' do
|
|
let :req_params do
|
|
{ :password => 'pw' }
|
|
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('nova::deps') }
|
|
|
|
it { should contain_openstacklib__db__postgresql('nova').with(
|
|
:password => 'pw',
|
|
:dbname => 'nova',
|
|
:user => 'nova',
|
|
:encoding => nil,
|
|
:privileges => 'ALL',
|
|
)}
|
|
|
|
it { should contain_openstacklib__db__postgresql('nova_cell0').with(
|
|
:password => 'pw',
|
|
:dbname => 'nova_cell0',
|
|
:user => 'nova',
|
|
:encoding => nil,
|
|
:privileges => 'ALL',
|
|
)}
|
|
end
|
|
|
|
context 'when disabling cell0 setup' do
|
|
let :params do
|
|
{ :setup_cell0 => false}.merge(req_params)
|
|
end
|
|
|
|
it { is_expected.to_not contain_openstacklib__db__postgresql('nova_cell0') }
|
|
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_configures 'nova::db::postgresql'
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|