summaryrefslogtreecommitdiff
path: root/spec/unit/provider/service/aix_service_spec.rb
blob: 5cca7d6f0a2d86c8f0c96f47276bae7e78fab08e (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
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
#
# Author:: Kaustubh <kaustubh@clogeny.com>
# Copyright:: Copyright (c) 2014 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::Provider::Service::Aix do
  before(:each) do
    @node = Chef::Node.new
    @events = Chef::EventDispatch::Dispatcher.new
    @run_context = Chef::RunContext.new(@node, {}, @events)

    @new_resource = Chef::Resource::Service.new("chef")
    @current_resource = Chef::Resource::Service.new("chef")

    @provider = Chef::Provider::Service::Aix.new(@new_resource, @run_context)
    allow(Chef::Resource::Service).to receive(:new).and_return(@current_resource)
  end

  describe "load current resource" do
    it "should create a current resource with the name of the new resource and determine the status" do
      @status = double("Status", :exitstatus => 0, :stdout => @stdout)
      allow(@provider).to receive(:shell_out!).and_return(@status)

      expect(Chef::Resource::Service).to receive(:new).and_return(@current_resource)
      expect(@current_resource).to receive(:service_name).with("chef")
      expect(@provider).to receive(:determine_current_status!)

      @provider.load_current_resource
    end
  end

  describe "determine current status" do
    context "when the service is active" do
      before do
        @status = double("Status", :exitstatus => 0, :stdout => "chef chef 12345 active\n")
      end

      it "current resource is running" do
        expect(@provider).to receive(:shell_out!).with("lssrc -s chef").and_return(@status)
        expect(@provider).to receive(:is_resource_group?).and_return false

        @provider.load_current_resource
        expect(@current_resource.running).to be_truthy
      end
    end

    context "when the service is inoperative" do
      before do
        @status = double("Status", :exitstatus => 0, :stdout => "chef chef inoperative\n")
      end

      it "current resource is not running" do
        expect(@provider).to receive(:shell_out!).with("lssrc -s chef").and_return(@status)
        expect(@provider).to receive(:is_resource_group?).and_return false

        @provider.load_current_resource
        expect(@current_resource.running).to be_falsey
      end
    end

    context "when there is no such service" do
      before do
        @status = double("Status", :exitstatus => 1, :stdout => "0513-085 The chef Subsystem is not on file.\n")
      end
      it "current resource is not running" do
        expect(@provider).to receive(:shell_out!).with("lssrc -s chef").and_return(@status)
        expect(@provider).to receive(:is_resource_group?).and_return false

        @provider.load_current_resource
        expect(@current_resource.running).to be_falsey
      end
    end
  end

  describe "is resource group" do
    context "when there are multiple subsystems associated with group" do
      before do
        @status = double("Status", :exitstatus => 0, :stdout => "chef1 chef 12345 active\nchef2 chef 12334 active\nchef3 chef inoperative")
      end

      it "service is a group" do
        expect(@provider).to receive(:shell_out).with("lssrc -g chef").and_return(@status)
        @provider.load_current_resource
        expect(@provider.instance_eval("@is_resource_group")).to be_truthy
      end
    end

    context "when there is a single subsystem in the group" do
      before do
        @status = double("Status", :exitstatus => 0, :stdout => "chef1 chef inoperative\n")
      end

      it "service is a group" do
        expect(@provider).to receive(:shell_out).with("lssrc -g chef").and_return(@status)
        @provider.load_current_resource
        expect(@provider.instance_eval("@is_resource_group")).to be_truthy
      end
    end

    context "when the service is a subsystem" do
      before do
        @group_status = double("Status", :exitstatus => 1, :stdout => "0513-086 The chef Group is not on file.\n")
        @service_status = double("Status", :exitstatus => 0, :stdout => "chef chef inoperative\n")
      end

      it "service is a subsystem" do
        expect(@provider).to receive(:shell_out).with("lssrc -g chef").and_return(@group_status)
        expect(@provider).to receive(:shell_out!).with("lssrc -s chef").and_return(@service_status)
        @provider.load_current_resource
        expect(@provider.instance_eval("@is_resource_group")).to be_falsey
      end
    end
  end

  describe "when starting the service" do
    before do
      @new_resource.service_name "apache"
    end

    it "should call the start command for groups" do
      @provider.instance_eval('@is_resource_group = true')
      expect(@provider).to receive(:shell_out!).with("startsrc -g #{@new_resource.service_name}")

      @provider.start_service
    end

    it "should call the start command for subsystem" do
      expect(@provider).to receive(:shell_out!).with("startsrc -s #{@new_resource.service_name}")

      @provider.start_service
    end
  end

  describe "when stopping a service" do
    before do
      @new_resource.service_name "apache"
    end

    it "should call the stop command for groups" do
      @provider.instance_eval('@is_resource_group = true')
      expect(@provider).to receive(:shell_out!).with("stopsrc -g #{@new_resource.service_name}")

      @provider.stop_service
    end

    it "should call the stop command for subsystem" do
      expect(@provider).to receive(:shell_out!).with("stopsrc -s #{@new_resource.service_name}")

      @provider.stop_service
    end
  end

  describe "when reloading a service" do
    before do
      @new_resource.service_name "apache"
    end

    it "should call the reload command for groups" do
      @provider.instance_eval('@is_resource_group = true')
      expect(@provider).to receive(:shell_out!).with("refresh -g #{@new_resource.service_name}")

      @provider.reload_service
    end

    it "should call the reload command for subsystem" do
      expect(@provider).to receive(:shell_out!).with("refresh -s #{@new_resource.service_name}")

      @provider.reload_service
    end
  end

  describe "when restarting the service" do
    it "should call stop service followed by start service" do
      expect(@provider).to receive(:stop_service)
      expect(@provider).to receive(:start_service)

      @provider.restart_service
    end
  end
end