My recipe:

instance_names.each do |instance_name|
    instance_name_service=instance_name.split('.')[1]
    instance_name_service = instance_name_service == 'MSSQLSERVER'? 'MSSQLSERVER' : "MSSQL$#{instance_name_service}"
    path="HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Microsoft SQL Server\\#{instance_name}\\MSSQLServer"
    registry_key path do
        architecture :"#{var_architecture}"
        values [{
            :name => 'AuditLevel',
            :type => :dword,
            :data => 3
        }]
        action :create
        not_if ( false )
    end
end

in chefpec:

require_relative '../../spec_helper'
require 'chefspec'
describe 'regcheck::default' do
    let(:chef_run) { ChefSpec::SoloRunner.new.converge(described_recipe) }
    it 'recipe loads all the dependency files and converges successfully' do
        chef_run
    end 
    context 'regcheck' do
        it 'creates or updates audit level settings for sql instances' do
            expect(chef_run).to create_registry_key('HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL12.SQLINSTANCE1\MSSQLServer')
        end
    end
end

And I am getting this error:

Registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\Instance Names\SQL does not exist error in chefspec

1

There are 1 best solutions below

1
On

You need to set ChefSpec to emulate a Windows platform for the registry_key resource to work.

let(:chef_run) { ChefSpec::SoloRunner.new(platform: 'windows', version: '2012R2').converge(described_recipe) }