forked from theforeman/puppet-puppet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpuppet_agent_service_spec.rb
122 lines (111 loc) · 4.54 KB
/
puppet_agent_service_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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
require 'spec_helper'
describe 'puppet::agent::service' do
on_os_under_test.each do |os, facts|
context "on #{os}" do
if Puppet.version < '4.0'
confdir = '/etc/puppet'
additional_facts = {}
else
confdir = '/etc/puppetlabs/puppet'
additional_facts = {:rubysitedir => '/opt/puppetlabs/puppet/lib/ruby/site_ruby/2.1.0'}
end
if facts[:osfamily] == 'FreeBSD'
confdir = '/usr/local/etc/puppet'
end
let :facts do
facts.merge(additional_facts)
end
describe 'with no custom parameters' do
let :pre_condition do
"class {'puppet': agent => true}"
end
it do
should contain_class('puppet::agent::service::daemon').with(:enabled => true)
should contain_class('puppet::agent::service::cron').with(:enabled => false)
end
case os
when /\Adebian-(8|9)/, /\A(redhat|centos|scientific)-7/, /\Afedora-/, /\Aubuntu-16/, /\Aarchlinux-/
it do
should contain_class('puppet::agent::service::systemd').with(:enabled => false)
should contain_service('puppet-run.timer').with(:ensure => :stopped)
end
else
it do
should contain_class('puppet::agent::service::systemd').with(:enabled => false)
should_not contain_service('puppet-run.timer')
end
end
end
describe 'when runmode => cron' do
let :pre_condition do
"class {'puppet': agent => true, runmode => 'cron'}"
end
case os
when /\A(windows|archlinux)/
it do
should raise_error(Puppet::Error, /Runmode of cron not supported on #{facts[:kernel]} operating systems!/)
end
when /\Adebian-(8|9)/, /\A(redhat|centos|scientific)-7/, /\Afedora-/, /\Aubuntu-16/
it do
should contain_class('puppet::agent::service::cron').with(:enabled => true)
should contain_class('puppet::agent::service::daemon').with(:enabled => false)
should contain_class('puppet::agent::service::systemd').with(:enabled => false)
should contain_service('puppet-run.timer').with(:ensure => :stopped)
end
else
it do
should contain_class('puppet::agent::service::cron').with(:enabled => true)
should contain_class('puppet::agent::service::daemon').with(:enabled => false)
should contain_class('puppet::agent::service::systemd').with(:enabled => false)
should_not contain_service('puppet-run.timer')
end
end
end
describe 'when runmode => systemd.timer' do
let :pre_condition do
"class {'puppet': agent => true, runmode => 'systemd.timer'}"
end
case os
when /\Adebian-(8|9)/, /\A(redhat|centos|scientific)-7/, /\Afedora-/, /\Aubuntu-16/, /\Aarchlinux-/
it do
should contain_class('puppet::agent::service::daemon').with(:enabled => false)
should contain_class('puppet::agent::service::cron').with(:enabled => false)
should contain_class('puppet::agent::service::systemd').with(:enabled => true)
should contain_service('puppet-run.timer').with(:ensure => :running)
end
else
it { should raise_error(Puppet::Error, /Runmode of systemd.timer not supported on #{facts[:kernel]} operating systems!/) }
end
end
describe 'when unavailable_runmodes => ["cron"]' do
let :pre_condition do
"class {'puppet': agent => true, unavailable_runmodes => ['cron']}"
end
it do
should_not contain_cron('puppet')
end
end
describe 'when runmode => none' do
let :pre_condition do
"class {'puppet': agent => true, runmode => 'none'}"
end
it do
should contain_class('puppet::agent::service::daemon').with(:enabled => false)
should contain_class('puppet::agent::service::cron').with(:enabled => false)
end
case os
when /\Adebian-(8|9)/, /\A(redhat|centos|scientific)-7/, /\Afedora-/, /\Aubuntu-16/, /\Aarchlinux-/
it do
should contain_class('puppet::agent::service::systemd').with(:enabled => false)
should contain_service('puppet-run.timer').with(:ensure => :stopped)
end
else
it do
should contain_class('puppet::agent::service::systemd').with(:enabled => false)
should_not contain_service('puppet-run.timer')
end
end
end
end
end
end