mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
16 lines
590 B
Ruby
16 lines
590 B
Ruby
# encoding: utf-8
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
|
|
require 'helper'
|
|
require 'inspec/resource'
|
|
|
|
describe 'Inspec::Resources::SecurityPolicy' do
|
|
it 'verify processes resource' do
|
|
resource = load_resource('security_policy')
|
|
_(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
|