forked from theforeman/puppet-puppet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpuppet_agent_config_spec.rb
84 lines (73 loc) · 2.77 KB
/
puppet_agent_config_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
require 'spec_helper'
describe 'puppet::agent::config' do
on_os_under_test.each do |os, facts|
next if facts[:osfamily] == 'windows' # TODO, see https://github.com/fessyfoo/rspec-puppet-windows-issue
context "on #{os}" do
let(:facts) { facts }
context 'with default parameters' do
let :pre_condition do
'include ::puppet'
end
it { should compile.with_all_deps }
it { should contain_concat__fragment( 'puppet.conf_agent' ) }
if facts[:osfamily] == 'Debian'
it { should contain_augeas('puppet::set_start').
with_context('/files/etc/default/puppet').
with_changes('set START yes').
with_incl('/etc/default/puppet').
with_lens('Shellvars.lns').
with({})
}
it { should contain_file('/var/lib/puppet/state/agent_disabled.lock').
with_ensure(:absent).
with({})
}
end
it { should contain_puppet__config__agent('certname').with(facts[:certname]) }
end
context 'with runmode => cron', :unless => (facts[:osfamily] == 'Archlinux') do
let :pre_condition do
'class { "::puppet": runmode => "cron" }'
end
it { should compile.with_all_deps }
it { should contain_concat__fragment( 'puppet.conf_agent' ) }
if facts[:osfamily] == 'Debian'
it { should contain_augeas('puppet::set_start').
with_context('/files/etc/default/puppet').
with_changes('set START no').
with_incl('/etc/default/puppet').
with_lens('Shellvars.lns').
with({})
}
it { should contain_file('/var/lib/puppet/state/agent_disabled.lock').
with_ensure(:absent).
with({})
}
end
end
context 'with remove_lock => false' do
let :pre_condition do
'class { "::puppet": remove_lock => false }'
end
it { should compile.with_all_deps }
it { should contain_concat__fragment( 'puppet.conf_agent' ) }
if facts[:osfamily] == 'Debian'
it { should contain_augeas('puppet::set_start').
with_context('/files/etc/default/puppet').
with_changes('set START yes').
with_incl('/etc/default/puppet').
with_lens('Shellvars.lns').
with({})
}
it { should_not contain_file('/var/lib/puppet/state/agent_disabled.lock') }
end
end
context 'with client_certname => false' do
let :pre_condition do
'class { "::puppet": client_certname => false }'
end
it { should_not contain_puppet__config__agent('certname') }
end
end
end
end