summaryrefslogtreecommitdiff
path: root/chef/spec/unit/resource/service_spec.rb
blob: f5941f89ae0f78a6463dfa0f03102fff32087b00 (plain)
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
#
# Author:: AJ Christensen (<aj@hjksolutions.com>)
# Copyright:: Copyright (c) 2008 HJK Solutions, LLC
# 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 File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "spec_helper"))

describe Chef::Resource::Service do

  before(:each) do
    @resource = Chef::Resource::Service.new("chef")
  end  

  it "should create a new Chef::Resource::Service" do
    @resource.should be_a_kind_of(Chef::Resource)
    @resource.should be_a_kind_of(Chef::Resource::Service)
  end

  it "should set the service_name to the first argument to new" do
    @resource.service_name.should eql("chef")
  end

  it "should set the pattern to be the service name by default" do
    @resource.pattern.should eql("chef")
  end

  it "should accept a string for the service name" do
    @resource.service_name "something"
    @resource.service_name.should eql("something")
  end
 
  it "should accept a string for the service pattern" do
    @resource.pattern ".*"
    @resource.pattern.should eql(".*")
  end

  it "should not accept a regexp for the service pattern" do
    lambda {
      @resource.pattern /.*/
    }.should raise_error(ArgumentError)
  end
  
  it "should accept a string for the service start command" do
    @resource.start_command "/etc/init.d/chef start"
    @resource.start_command.should eql("/etc/init.d/chef start")
  end

  it "should not accept a regexp for the service start command" do
    lambda {
      @resource.start_command /.*/
    }.should raise_error(ArgumentError)
  end
  
  it "should accept a string for the service stop command" do
    @resource.stop_command "/etc/init.d/chef stop"
    @resource.stop_command.should eql("/etc/init.d/chef stop")
  end

  it "should not accept a regexp for the service stop command" do
    lambda {
      @resource.stop_command /.*/
    }.should raise_error(ArgumentError)
  end
  
  it "should accept a string for the service status command" do
    @resource.status_command "/etc/init.d/chef status"
    @resource.status_command.should eql("/etc/init.d/chef status")
  end
  
  it "should not accept a regexp for the service status command" do
    lambda {
      @resource.status_command /.*/
    }.should raise_error(ArgumentError)
  end
  
  it "should accept a string for the service restart command" do
    @resource.restart_command "/etc/init.d/chef restart"
    @resource.restart_command.should eql("/etc/init.d/chef restart")
  end
  
  it "should not accept a regexp for the service restart command" do
    lambda {
      @resource.restart_command /.*/
    }.should raise_error(ArgumentError)
  end
  
end