forked from theforeman/puppet-puppet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpuppet_agent_service_cron_spec.rb
58 lines (51 loc) · 1.66 KB
/
puppet_agent_service_cron_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require 'spec_helper'
describe 'puppet::agent::service::cron' do
on_os_under_test.each do |os, facts|
context "on #{os}" do
if Puppet.version < '4.0'
confdir = '/etc/puppet'
bindir = '/usr/bin'
additional_facts = {}
else
confdir = '/etc/puppetlabs/puppet'
bindir = '/opt/puppetlabs/bin'
additional_facts = {:rubysitedir => '/opt/puppetlabs/puppet/lib/ruby/site_ruby/2.1.0'}
end
if facts[:osfamily] == 'FreeBSD'
bindir = '/usr/local/bin'
confdir = '/usr/local/etc/puppet'
end
let :facts do
facts.merge(additional_facts).merge(:ipaddress => '192.0.2.100')
end
describe 'when runmode is not cron' do
let :pre_condition do
"class {'puppet': agent => true}"
end
if os =~ /\A(windows|archlinux)/
it { should_not contain_cron('puppet') }
else
it { should contain_cron('puppet').with_ensure('absent') }
end
end
describe 'when runmode => cron' do
let :pre_condition do
"class {'puppet': agent => true, runmode => 'cron'}"
end
it do
case os
when /\A(windows|archlinux)/
should raise_error(Puppet::Error, /Runmode of cron not supported on #{facts[:kernel]} operating systems!/)
else
should contain_cron('puppet').with({
:command => "#{bindir}/puppet agent --config #{confdir}/puppet.conf --onetime --no-daemonize",
:user => 'root',
:minute => ['10','40'],
:hour => '*',
})
end
end
end
end
end
end