
... because the latest lint no longer allows usage of legacy facts and top scope fact. Change-Id: I4c0a9357fcc4184df852024e1f6f36c0ed2e1440
135 lines
4.8 KiB
Ruby
135 lines
4.8 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::objectexpirer' do
|
|
|
|
let :default_params do
|
|
{ :manage_service => true,
|
|
:enabled => true,
|
|
:package_ensure => 'present',
|
|
:pipeline => ['catch_errors', 'proxy-logging', 'cache', 'proxy-server'],
|
|
:auto_create_account_prefix => '<SERVICE DEFAULT>',
|
|
:concurrency => '<SERVICE DEFAULT>',
|
|
:expiring_objects_account_name => '<SERVICE DEFAULT>',
|
|
:interval => '<SERVICE DEFAULT>',
|
|
:process => '<SERVICE DEFAULT>',
|
|
:processes => '<SERVICE DEFAULT>',
|
|
:reclaim_age => '<SERVICE DEFAULT>',
|
|
:recon_cache_path => '<SERVICE DEFAULT>',
|
|
:report_interval => '<SERVICE DEFAULT>',
|
|
:log_facility => 'LOG_LOCAL2',
|
|
:log_level => 'INFO',
|
|
:memcache_servers => ['127.0.0.1:11211'],
|
|
:cache_tls_enabled => false,
|
|
}
|
|
end
|
|
|
|
let :params do
|
|
{}
|
|
end
|
|
|
|
let :pre_condition do
|
|
'class { "memcached": max_memory => 1 }'
|
|
end
|
|
|
|
shared_examples 'swift::object::expirer' do
|
|
let (:p) { default_params.merge!(params) }
|
|
|
|
context 'with defaults' do
|
|
it 'configures object-expirer.conf' do
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'pipeline:main/pipeline').with_value(p[:pipeline].join(' '))
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'object-expirer/auto_create_account_prefix').with_value(p[:auto_create_account_prefix])
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'object-expirer/concurrency').with_value(p[:concurrency])
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'object-expirer/expiring_objects_account_name').with_value(p[:expiring_objects_account_name])
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'object-expirer/interval').with_value(p[:interval])
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'object-expirer/process').with_value(p[:process])
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'object-expirer/processes').with_value(p[:processes])
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'object-expirer/reclaim_age').with_value(p[:reclaim_age])
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'object-expirer/recon_cache_path').with_value(p[:recon_cache_path])
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'object-expirer/report_interval').with_value(p[:report_interval])
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'object-expirer/log_level').with_value(p[:log_level])
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'object-expirer/log_facility').with_value(p[:log_facility])
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'filter:cache/memcache_servers').with_value(p[:memcache_servers])
|
|
end
|
|
|
|
it 'configures object-expirer service' do
|
|
is_expected.to contain_service('swift-object-expirer').with(
|
|
:ensure => (p[:manage_service] && p[:enabled]) ? 'running' : 'stopped',
|
|
:name => platform_params[:service_name],
|
|
:provider => platform_params[:service_provider],
|
|
:enable => p[:enabled]
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'when overriding parameters' do
|
|
before do
|
|
params.merge!(
|
|
:interval => '600',
|
|
:reclaim_age => '10000',
|
|
:concurrency => '3',
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'when cache is not included in pipeline' do
|
|
before do
|
|
params.merge!(
|
|
:pipeline => ['catch_errors', 'proxy-logging', 'proxy-server'],
|
|
)
|
|
end
|
|
|
|
it 'should not configure memcache servers' do
|
|
is_expected.to contain_swift_object_expirer_config(
|
|
'filter:cache/memcache_servers').with_ensure('absent')
|
|
end
|
|
end
|
|
|
|
context 'when using swiftinit service provider' do
|
|
before do
|
|
params.merge!({ :service_provider => 'swiftinit' })
|
|
end
|
|
|
|
before do
|
|
platform_params.merge!({ :service_provider => 'swiftinit' })
|
|
end
|
|
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
|
|
|
|
let(:platform_params) do
|
|
case facts[:os]['family']
|
|
when 'Debian'
|
|
{ :service_name => 'swift-object-expirer',
|
|
:service_provider => nil }
|
|
when 'RedHat'
|
|
{ :service_name => 'openstack-swift-object-expirer',
|
|
:service_provider => nil }
|
|
end
|
|
end
|
|
|
|
it_configures 'swift::object::expirer'
|
|
end
|
|
|
|
end
|
|
end
|