Test multiple operating systems for db
This change updates the tests for nova::db::postgresql and nova::db::postgresql::api to test multiple operating systems. Change-Id: I7c83e8ee38fe75703ccfdd73ffbb076bbb1c02e6
This commit is contained in:
@@ -2,21 +2,13 @@ require 'spec_helper'
|
|||||||
|
|
||||||
describe 'nova::db::postgresql_api' do
|
describe 'nova::db::postgresql_api' do
|
||||||
|
|
||||||
let :req_params do
|
shared_examples_for 'nova::db::postgresql' do
|
||||||
{ :password => 'pw' }
|
let :req_params do
|
||||||
end
|
{ :password => 'pw' }
|
||||||
|
end
|
||||||
|
|
||||||
let :pre_condition do
|
let :pre_condition do
|
||||||
'include postgresql::server'
|
'include postgresql::server'
|
||||||
end
|
|
||||||
|
|
||||||
context 'on a RedHat osfamily' do
|
|
||||||
let :facts do
|
|
||||||
@default_facts.merge({
|
|
||||||
:osfamily => 'RedHat',
|
|
||||||
:operatingsystemrelease => '7.0',
|
|
||||||
:concat_basedir => '/var/lib/puppet/concat'
|
|
||||||
})
|
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with only required parameters' do
|
context 'with only required parameters' do
|
||||||
@@ -32,27 +24,19 @@ describe 'nova::db::postgresql_api' do
|
|||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'on a Debian osfamily' do
|
on_supported_os({
|
||||||
let :facts do
|
:supported_os => OSDefaults.get_supported_os
|
||||||
@default_facts.merge({
|
}).each do |os,facts|
|
||||||
:operatingsystemrelease => '7.8',
|
context "on #{os}" do
|
||||||
:operatingsystem => 'Debian',
|
let (:facts) do
|
||||||
:osfamily => 'Debian',
|
facts.merge(OSDefaults.get_facts({
|
||||||
:concat_basedir => '/var/lib/puppet/concat'
|
:processorcount => 8,
|
||||||
})
|
:concat_basedir => '/var/lib/puppet/concat'
|
||||||
end
|
}))
|
||||||
|
|
||||||
context 'with only required parameters' do
|
|
||||||
let :params do
|
|
||||||
req_params
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it { is_expected.to contain_postgresql__server__db('nova_api').with(
|
it_configures 'nova::db::postgresql'
|
||||||
:user => 'nova_api',
|
|
||||||
:password => 'md581802bf81b206888b50950e640d70549'
|
|
||||||
)}
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
@@ -2,21 +2,13 @@ require 'spec_helper'
|
|||||||
|
|
||||||
describe 'nova::db::postgresql' do
|
describe 'nova::db::postgresql' do
|
||||||
|
|
||||||
let :req_params do
|
shared_examples_for 'nova::db::postgresql' do
|
||||||
{ :password => 'pw' }
|
let :req_params do
|
||||||
end
|
{ :password => 'pw' }
|
||||||
|
end
|
||||||
|
|
||||||
let :pre_condition do
|
let :pre_condition do
|
||||||
'include postgresql::server'
|
'include postgresql::server'
|
||||||
end
|
|
||||||
|
|
||||||
context 'on a RedHat osfamily' do
|
|
||||||
let :facts do
|
|
||||||
@default_facts.merge({
|
|
||||||
:osfamily => 'RedHat',
|
|
||||||
:operatingsystemrelease => '7.0',
|
|
||||||
:concat_basedir => '/var/lib/puppet/concat'
|
|
||||||
})
|
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with only required parameters' do
|
context 'with only required parameters' do
|
||||||
@@ -32,27 +24,19 @@ describe 'nova::db::postgresql' do
|
|||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'on a Debian osfamily' do
|
on_supported_os({
|
||||||
let :facts do
|
:supported_os => OSDefaults.get_supported_os
|
||||||
@default_facts.merge({
|
}).each do |os,facts|
|
||||||
:operatingsystemrelease => '7.8',
|
context "on #{os}" do
|
||||||
:operatingsystem => 'Debian',
|
let (:facts) do
|
||||||
:osfamily => 'Debian',
|
facts.merge(OSDefaults.get_facts({
|
||||||
:concat_basedir => '/var/lib/puppet/concat'
|
:processorcount => 8,
|
||||||
})
|
:concat_basedir => '/var/lib/puppet/concat'
|
||||||
end
|
}))
|
||||||
|
|
||||||
context 'with only required parameters' do
|
|
||||||
let :params do
|
|
||||||
req_params
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it { is_expected.to contain_postgresql__server__db('nova').with(
|
it_configures 'nova::db::postgresql'
|
||||||
:user => 'nova',
|
|
||||||
:password => 'md557ae0608fad632bf0155cb9502a6b454'
|
|
||||||
)}
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user