605d1e5538
Change-Id: I784e9b8f85ba04760265e819ad46c68381388fa8
57 lines
1.4 KiB
Ruby
57 lines
1.4 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'panko::expirer' do
|
|
shared_examples 'panko::expirer' do
|
|
let :params do
|
|
{}
|
|
end
|
|
|
|
context 'with default' do
|
|
it { is_expected.to contain_class('panko::deps') }
|
|
it { is_expected.to contain_class('panko::params') }
|
|
|
|
it { is_expected.to contain_cron('panko-expirer').with(
|
|
:ensure => 'present',
|
|
:command => 'panko-expirer',
|
|
:environment => 'PATH=/bin:/usr/bin:/usr/sbin SHELL=/bin/sh',
|
|
:user => 'panko',
|
|
:minute => 1,
|
|
:hour => 0,
|
|
:monthday => '*',
|
|
:month => '*',
|
|
:weekday => '*'
|
|
)}
|
|
end
|
|
|
|
context 'with cron not enabled' do
|
|
before do
|
|
params.merge!( :enable_cron => false )
|
|
end
|
|
|
|
it { is_expected.to contain_cron('panko-expirer').with(
|
|
:ensure => 'absent',
|
|
:command => 'panko-expirer',
|
|
:environment => 'PATH=/bin:/usr/bin:/usr/sbin SHELL=/bin/sh',
|
|
:user => 'panko',
|
|
:minute => 1,
|
|
:hour => 0,
|
|
:monthday => '*',
|
|
:month => '*',
|
|
:weekday => '*'
|
|
)}
|
|
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 'panko::expirer'
|
|
end
|
|
end
|
|
end
|