18b010975c
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: If683fbd098e701a3c4da91941cf818b18b41b209
75 lines
1.9 KiB
Ruby
75 lines
1.9 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'glance::cache::cleaner' do
|
|
|
|
shared_examples_for 'glance cache cleaner' do
|
|
|
|
context 'when default parameters' do
|
|
|
|
it 'configures a cron' do
|
|
is_expected.to contain_cron('glance-cache-cleaner').with(
|
|
:command => 'glance-cache-cleaner ',
|
|
:environment => 'PATH=/bin:/usr/bin:/usr/sbin',
|
|
:user => 'glance',
|
|
:minute => 1,
|
|
:hour => 0,
|
|
:monthday => '*',
|
|
:month => '*',
|
|
:weekday => '*'
|
|
)
|
|
|
|
is_expected.to contain_cron('glance-cache-cleaner').that_requires(
|
|
'Anchor[glance::config::end]'
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'when overriding parameters' do
|
|
let :params do
|
|
{
|
|
:minute => 59,
|
|
:hour => 23,
|
|
:monthday => '1',
|
|
:month => '2',
|
|
:weekday => '3',
|
|
:command_options => '--config-dir /etc/glance/',
|
|
}
|
|
end
|
|
it 'configures a cron' do
|
|
is_expected.to contain_cron('glance-cache-cleaner').with(
|
|
:command => 'glance-cache-cleaner --config-dir /etc/glance/',
|
|
:environment => 'PATH=/bin:/usr/bin:/usr/sbin',
|
|
:user => 'glance',
|
|
:minute => 59,
|
|
:hour => 23,
|
|
:monthday => '1',
|
|
:month => '2',
|
|
:weekday => '3'
|
|
)
|
|
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[:osfamily]
|
|
when 'Debian'
|
|
{ :api_package_name => 'glance-api' }
|
|
when 'RedHat'
|
|
{ :api_package_name => 'openstack-glance' }
|
|
end
|
|
end
|
|
|
|
it_configures 'glance cache cleaner'
|
|
end
|
|
end
|
|
|
|
end
|