mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
a8ffe449ff
Broke out some of the conditional logic in the `#initialize` method into helper methods and added tests. Signed-off-by: Adam Leff <adam@leff.co>
37 lines
1.3 KiB
Ruby
37 lines
1.3 KiB
Ruby
# encoding: utf-8
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
|
|
require 'helper'
|
|
require 'inspec/resource'
|
|
|
|
describe 'Inspec::Resources::RegistryKey' do
|
|
it 'read reg key with human readable name' do
|
|
resource = MockLoader.new(:windows).load_resource('registry_key', 'Task Scheduler', 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule')
|
|
_(resource.Start).must_equal 2
|
|
end
|
|
|
|
it 'read reg key without human readable name' do
|
|
resource_without_name = MockLoader.new(:windows).load_resource('registry_key', 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule')
|
|
_(resource_without_name.Start).must_equal 2
|
|
end
|
|
|
|
it 'generates a proper path from options' do
|
|
resource = MockLoader.new(:windows).load_resource(
|
|
'registry_key',
|
|
'Test 1',
|
|
{ hive: 'my_hive', key: '\\my_prefixed_key'},
|
|
)
|
|
_(resource.send(:generate_registry_key_path_from_options)).must_equal 'my_hive\\my_prefixed_key'
|
|
end
|
|
|
|
it 'generates a proper path from options when the key has no leading slash' do
|
|
resource = MockLoader.new(:windows).load_resource(
|
|
'registry_key',
|
|
'Test 1',
|
|
{ hive: 'my_hive', key: 'key_with_no_slash'},
|
|
)
|
|
_(resource.send(:generate_registry_key_path_from_options)).must_equal 'my_hive\\key_with_no_slash'
|
|
end
|
|
|
|
end
|