0bddd67a5b
This change refactors how the dependent libraries are loaded during unit tests, and load the libraries in the base spec_helper to avoid duplicate and redundant implementations. Change-Id: I74d98e8307033584eaf34cf32955ef2b155e72db
49 lines
1.5 KiB
Ruby
49 lines
1.5 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'sahara::config' do
|
|
|
|
|
|
shared_examples 'sahara-config' do
|
|
let :params do
|
|
{ :sahara_config => {
|
|
'DEFAULT/foo' => { 'value' => 'fooValue' },
|
|
'DEFAULT/bar' => { 'value' => 'barValue' },
|
|
'DEFAULT/baz' => { 'ensure' => 'absent' }
|
|
},
|
|
:sahara_api_paste_ini => {
|
|
'DEFAULT/foo2' => { 'value' => 'fooValue' },
|
|
'DEFAULT/bar2' => { 'value' => 'barValue' },
|
|
'DEFAULT/baz2' => { 'ensure' => 'absent' }
|
|
}
|
|
}
|
|
end
|
|
|
|
it { is_expected.to contain_class('sahara::deps') }
|
|
|
|
it 'configures arbitrary sahara configurations' do
|
|
is_expected.to contain_sahara_config('DEFAULT/foo').with_value('fooValue')
|
|
is_expected.to contain_sahara_config('DEFAULT/bar').with_value('barValue')
|
|
is_expected.to contain_sahara_config('DEFAULT/baz').with_ensure('absent')
|
|
end
|
|
|
|
it 'configures arbitrary sahara-api-paste configurations' do
|
|
is_expected.to contain_sahara_api_paste_ini('DEFAULT/foo2').with_value('fooValue')
|
|
is_expected.to contain_sahara_api_paste_ini('DEFAULT/bar2').with_value('barValue')
|
|
is_expected.to contain_sahara_api_paste_ini('DEFAULT/baz2').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 'sahara-config'
|
|
end
|
|
end
|
|
|
|
end
|