
... so that users can even remove the job. This follows what was added to puppet-nova by [1]. [1] https://review.opendev.org/c/openstack/puppet-nova/+/877096 Change-Id: I28ba3ff1804207c5f93bf3f5352c4257019b36df
78 lines
2.3 KiB
Ruby
78 lines
2.3 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'manila::cron::db_purge' do
|
|
let :params do
|
|
{
|
|
:minute => 1,
|
|
:hour => 0,
|
|
:monthday => '*',
|
|
:month => '*',
|
|
:weekday => '*',
|
|
:user => 'manila',
|
|
:age => '0',
|
|
:maxdelay => 0,
|
|
:destination => '/var/log/manila/manila-rowsflush.log'
|
|
}
|
|
end
|
|
|
|
shared_examples 'manila::cron::db_purge' do
|
|
context 'with required parameters' do
|
|
it { is_expected.to contain_cron('manila-manage db purge').with(
|
|
:ensure => :present,
|
|
:command => "manila-manage db purge #{params[:age]} >>#{params[:destination]} 2>&1",
|
|
:environment => 'PATH=/bin:/usr/bin:/usr/sbin SHELL=/bin/sh',
|
|
:user => params[:user],
|
|
:minute => params[:minute],
|
|
:hour => params[:hour],
|
|
:monthday => params[:monthday],
|
|
:month => params[:month],
|
|
:weekday => params[:weekday],
|
|
:require => 'Anchor[manila::dbsync::end]'
|
|
)}
|
|
end
|
|
|
|
context 'with ensure set to absent' do
|
|
before :each do
|
|
params.merge!(
|
|
:ensure => :absent
|
|
)
|
|
end
|
|
|
|
it { should contain_cron('manila-manage db purge').with_ensure(:absent) }
|
|
end
|
|
|
|
context 'with required parameters with max delay enabled' do
|
|
before :each do
|
|
params.merge!(
|
|
:maxdelay => 600
|
|
)
|
|
end
|
|
|
|
it { should contain_cron('manila-manage db purge').with(
|
|
:ensure => :present,
|
|
:command => "sleep `expr ${RANDOM} \\% #{params[:maxdelay]}`; manila-manage db purge #{params[:age]} >>#{params[:destination]} 2>&1",
|
|
:environment => 'PATH=/bin:/usr/bin:/usr/sbin SHELL=/bin/sh',
|
|
:user => params[:user],
|
|
:minute => params[:minute],
|
|
:hour => params[:hour],
|
|
:monthday => params[:monthday],
|
|
:month => params[:month],
|
|
:weekday => params[:weekday],
|
|
:require => 'Anchor[manila::dbsync::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
|
|
|
|
it_behaves_like 'manila::cron::db_purge'
|
|
end
|
|
end
|
|
end
|