be42177491
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: I4d9258e66166fdc8c4ac180fc32d41b7ec0fb2e6
49 lines
1.2 KiB
Ruby
49 lines
1.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'keystone::db::postgresql' do
|
|
shared_examples 'keystone::db::postgresql' do
|
|
let :req_params do
|
|
{
|
|
:password => 'keystonepass',
|
|
}
|
|
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_openstacklib__db__postgresql('keystone').with(
|
|
:user => 'keystone',
|
|
:password => 'keystonepass',
|
|
:dbname => 'keystone',
|
|
: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_keystone => 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 'keystone::db::postgresql'
|
|
end
|
|
end
|
|
end
|
|
end
|