
... and migrate it to openstacklib so that all logics about database configuration are implemented in one common place. Depends-on: https://review.opendev.org/#/c/728595/ Change-Id: I6b4f8479030b28957c540c5f0775d5f799dff5dd
46 lines
979 B
Ruby
46 lines
979 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'mistral::db::postgresql' do
|
|
|
|
shared_examples_for 'mistral::db::postgresql' do
|
|
let :req_params do
|
|
{ :password => 'mistralpass' }
|
|
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('mistral').with(
|
|
:user => 'mistral',
|
|
:password => 'mistralpass',
|
|
:dbname => 'mistral',
|
|
: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
|
|
|
|
it_configures 'mistral::db::postgresql'
|
|
end
|
|
end
|
|
|
|
end
|