puppet-sahara/spec/classes/sahara_config_spec.rb
ZhongShengping 00dac9470a Add the capability to configure api-paste.ini with config.pp
Already added type/provider for paste configs,
but it wouldn't to patch sahara::config.

Change-Id: Iba618f27b110192c1751486681d77c1c9d46c541
2016-02-19 03:37:42 +08:00

32 lines
1.1 KiB
Ruby

require 'spec_helper'
describe '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 '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