inspec/test/unit/resources/security_policy_test.rb

17 lines
587 B
Ruby
Raw Normal View History

# encoding: utf-8
2015-10-06 16:55:44 +00:00
# author: Christoph Hartmann
# author: Dominik Richter
require 'helper'
2015-10-26 03:04:18 +00:00
require 'inspec/resource'
2015-10-26 03:04:18 +00:00
describe 'Inspec::Resources::SecurityPolicy' do
2015-09-22 16:33:05 +00:00
it 'verify processes resource' do
2015-10-12 11:21:50 +00:00
resource = load_resource('security_policy')
2015-09-22 16:33:05 +00:00
_(resource.MaximumPasswordAge).must_equal 42
_(resource.send('MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Setup\RecoveryConsole\SecurityLevel')).must_equal '4,0'
_(resource.SeUndockPrivilege).must_equal '*S-1-5-32-544'
_(resource.SeRemoteInteractiveLogonRight).must_equal '*S-1-5-32-544,*S-1-5-32-555'
end
end