2019-06-11 22:24:35 +00:00
|
|
|
require "helper"
|
|
|
|
require "inspec/resource"
|
|
|
|
require "inspec/resources/sys_info"
|
2016-09-09 08:30:41 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "Inspec::Resources::SysInfo" do
|
|
|
|
describe "sys_info" do
|
|
|
|
it "check ssh config parsing for Ubuntu" do
|
|
|
|
resource = MockLoader.new(:ubuntu1504).load_resource("sys_info")
|
|
|
|
_(resource.hostname).must_equal "example.com"
|
2016-09-09 08:30:41 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "check ssh config parsing for Ubuntu" do
|
|
|
|
resource = MockLoader.new(:windows).load_resource("sys_info")
|
|
|
|
_(resource.hostname).must_equal "WIN-CIV7VMLVHLD"
|
2016-09-09 08:30:41 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "check ssh config parsing for freebsd" do
|
|
|
|
resource = MockLoader.new(:freebsd10).load_resource("sys_info")
|
|
|
|
_(resource.hostname).must_equal "The `sys_info.hostname` resource is not supported on your OS yet."
|
2016-09-09 08:30:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|