2016-02-12 18:32:27 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'ironic::inspector::db::postgresql' do
|
|
|
|
|
|
|
|
shared_examples_for 'ironic::inspector::db::postgresql' do
|
|
|
|
let :req_params do
|
2020-05-19 20:06:56 +09:00
|
|
|
{ :password => 'ironicpass' }
|
2016-02-12 18:32:27 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
let :pre_condition do
|
|
|
|
'include postgresql::server'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with only required parameters' do
|
|
|
|
let :params do
|
|
|
|
req_params
|
|
|
|
end
|
|
|
|
|
2020-05-19 20:06:56 +09:00
|
|
|
it { is_expected.to contain_openstacklib__db__postgresql('ironic-inspector').with(
|
|
|
|
:user => 'ironic-inspector',
|
|
|
|
:password => 'ironicpass',
|
|
|
|
:dbname => 'ironic-inspector',
|
|
|
|
:encoding => nil,
|
|
|
|
:privileges => 'ALL',
|
2016-02-12 18:32:27 +01:00
|
|
|
)}
|
|
|
|
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())
|
|
|
|
end
|
|
|
|
|
2022-02-16 00:10:13 +09:00
|
|
|
# TODO(tkajinam): Remove this once puppet-postgresql supports CentOS 9
|
|
|
|
unless facts[:osfamily] == 'RedHat' and facts[:operatingsystemmajrelease].to_i >= 9
|
|
|
|
it_behaves_like 'ironic::inspector::db::postgresql'
|
|
|
|
end
|
2016-02-12 18:32:27 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|