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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
|
#
# Author:: AJ Christensen (<aj@hjksolutions.com>)
# Author:: Tyler Cloke (<tyler@chef.io>)
# Copyright:: Copyright 2008-2017, Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require "spec_helper"
describe Chef::Resource::Service do
let(:resource) { Chef::Resource::Service.new("chef") }
it "does not set a provider unless node[:init_package] is defined as systemd" do
expect(resource.provider).to eq(nil)
end
it "sets the service_name to the first argument to new" do
expect(resource.service_name).to eql("chef")
end
it "sets the default action as :nothing" do
expect(resource.action).to eql([:nothing])
end
it "supports :disable, :enable, :mask, :reload, :restart, :start, :stop, :unmask actions" do
expect { resource.action :disable }.not_to raise_error
expect { resource.action :enable }.not_to raise_error
expect { resource.action :mask }.not_to raise_error
expect { resource.action :reload }.not_to raise_error
expect { resource.action :restart }.not_to raise_error
expect { resource.action :start }.not_to raise_error
expect { resource.action :stop }.not_to raise_error
expect { resource.action :unmask }.not_to raise_error
end
it "sets the pattern to be the service name by default" do
expect(resource.pattern).to eql("chef")
end
it "accepts a string for the service name" do
resource.service_name "something"
expect(resource.service_name).to eql("something")
end
it "accepts a string for the service pattern" do
resource.pattern ".*"
expect(resource.pattern).to eql(".*")
end
it "does not accept a regexp for the service pattern" do
expect do
resource.pattern /.*/
end.to raise_error(ArgumentError)
end
it "accepts a string for the service start command" do
resource.start_command "/etc/init.d/chef start"
expect(resource.start_command).to eql("/etc/init.d/chef start")
end
it "does not accept a regexp for the service start command" do
expect do
resource.start_command /.*/
end.to raise_error(ArgumentError)
end
it "accepts a string for the service stop command" do
resource.stop_command "/etc/init.d/chef stop"
expect(resource.stop_command).to eql("/etc/init.d/chef stop")
end
it "does not accept a regexp for the service stop command" do
expect do
resource.stop_command /.*/
end.to raise_error(ArgumentError)
end
it "accepts a string for the service status command" do
resource.status_command "/etc/init.d/chef status"
expect(resource.status_command).to eql("/etc/init.d/chef status")
end
it "does not accept a regexp for the service status command" do
expect do
resource.status_command /.*/
end.to raise_error(ArgumentError)
end
it "accepts a string for the service restart command" do
resource.restart_command "/etc/init.d/chef restart"
expect(resource.restart_command).to eql("/etc/init.d/chef restart")
end
it "does not accept a regexp for the service restart command" do
expect do
resource.restart_command /.*/
end.to raise_error(ArgumentError)
end
it "accepts a string for the service reload command" do
resource.reload_command "/etc/init.d/chef reload"
expect(resource.reload_command).to eql("/etc/init.d/chef reload")
end
it "does not accept a regexp for the service reload command" do
expect do
resource.reload_command /.*/
end.to raise_error(ArgumentError)
end
it "accepts a string for the service init command" do
resource.init_command "/etc/init.d/chef"
expect(resource.init_command).to eql("/etc/init.d/chef")
end
it "does not accept a regexp for the service init command" do
expect do
resource.init_command /.*/
end.to raise_error(ArgumentError)
end
it "accepts an array for options" do
resource.options ["-r", "-s"]
expect(resource.options).to eql(["-r", "-s"])
end
it "accepts a string for options" do
resource.options "-r"
expect(resource.options).to eql(["-r"])
end
it "accepts a string with multiple flags for options" do
resource.options "-r -s"
expect(resource.options).to eql(["-r", "-s"])
end
it "does not accept a boolean for options" do
expect do
resource.options true
end.to raise_error(ArgumentError)
end
%w{enabled running}.each do |attrib|
it "accepts true for #{attrib}" do
resource.send(attrib, true)
expect(resource.send(attrib)).to eql(true)
end
it "accepts false for #{attrib}" do
resource.send(attrib, false)
expect(resource.send(attrib)).to eql(false)
end
it "does not accept a string for #{attrib}" do
expect { resource.send(attrib, "poop") }.to raise_error(ArgumentError)
end
it "defaults all the feature support to nil" do
support_hash = { :status => nil, :restart => nil, :reload => nil }
expect(resource.supports).to eq(support_hash)
end
it "allows you to set what features this resource supports as a array" do
support_array = [ :status, :restart ]
support_hash = { :status => true, :restart => true }
resource.supports(support_array)
expect(resource.supports).to eq(support_hash)
end
it "allows you to set what features this resource supports as a hash" do
support_hash = { :status => true, :restart => true }
resource.supports(support_hash)
expect(resource.supports).to eq(support_hash)
end
end
describe "when it has pattern and supports" do
before do
resource.service_name("superfriend")
resource.enabled(true)
resource.running(false)
end
it "describes its state" do
state = resource.state_for_resource_reporter
expect(state[:enabled]).to eql(true)
expect(state[:running]).to eql(false)
end
it "returns the service name as its identity" do
expect(resource.identity).to eq("superfriend")
end
end
end
|