fc5e618d21
Change-Id: I2d3c1ed60b42314c85be76adef2ee00a048dea85
51 lines
1.4 KiB
Ruby
51 lines
1.4 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'aodh::config' do
|
|
|
|
let(:config_hash) do {
|
|
'DEFAULT/foo' => { 'value' => 'fooValue' },
|
|
'DEFAULT/bar' => { 'value' => 'barValue' },
|
|
'DEFAULT/baz' => { 'ensure' => 'absent' }
|
|
}
|
|
end
|
|
|
|
shared_examples_for 'aodh_config' do
|
|
let :params do
|
|
{ :aodh_config => config_hash }
|
|
end
|
|
|
|
it { is_expected.to contain_class('aodh::deps') }
|
|
|
|
it 'configures arbitrary aodh-config configurations' do
|
|
is_expected.to contain_aodh_config('DEFAULT/foo').with_value('fooValue')
|
|
is_expected.to contain_aodh_config('DEFAULT/bar').with_value('barValue')
|
|
is_expected.to contain_aodh_config('DEFAULT/baz').with_ensure('absent')
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'aodh_api_paste_ini' do
|
|
let :params do
|
|
{ :aodh_api_paste_ini => config_hash }
|
|
end
|
|
|
|
it 'configures arbitrary aodh-api-paste-ini configurations' do
|
|
is_expected.to contain_aodh_api_paste_ini('DEFAULT/foo').with_value('fooValue')
|
|
is_expected.to contain_aodh_api_paste_ini('DEFAULT/bar').with_value('barValue')
|
|
is_expected.to contain_aodh_api_paste_ini('DEFAULT/baz').with_ensure('absent')
|
|
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())
|
|
end
|
|
|
|
it_configures 'aodh_config'
|
|
it_configures 'aodh_api_paste_ini'
|
|
end
|
|
end
|
|
end
|