
Let migrate to the new openstacklib::db::postgresql helper for postgresql backend. This commit also unpin postgresql fixture (openstacklib support now the latest version of postgre module). Change-Id: If748f8ff57d8aece1b4050bc4b841495088b2972 Implements: blueprint commmon-openstack-database-resource
59 lines
1.2 KiB
Ruby
59 lines
1.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'keystone::db::postgresql' do
|
|
|
|
let :req_params do
|
|
{ :password => 'pw' }
|
|
end
|
|
|
|
let :pre_condition do
|
|
'include postgresql::server'
|
|
end
|
|
|
|
context 'on a RedHat osfamily' do
|
|
let :facts do
|
|
{
|
|
:osfamily => 'RedHat',
|
|
:operatingsystemrelease => '7.0',
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
}
|
|
end
|
|
|
|
context 'with only required parameters' do
|
|
let :params do
|
|
req_params
|
|
end
|
|
|
|
it { should contain_postgresql__server__db('keystone').with(
|
|
:user => 'keystone',
|
|
:password => 'md5c530c33636c58ae83ca933f39319273e'
|
|
)}
|
|
end
|
|
|
|
end
|
|
|
|
context 'on a Debian osfamily' do
|
|
let :facts do
|
|
{
|
|
:operatingsystemrelease => '7.8',
|
|
:operatingsystem => 'Debian',
|
|
:osfamily => 'Debian',
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
}
|
|
end
|
|
|
|
context 'with only required parameters' do
|
|
let :params do
|
|
req_params
|
|
end
|
|
|
|
it { should contain_postgresql__server__db('keystone').with(
|
|
:user => 'keystone',
|
|
:password => 'md5c530c33636c58ae83ca933f39319273e'
|
|
)}
|
|
end
|
|
|
|
end
|
|
|
|
end
|