876e857b29
Due to a patch in RDO packaging, puppet-glance is broken for RHEL platforms.
This reverts commit 5f15e05704
.
Change-Id: I7ba146714d1b0e8d461c556eff5a9f8c4ad9627f
66 lines
1.8 KiB
Ruby
66 lines
1.8 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 => '*'
|
|
)
|
|
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
|
|
|
|
context 'on Debian platforms' do
|
|
let :facts do
|
|
{ :osfamily => 'Debian' }
|
|
end
|
|
include_examples 'glance cache cleaner'
|
|
it { is_expected.to contain_cron('glance-cache-cleaner').with(:require => 'Package[glance-api]')}
|
|
end
|
|
|
|
context 'on RedHat platforms' do
|
|
let :facts do
|
|
{ :osfamily => 'RedHat' }
|
|
end
|
|
include_examples 'glance cache cleaner'
|
|
it { is_expected.to contain_cron('glance-cache-cleaner').with(:require => 'Package[openstack-glance]')}
|
|
end
|
|
|
|
end
|