summaryrefslogtreecommitdiff
path: root/spec/unit/plugins/root_group_spec.rb
blob: 4ac2a2b0fd30548705907881da1f3c71e087eee2 (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
#
# Author:: Joseph Anthony Pasquale Holsten (<joseph@josephholsten.com>)
# Copyright:: Copyright (c) 2013 Joseph Anthony Pasquale Holsten
# 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_relative "../../spec_helper.rb"

describe Ohai::System, "root_group" do
  before(:each) do
    @plugin = get_plugin("root_group")
  end

  describe "unix platform", :unix_only do
    before(:each) do
      # this is deeply intertwingled. unfortunately, the law of demeter
      # apparently didn't apply to this api. we're just trying to fake
      # Etc.getgrgid(Etc.getpwnam('root').gid).name
      @pwnam = Object.new
      allow(@pwnam).to receive(:gid).and_return(0)
      allow(Etc).to receive(:getpwnam).with("root").and_return(@pwnam)
      @grgid = Object.new
      allow(Etc).to receive(:getgrgid).and_return(@grgid)
    end

    describe "with wheel group" do
      before(:each) do
        allow(@grgid).to receive(:name).and_return("wheel")
      end
      it "should have a root_group of wheel" do
        @plugin.run
        expect(@plugin[:root_group]).to eq("wheel")
      end
    end

    describe "with root group" do
      before(:each) do
        allow(@grgid).to receive(:name).and_return("root")
      end
      it "should have a root_group of root" do
        @plugin.run
        expect(@plugin[:root_group]).to eq("root")
      end
    end

    describe "platform hpux with sys group" do
      before(:each) do
        allow(@pwnam).to receive(:gid).and_return(3)
        allow(@grgid).to receive(:name).and_return("sys")
      end
      it "should have a root_group of sys" do
        @plugin.run
        expect(@plugin[:root_group]).to eq("sys")
      end
    end
    describe "platform aix with system group" do
      before(:each) do
        allow(@grgid).to receive(:name).and_return("system")
      end
      it "should have a root_group of system" do
        @plugin.run
        expect(@plugin[:root_group]).to eq("system")
      end
    end
  end

  describe "windows platform" do

    let(:wmi) { double("wmi", { query: "" }) }

    before(:each) do
      allow(WmiLite::Wmi).to receive(:new).and_return(wmi)
      allow(@plugin).to receive(:collect_os).and_return(:windows)
    end
    it "should return the group Administrators" do
      expect(wmi)
        .to receive(:query)
        .with("select * from Win32_Group where sid like 'S-1-5-32-544' and LocalAccount=True")
        .and_return("Administrators")

      @plugin.run
    end
  end
end