
This fixes the typo added by a8fa9f2788e269306964cb235b69121f8acdd6ea, and ensures the test case dependent on puppet-postgresql is skipped. Change-Id: I15e89ffd2324104bc055c739fd70744239968042
49 lines
1.1 KiB
Ruby
49 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'manila::db::postgresql' do
|
|
|
|
shared_examples_for 'manila::db::postgresql' do
|
|
let :req_params do
|
|
{ :password => 'manilapass' }
|
|
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('manila::deps') }
|
|
|
|
it { is_expected.to contain_openstacklib__db__postgresql('manila').with(
|
|
:user => 'manila',
|
|
:password => 'manilapass',
|
|
:dbname => 'manila',
|
|
: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 'manila::db::postgresql'
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|