
This change introduces capability to customize internal-client.conf, which is used by several daemon processes like container-sharder. Backport note: Replaced swift::params::user by the hard-coded user name becausef781eb9e34
is present only in yoga and later. Closes-Bug: #1986599 Related-Bug: #1921319 Change-Id: I200e3a4ff323a07778ec6c4d7dd96824c72a12cf (cherry picked from commitefcef86de7
) (cherry picked from commitab3cf92d79
) (cherry picked from commitb5cb280779
)
55 lines
1.9 KiB
Ruby
55 lines
1.9 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' }
|
|
},
|
|
:swift_internal_client_config => {
|
|
'DEFAULT/foo' => { 'value' => 'fooValue' },
|
|
'DEFAULT/bar' => { 'value' => 'barValue' },
|
|
'DEFAULT/baz' => { 'ensure' => 'absent' }
|
|
}
|
|
}
|
|
end
|
|
|
|
shared_examples 'swift::config' do
|
|
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
|
|
|
|
it 'configures arbitrary swift internal client configurations' do
|
|
is_expected.to contain_swift_internal_client_config('DEFAULT/foo').with_value('fooValue')
|
|
is_expected.to contain_swift_internal_client_config('DEFAULT/bar').with_value('barValue')
|
|
is_expected.to contain_swift_internal_client_config('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 'swift::config'
|
|
end
|
|
end
|
|
end
|