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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
require 'spec_helper'
describe 'dhcp' do
context 'when on an unsupported OS' do
let (:facts) { {
:operatingsystem => 'RedHat',
:osfamily => 'Redhat',
:lsbdistcodename => 'Santiago',
:id => 'root',
:path => '/foo/bar'
} }
it 'should fail' do
expect {
should contain_package('dhcp-server')
}.to raise_error(Puppet::Error, /Unsupported OS RedHat\/Santiago/)
end
end
on_supported_os.each do |os, facts|
context "on #{os}" do
let(:facts) do
facts.merge({
:concat_basedir => '/var/lib/puppet/concat',
})
end
case facts[:osfamily]
when 'Debian'
case facts[:operatingsystemmajrelease]
when '5'
let(:pkg_name) { 'dhcp3-server' }
let(:confdir) { '/etc/dhcp3' }
let(:srv_name) { 'dhcp3-server' }
let(:srv_pattern) { '/usr/sbin/dhcp3' }
else
let(:pkg_name) { 'isc-dhcp-server' }
let(:confdir) { '/etc/dhcp' }
let(:srv_name) { 'isc-dhcp-server' }
let(:srv_pattern) { '/usr/sbin/dhcpd' }
end
end
# Package
it { should contain_package('dhcp-server').with(
:name => pkg_name
) }
# Config
it { should contain_concat("#{confdir}/dhcpd.conf").with(
:owner => 'root',
:group => 'root',
:mode => '0644'
) }
it { should contain_concat__fragment('00.dhcp.server.base').with(
:ensure => 'present',
:target => "#{confdir}/dhcpd.conf",
:content => /log-facility/
).with_content(/ddns-update-style none;/).with_content(/#authoritative/)
}
# Service
it { should contain_service('dhcpd').with(
:ensure => 'running',
:name => srv_name,
:enable => true,
:pattern => srv_pattern
) }
context 'when passing ddns_update' do
context 'when passing wrong type' do
let (:params) { {
:server_ddns_update => true
} }
it 'should fail' do
expect {
should contain_concat__fragment('00.dhcp.server.base')
}.to raise_error(Puppet::Error, /true is not a string./)
end
end
context 'when passing valid value' do
let (:params) { {
:server_ddns_update => 'foo'
} }
it { should contain_concat__fragment('00.dhcp.server.base').with(
:ensure => 'present',
:target => '/etc/dhcp/dhcpd.conf',
:content => /log-facility/
).with_content(/ddns-update-style foo;/).with_content(/#authoritative/)
}
end
end
context 'when passing authoritative' do
context 'when passing wrong type' do
let (:params) { {
:server_authoritative => 'foo'
} }
it 'should fail' do
expect {
should contain_concat__fragment('00.dhcp.server.base')
}.to raise_error(Puppet::Error, /"foo" is not a boolean./)
end
end
context 'when passing valid value' do
let (:params) { {
:server_authoritative => true
} }
it { should contain_concat__fragment('00.dhcp.server.base').with(
:ensure => 'present',
:target => '/etc/dhcp/dhcpd.conf',
:content => /log-facility/
).with_content(/ddns-update-style none;/).with_content(/[^#]authoritative/)
}
end
end
context 'when passing opts' do
context 'when passing wrong type' do
let (:params) { {
:server_opts => 'foo'
} }
it 'should fail' do
expect {
should contain_concat__fragment('00.dhcp.server.base')
}.to raise_error(Puppet::Error, /"foo" is not an Array./)
end
end
context 'when passing valid value' do
let (:params) { {
:server_opts => ['foo', 'bar', 'baz']
} }
it { should contain_concat__fragment('00.dhcp.server.base').with(
:ensure => 'present',
:target => '/etc/dhcp/dhcpd.conf',
:content => /log-facility/
).with_content(/ddns-update-style none;/).with_content(/#authoritative/).with_content(/foo;\nbar;\nbaz;\n/)
}
end
end
end
end
end
|