forked from puppetlabs/puppetlabs-apache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service_spec.rb
109 lines (98 loc) · 2.62 KB
/
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
require 'spec_helper'
describe 'apache::service', :type => :class do
let :pre_condition do
'include apache::params'
end
context "on a Debian OS" do
let :facts do
{
:osfamily => 'Debian',
:operatingsystemrelease => '6',
:concat_basedir => '/dne',
}
end
it { should contain_service("httpd").with(
'name' => 'apache2',
'ensure' => 'running',
'enable' => 'true'
)
}
context "with $service_name => 'foo'" do
let (:params) {{ :service_name => 'foo' }}
it { should contain_service("httpd").with(
'name' => 'foo'
)
}
end
context "with $service_enable => true" do
let (:params) {{ :service_enable => true }}
it { should contain_service("httpd").with(
'name' => 'apache2',
'ensure' => 'running',
'enable' => 'true'
)
}
end
context "with $service_enable => false" do
let (:params) {{ :service_enable => false }}
it { should contain_service("httpd").with(
'name' => 'apache2',
'ensure' => 'running',
'enable' => 'false'
)
}
end
context "$service_enable must be a bool" do
let (:params) {{ :service_enable => 'not-a-boolean' }}
it 'should fail' do
expect { subject }.to raise_error(Puppet::Error, /is not a boolean/)
end
end
context "with $service_ensure => 'running'" do
let (:params) {{ :service_ensure => 'running', }}
it { should contain_service("httpd").with(
'ensure' => 'running',
'enable' => 'true'
)
}
end
context "with $service_ensure => 'stopped'" do
let (:params) {{ :service_ensure => 'stopped', }}
it { should contain_service("httpd").with(
'ensure' => 'stopped',
'enable' => 'true'
)
}
end
end
context "on a RedHat 5 OS" do
let :facts do
{
:osfamily => 'RedHat',
:operatingsystemrelease => '5',
:concat_basedir => '/dne',
}
end
it { should contain_service("httpd").with(
'name' => 'httpd',
'ensure' => 'running',
'enable' => 'true'
)
}
end
context "on a FreeBSD 5 OS" do
let :facts do
{
:osfamily => 'FreeBSD',
:operatingsystemrelease => '9',
:concat_basedir => '/dne',
}
end
it { should contain_service("httpd").with(
'name' => 'apache22',
'ensure' => 'running',
'enable' => 'true'
)
}
end
end