2019-06-11 15:24:35 -07:00
|
|
|
require "helper"
|
|
|
|
require "inspec/resource"
|
|
|
|
require "inspec/resources/sys_info"
|
2016-09-09 10:30:41 +02:00
|
|
|
|
2019-06-11 15:24:35 -07:00
|
|
|
describe "Inspec::Resources::SysInfo" do
|
2019-06-21 17:05:43 +02:00
|
|
|
describe "sys_info" do
|
|
|
|
it "check sys_info on Ubuntu" do
|
2021-09-29 12:15:39 +05:30
|
|
|
resource = MockLoader.new(:ubuntu).load_resource("sys_info")
|
2019-06-11 15:24:35 -07:00
|
|
|
_(resource.hostname).must_equal "example.com"
|
2019-06-21 17:05:43 +02:00
|
|
|
_(resource.manufacturer).must_equal "ACME Corp."
|
|
|
|
_(resource.model).must_equal "Flux Capacitor"
|
2016-09-09 10:30:41 +02:00
|
|
|
end
|
|
|
|
|
2019-07-16 21:27:32 +02:00
|
|
|
it "check sys_info on OSX" do
|
2020-07-01 18:35:23 -04:00
|
|
|
resource = MockLoader.new(:macos10_10).load_resource("sys_info")
|
2019-07-16 21:27:32 +02:00
|
|
|
_(resource.hostname).must_equal "example.com"
|
|
|
|
_(resource.manufacturer).must_equal "Apple Inc."
|
|
|
|
_(resource.model).must_equal "MacBookPro13,3"
|
|
|
|
end
|
|
|
|
|
2019-06-21 16:23:47 +02:00
|
|
|
it "check sys_info on Windows" do
|
2019-06-11 15:24:35 -07:00
|
|
|
resource = MockLoader.new(:windows).load_resource("sys_info")
|
|
|
|
_(resource.hostname).must_equal "WIN-CIV7VMLVHLD"
|
2019-06-21 16:23:47 +02:00
|
|
|
_(resource.manufacturer).must_equal "ACME Corp."
|
|
|
|
_(resource.model).must_equal "Flux Capacitor"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "check sysinfo on freebsd" do
|
|
|
|
resource = MockLoader.new(:freebsd10).load_resource("sys_info")
|
2019-06-21 17:05:43 +02:00
|
|
|
_(resource.hostname).must_equal "The `sys_info.hostname` resource is not supported on your OS yet."
|
|
|
|
_(resource.manufacturer).must_equal "The `sys_info.manufacturer` resource is not supported on your OS yet."
|
|
|
|
_(resource.model).must_equal "The `sys_info.model` resource is not supported on your OS yet."
|
2019-06-21 16:23:47 +02:00
|
|
|
end
|
|
|
|
end
|
2016-09-09 10:30:41 +02:00
|
|
|
end
|