inspec/test/unit/resources/wmi_test.rb

32 lines
1 KiB
Ruby
Raw Normal View History

2016-03-19 17:50:32 +00:00
# author: Christoph Hartmann
# author: Dominik Richter
require 'helper'
require 'inspec/resource'
describe 'Inspec::Resources::WMI' do
# Check the following as unit test
2016-06-18 15:54:04 +00:00
# describe wmi({
# class: 'win32_service',
2016-03-19 17:50:32 +00:00
# filter: "name like '%winrm%'"
# }) do
# its(['Path','ClassName']) { should eq 'Win32_Service' }
# its('DisplayName') { should eq 'Windows Remote Management (WS-Management)'}
# end
# windows
it 'verify wmi parsing on windows' do
2016-06-18 15:54:04 +00:00
resource = MockLoader.new(:windows).load_resource('wmi', {class: 'win32_service', filter: "name like '%winrm%'" })
2016-03-19 17:50:32 +00:00
_(resource.send('DisplayName')).must_equal 'Windows Remote Management (WS-Management)'
end
# ubuntu 14.04 with upstart
it 'fail wmi on ubuntu' do
2016-06-18 15:54:04 +00:00
resource = MockLoader.new(:ubuntu1404).load_resource('wmi', {class: 'win32_service', filter: "name like '%winrm%'" })
_(resource.resource_failed?).must_equal true
_(resource.resource_exception_message)
.must_equal 'Resource `wmi` is not supported on platform ubuntu/14.04.'
2016-03-19 17:50:32 +00:00
end
end