spec/unit/plugins/linux/virtualization_spec.rb in ohai-8.10.0 vs spec/unit/plugins/linux/virtualization_spec.rb in ohai-8.11.1

- old
+ new

@@ -14,11 +14,11 @@ # 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.dirname(__FILE__) + '/../../../spec_helper.rb') +require File.expand_path(File.dirname(__FILE__) + "/../../../spec_helper.rb") describe Ohai::System, "Linux virtualization platform" do let(:plugin) { get_plugin("linux/virtualization") } before(:each) do @@ -70,11 +70,11 @@ end it "does not set virtualization if xen isn't there" do expect(File).to receive(:exist?).at_least(:once).and_return(false) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end end describe "when we are checking for kvm" do it "sets kvm host if /proc/modules contains kvm" do @@ -114,11 +114,11 @@ end it "does not set virtualization if kvm isn't there" do expect(File).to receive(:exist?).at_least(:once).and_return(false) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end end describe "when we are checking for VirtualBox" do it "sets vbox host if /proc/modules contains vboxdrv" do @@ -140,21 +140,21 @@ end it "does not set virtualization if vbox isn't there" do expect(File).to receive(:exist?).at_least(:once).and_return(false) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end end describe "when we are parsing dmidecode" do before(:each) do expect(File).to receive(:exist?).with("/usr/sbin/dmidecode").and_return(true) end it "sets virtualpc guest if dmidecode detects Microsoft Virtual Machine" do - ms_vpc_dmidecode=<<-MSVPC + ms_vpc_dmidecode = <<-MSVPC System Information Manufacturer: Microsoft Corporation Product Name: Virtual Machine Version: VS2005R2 Serial Number: 1688-7189-5337-7903-2297-1012-52 @@ -167,11 +167,11 @@ expect(plugin[:virtualization][:role]).to eq("guest") expect(plugin[:virtualization][:systems][:virtualpc]).to eq("guest") end it "sets hyperv guest if dmidecode detects Hyper-V or version 7.0" do - ms_hv_dmidecode=<<-MSHV + ms_hv_dmidecode = <<-MSHV System Information Manufacturer: Microsoft Corporation Product Name: Virtual Machine Version: 7.0 Serial Number: 9242-2608-7031-8934-2088-5216-61 @@ -184,11 +184,11 @@ expect(plugin[:virtualization][:role]).to eq("guest") expect(plugin[:virtualization][:systems][:hyperv]).to eq("guest") end it "sets virtualserver guest if dmidecode detects version 5.0" do - ms_vs_dmidecode=<<-MSVS + ms_vs_dmidecode = <<-MSVS System Information Manufacturer: Microsoft Corporation Product Name: Virtual Machine Version: 5.0 Serial Number: 1688-7189-5337-7903-2297-1012-52 @@ -201,11 +201,11 @@ expect(plugin[:virtualization][:role]).to eq("guest") expect(plugin[:virtualization][:systems][:virtualserver]).to eq("guest") end it "sets vmware guest if dmidecode detects VMware" do - vmware_dmidecode=<<-VMWARE + vmware_dmidecode = <<-VMWARE System Information Manufacturer: VMware, Inc. Product Name: VMware Virtual Platform Version: None Serial Number: VMware-50 3f f7 14 42 d1 f1 da-3b 46 27 d0 29 b4 74 1d @@ -220,11 +220,11 @@ expect(plugin[:virtualization][:role]).to eq("guest") expect(plugin[:virtualization][:systems][:vmware]).to eq("guest") end it "sets vbox guest if dmidecode detects VirtualBox" do - vbox_dmidecode=<<-VBOX + vbox_dmidecode = <<-VBOX Base Board Information Manufacturer: Oracle Corporation Product Name: VirtualBox Version: 1.2 Serial Number: 0 @@ -241,11 +241,11 @@ expect(plugin[:virtualization][:role]).to eq("guest") expect(plugin[:virtualization][:systems][:vbox]).to eq("guest") end it "sets openstack guest if dmidecode detects OpenStack" do - openstack_dmidecode=<<-OPENSTACK + openstack_dmidecode = <<-OPENSTACK System Information Manufacturer: Red Hat Inc. Product Name: OpenStack Nova Version: 2014.1.2-1.el6 Serial Number: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX @@ -260,11 +260,11 @@ expect(plugin[:virtualization][:role]).to eq("guest") expect(plugin[:virtualization][:systems][:openstack]).to eq("guest") end it "sets kvm guest if dmidecode contains KVM" do - kvm_dmidecode=<<-RKVM + kvm_dmidecode = <<-RKVM System Information Manufacturer: Red Hat Product Name: KVM Version: RHEL 7.0.0 PC (i440FX + PIIX, 1996) Serial Number: Not Specified @@ -279,11 +279,11 @@ expect(plugin[:virtualization][:role]).to eq("guest") expect(plugin[:virtualization][:systems][:kvm]).to eq("guest") end it "sets kvm guest if dmidecode detects RHEV" do - kvm_dmidecode=<<-RHEV + kvm_dmidecode = <<-RHEV System Information Manufacturer: Red Hat Product Name: RHEV Hypervisor Version: 6.7-20150911.0.el6ev Serial Number: 00000000-0000-0000-0000-000000000000 @@ -300,73 +300,73 @@ end it "should run dmidecode and not set virtualization if nothing is detected" do allow(plugin).to receive(:shell_out).with("dmidecode").and_return(mock_shell_out(0, "", "")) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end end describe "when we are checking for Linux-VServer" do it "sets Linux-VServer host if /proc/self/status contains s_context: 0" do expect(File).to receive(:exist?).with("/proc/self/status").and_return(true) allow(File).to receive(:read).with("/proc/self/status").and_return("s_context: 0") plugin.run expect(plugin[:virtualization][:system]).to eq("linux-vserver") expect(plugin[:virtualization][:role]).to eq("host") - expect(plugin[:virtualization][:systems]['linux-vserver']).to eq("host") + expect(plugin[:virtualization][:systems]["linux-vserver"]).to eq("host") end it "sets Linux-VServer host if /proc/self/status contains VxID: 0" do expect(File).to receive(:exist?).with("/proc/self/status").and_return(true) allow(File).to receive(:read).with("/proc/self/status").and_return("VxID: 0") plugin.run expect(plugin[:virtualization][:system]).to eq("linux-vserver") expect(plugin[:virtualization][:role]).to eq("host") - expect(plugin[:virtualization][:systems]['linux-vserver']).to eq("host") + expect(plugin[:virtualization][:systems]["linux-vserver"]).to eq("host") end it "sets Linux-VServer host if /proc/self/status contains multiple space VxID: 0" do expect(File).to receive(:exist?).with("/proc/self/status").and_return(true) allow(File).to receive(:read).with("/proc/self/status").and_return("VxID: 0") plugin.run expect(plugin[:virtualization][:system]).to eq("linux-vserver") expect(plugin[:virtualization][:role]).to eq("host") - expect(plugin[:virtualization][:systems]['linux-vserver']).to eq("host") + expect(plugin[:virtualization][:systems]["linux-vserver"]).to eq("host") end it "sets Linux-VServer host if /proc/self/status contains tabbed VxID:\t0" do expect(File).to receive(:exist?).with("/proc/self/status").and_return(true) allow(File).to receive(:read).with("/proc/self/status").and_return("VxID:\t0") plugin.run expect(plugin[:virtualization][:system]).to eq("linux-vserver") expect(plugin[:virtualization][:role]).to eq("host") - expect(plugin[:virtualization][:systems]['linux-vserver']).to eq("host") + expect(plugin[:virtualization][:systems]["linux-vserver"]).to eq("host") end it "sets Linux-VServer guest if /proc/self/status contains s_context > 0" do expect(File).to receive(:exist?).with("/proc/self/status").and_return(true) allow(File).to receive(:read).with("/proc/self/status").and_return("s_context: 2") plugin.run expect(plugin[:virtualization][:system]).to eq("linux-vserver") expect(plugin[:virtualization][:role]).to eq("guest") - expect(plugin[:virtualization][:systems]['linux-vserver']).to eq("guest") + expect(plugin[:virtualization][:systems]["linux-vserver"]).to eq("guest") end it "sets Linux-VServer guest if /proc/self/status contains VxID > 0" do expect(File).to receive(:exist?).with("/proc/self/status").and_return(true) allow(File).to receive(:read).with("/proc/self/status").and_return("VxID: 2") plugin.run expect(plugin[:virtualization][:system]).to eq("linux-vserver") expect(plugin[:virtualization][:role]).to eq("guest") - expect(plugin[:virtualization][:systems]['linux-vserver']).to eq("guest") + expect(plugin[:virtualization][:systems]["linux-vserver"]).to eq("guest") end it "does not set virtualization if Linux-VServer isn't there" do expect(File).to receive(:exist?).at_least(:once).and_return(false) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end end describe "when we are checking for openvz" do it "sets openvz host if /proc/bc/0 exists" do @@ -388,17 +388,17 @@ it "does not set virtualization if openvz isn't there" do expect(File).to receive(:exist?).with("/proc/bc/0").and_return(false) expect(File).to receive(:exist?).with("/proc/vz").and_return(false) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end end describe "when we are checking for parallels" do it "sets parallels guest if /proc/bus/pci/devices contains 1ab84000" do - devices=<<-DEVICES + devices = <<-DEVICES 0018 1ab84000 1f 8001 0 0 0 0 0 0 20 0 0 0 0 0 0 prl_tg 0028 1af41000 17 8201 ee000000 0 0 0 0 0 40 1000 0 0 0 0 0 virtio-pci DEVICES expect(File).to receive(:exist?).with("/proc/bus/pci/devices").and_return(true) allow(File).to receive(:read).with("/proc/bus/pci/devices").and_return(devices) @@ -407,24 +407,24 @@ expect(plugin[:virtualization][:role]).to eq("guest") expect(plugin[:virtualization][:systems][:parallels]).to eq("guest") end it "does not set virtualization if /proc/bus/pci/devices not contains 1ab84000" do - devices=<<-DEVICES + devices = <<-DEVICES 0030 1af41000 a 8401 ee040000 0 0 0 0 0 40 1000 0 0 0 0 0 virtio-pci 0050 10110022 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 DEVICES expect(File).to receive(:exist?).with("/proc/bus/pci/devices").and_return(true) allow(File).to receive(:read).with("/proc/bus/pci/devices").and_return(devices) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end end describe "when we are checking for lxc" do it "sets lxc guest if /proc/self/cgroup exist and there are /lxc/<hexadecimal> mounts" do - self_cgroup=<<-CGROUP + self_cgroup = <<-CGROUP 8:blkio:/lxc/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc 7:net_cls:/lxc/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc 6:freezer:/lxc/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc 5:devices:/lxc/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc 4:memory:/lxc/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc @@ -439,11 +439,11 @@ expect(plugin[:virtualization][:role]).to eq("guest") expect(plugin[:virtualization][:systems][:lxc]).to eq("guest") end it "sets lxc guest if /proc/self/cgroup exist and there are /lxc/<name> mounts" do - self_cgroup=<<-CGROUP + self_cgroup = <<-CGROUP 8:blkio:/lxc/vanilla 7:net_cls:/lxc/vanilla 6:freezer:/lxc/vanilla 5:devices:/lxc/vanilla 4:memory:/lxc/vanilla @@ -458,11 +458,11 @@ expect(plugin[:virtualization][:role]).to eq("guest") expect(plugin[:virtualization][:systems][:lxc]).to eq("guest") end it "sets not set anything if /proc/self/cgroup exist and the cgroup is named arbitrarily, it isn't necessarily lxc." do - self_cgroup=<<-CGROUP + self_cgroup = <<-CGROUP 8:blkio:/Charlie 7:net_cls:/Charlie 6:freezer:/Charlie 5:devices:/Charlie 4:memory:/Charlie @@ -471,16 +471,16 @@ 1:cpuset:/Charlie CGROUP expect(File).to receive(:exist?).with("/proc/self/cgroup").and_return(true) allow(File).to receive(:read).with("/proc/self/cgroup").and_return(self_cgroup) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end context "/proc/self/cgroup only has / mounts" do before(:each) do - self_cgroup=<<-CGROUP + self_cgroup = <<-CGROUP 8:blkio:/ 7:net_cls:/ 6:freezer:/ 5:devices:/ 4:memory:/ @@ -513,25 +513,25 @@ it "does not set lxc host if lxc-version does not exist" do allow(plugin).to receive(:lxc_version_exists?).and_return(false) plugin.run expect(plugin[:virtualization][:system]).to be_nil expect(plugin[:virtualization][:role]).to be_nil - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end end it "does not set virtualization if /proc/self/cgroup isn't there" do expect(File).to receive(:exist?).with("/proc/self/cgroup").and_return(false) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end end describe "when we are checking for docker" do it "sets docker guest if /proc/self/cgroup exist and there are /docker/<hexadecimal> mounts" do - self_cgroup=<<-CGROUP + self_cgroup = <<-CGROUP 8:blkio:/docker/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc 7:net_cls:/docker/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc 6:freezer:/docker/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc 5:devices:/docker/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc 4:memory:/docker/baa660ed81bc81d262ac6e19486142aeec5fce2043e2a173eb2505c6fbed89bc @@ -546,11 +546,11 @@ expect(plugin[:virtualization][:role]).to eq("guest") expect(plugin[:virtualization][:systems][:docker]).to eq("guest") end it "sets docker guest if /proc/self/cgroup exist and there are /docker/<name> mounts" do - self_cgroup=<<-CGROUP + self_cgroup = <<-CGROUP 8:blkio:/docker/vanilla 7:net_cls:/docker/vanilla 6:freezer:/docker/vanilla 5:devices:/docker/vanilla 4:memory:/docker/vanilla @@ -567,11 +567,11 @@ end # Relevant at least starting docker 1.6.2, kernel 4.0.5 & systemd 224-1. # Doi not exactly know which software/version really matters here. it "should set docker guest if /proc/self/cgroup exists and there are /system.slice/docker-<hexadecimal> mounts (systemd managed cgroup)" do - self_cgroup=<<-CGROUP + self_cgroup = <<-CGROUP 8:devices:/system.slice/docker-47341c91be8d491cb3b8a475ad5b4aef6e79bf728cbb351c384e4a6c410f172f.scope 7:cpuset:/system.slice/docker-47341c91be8d491cb3b8a475ad5b4aef6e79bf728cbb351c384e4a6c410f172f.scope 6:blkio:/system.slice/docker-47341c91be8d491cb3b8a475ad5b4aef6e79bf728cbb351c384e4a6c410f172f.scope 5:freezer:/system.slice/docker-47341c91be8d491cb3b8a475ad5b4aef6e79bf728cbb351c384e4a6c410f172f.scope 4:net_cls:/ @@ -586,11 +586,11 @@ expect(plugin[:virtualization][:role]).to eq("guest") expect(plugin[:virtualization][:systems][:docker]).to eq("guest") end it "sets not set anything if /proc/self/cgroup exist and the cgroup is named arbitrarily, it isn't necessarily lxc." do - self_cgroup=<<-CGROUP + self_cgroup = <<-CGROUP 8:blkio:/Charlie 7:net_cls:/Charlie 6:freezer:/Charlie 5:devices:/Charlie 4:memory:/Charlie @@ -599,16 +599,16 @@ 1:cpuset:/Charlie CGROUP allow(File).to receive(:exist?).with("/proc/self/cgroup").and_return(true) allow(File).to receive(:read).with("/proc/self/cgroup").and_return(self_cgroup) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end context "/proc/self/cgroup only has / mounts" do before(:each) do - self_cgroup=<<-CGROUP + self_cgroup = <<-CGROUP 8:blkio:/ 7:net_cls:/ 6:freezer:/ 5:devices:/ 4:memory:/ @@ -617,11 +617,11 @@ 1:cpuset:/ CGROUP allow(File).to receive(:exist?).with("/proc/self/cgroup").and_return(true) allow(File).to receive(:read).with("/proc/self/cgroup").and_return(self_cgroup) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end end it "does not set the old virtualization attributes if they are already set" do @@ -637,17 +637,17 @@ it "does not set docker host if docker does not exist" do allow(plugin).to receive(:docker_exists?).and_return(false) plugin.run expect(plugin[:virtualization][:system]).to be_nil expect(plugin[:virtualization][:role]).to be_nil - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end it "does not set virtualization if /proc/self/cgroup isn't there" do allow(File).to receive(:exist?).with("/proc/self/cgroup").and_return(false) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end it "sets virtualization if /.dockerenv exists" do allow(File).to receive(:exist?).with("/.dockerenv").and_return(true) plugin.run @@ -666,15 +666,15 @@ it "does not set virtualization if /.dockerenv or /.dockerinit does not exists" do allow(File).to receive(:exist?).with("/.dockerenv").and_return(false) allow(File).to receive(:exist?).with("/.dockerinit").and_return(false) plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end end it "does not set virtualization if no tests match" do plugin.run - expect(plugin[:virtualization]).to eq({'systems' => {}}) + expect(plugin[:virtualization]).to eq({ "systems" => {} }) end end