puppet-swift/spec/classes/swift_internal_client_symlink_spec.rb
Takashi Kajinami efcef86de7 Support customizing internal-client.conf
This change introduces capability to customize internal-client.conf,
which is used by several daemon processes like container-sharder.

Closes-Bug: #1986599
Related-Bug: #1921319
Change-Id: I200e3a4ff323a07778ec6c4d7dd96824c72a12cf
2022-08-16 11:26:43 +09:00

34 lines
1.0 KiB
Ruby

require 'spec_helper'
describe 'swift::internal_client::symlink' do
shared_examples 'swift::internal_client::symlink' do
context 'when using default parameters' do
it { is_expected.to contain_swift_internal_client_config('filter:symlink/use').with_value('egg:swift#symlink') }
it { is_expected.to contain_swift_internal_client_config('filter:symlink/symloop_max').with_value('<SERVICE DEFAULT>') }
end
context 'when overriding default parameters' do
let :params do
{
:symloop_max => '3'
}
end
it { is_expected.to contain_swift_internal_client_config('filter:symlink/use').with_value('egg:swift#symlink') }
it { is_expected.to contain_swift_internal_client_config('filter:symlink/symloop_max').with_value('3') }
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_behaves_like 'swift::internal_client::symlink'
end
end
end