2013-04-23 11:46:08 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'nova::db::postgresql' do
|
|
|
|
let :required_params do
|
|
|
|
{ :password => "qwerty" }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on a RedHat osfamily' do
|
|
|
|
let :facts do
|
|
|
|
{
|
|
|
|
:postgres_default_version => '8.4',
|
2013-04-26 06:17:03 -04:00
|
|
|
:osfamily => 'RedHat'
|
2013-04-23 11:46:08 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with only required parameters' do
|
|
|
|
let :params do
|
|
|
|
required_params
|
|
|
|
end
|
|
|
|
|
|
|
|
it { should contain_postgresql__db('nova').with(
|
|
|
|
:user => 'nova',
|
2013-04-26 06:17:03 -04:00
|
|
|
:password => 'qwerty'
|
2013-04-23 11:46:08 -04:00
|
|
|
)}
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on a Debian osfamily' do
|
|
|
|
let :facts do
|
|
|
|
{
|
|
|
|
:postgres_default_version => '8.4',
|
2013-04-26 06:17:03 -04:00
|
|
|
:osfamily => 'Debian'
|
2013-04-23 11:46:08 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with only required parameters' do
|
|
|
|
let :params do
|
|
|
|
required_params
|
|
|
|
end
|
|
|
|
|
|
|
|
it { should contain_postgresql__db('nova').with(
|
|
|
|
:user => 'nova',
|
2013-04-26 06:17:03 -04:00
|
|
|
:password => 'qwerty'
|
2013-04-23 11:46:08 -04:00
|
|
|
)}
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|