inspec/test/unit/resources/windows_task_test.rb
Jerry Aldrich 5e93c4b12e Appease RuboCop
Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
2019-07-01 22:45:04 -07:00

28 lines
1.1 KiB
Ruby

require "helper"
require "inspec/resource"
require "inspec/resources/windows_task"
describe "Inspec::Resources::WindowsTasks" do
def assert_windows_task_parsing(task_name)
resource = MockLoader.new(:windows).load_resource("windows_task", task_name)
_(resource.to_s).must_equal "Windows Task '#{task_name}'"
_(resource.enabled?).must_equal true
_(resource.disabled?).must_equal false
_(resource.logon_mode).must_equal "Interactive/Background"
_(resource.last_result).must_equal "1056"
_(resource.task_to_run).must_equal '%windir%\\system32\\sc.exe start w32time task_started'
_(resource.run_as_user).must_equal "LOCAL SERVICE"
_(resource.type).must_equal "windows-task"
end
it "can handle a Windows task that does not exist" do
resource_fail = MockLoader.new(:windows).load_resource("windows_task", "does-not-exist")
_(resource_fail.exists?).must_equal false
end
%w{WeLovePizza WeLoveMultiplePizzas}.each do |task_name|
it "parses a Windows task correctly regardless of the number of triggers" do
assert_windows_task_parsing(task_name)
end
end
end