inspec/test/unit/resource_security_policy_test.rb

16 lines
541 B
Ruby
Raw Normal View History

# encoding: utf-8
require 'helper'
require 'vulcano/resource'
describe 'Vulcano::Resources::SecurityPolicy' do
2015-09-22 16:31:21 +00:00
let(:resource) { load_resource('security_policy') }
2015-09-22 16:33:05 +00:00
it 'verify processes resource' do
_(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