
This patch aims to add the ability of configuring arbitrary options in swift-proxy.conf via swift::config. Change-Id: Id565326e8cf6368d061b1e3315b6e2ecbde3b059
31 lines
1.1 KiB
Ruby
31 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::config' do
|
|
|
|
let :params do
|
|
{ :swift_config => {
|
|
'DEFAULT/foo' => { 'value' => 'fooValue' },
|
|
'DEFAULT/bar' => { 'value' => 'barValue' },
|
|
'DEFAULT/baz' => { 'ensure' => 'absent' }
|
|
},
|
|
:swift_proxy_config => {
|
|
'DEFAULT/foo' => { 'value' => 'fooValue' },
|
|
'DEFAULT/bar' => { 'value' => 'barValue' },
|
|
'DEFAULT/baz' => { 'ensure' => 'absent' }
|
|
}
|
|
}
|
|
end
|
|
|
|
it 'configures arbitrary swift configurations' do
|
|
is_expected.to contain_swift_config('DEFAULT/foo').with_value('fooValue')
|
|
is_expected.to contain_swift_config('DEFAULT/bar').with_value('barValue')
|
|
is_expected.to contain_swift_config('DEFAULT/baz').with_ensure('absent')
|
|
end
|
|
it 'configures arbitrary swift proxy configurations' do
|
|
is_expected.to contain_swift_proxy_config('DEFAULT/foo').with_value('fooValue')
|
|
is_expected.to contain_swift_proxy_config('DEFAULT/bar').with_value('barValue')
|
|
is_expected.to contain_swift_proxy_config('DEFAULT/baz').with_ensure('absent')
|
|
end
|
|
|
|
end
|