puppet-heat/spec/classes/heat_policy_spec.rb
Thomas Goirand 37bd354401 Allow to configure policy_dirs
This patch makes it possible to override the current service default,
which is /etc/<service>/policy.d .

Change-Id: I9dea409a46bd8d22388853582de8f64034cf0d03
2021-04-01 23:01:27 +02:00

49 lines
1.3 KiB
Ruby

require 'spec_helper'
describe 'heat::policy' do
shared_examples 'heat::policy' do
let :params do
{
:enforce_scope => false,
:enforce_new_defaults => false,
:policy_path => '/etc/heat/policy.yaml',
:policy_dirs => '/etc/heat/policy.d',
:policies => {
'context_is_admin' => {
'key' => 'context_is_admin',
'value' => 'foo:bar'
}
}
}
end
it 'set up the policies' do
is_expected.to contain_openstacklib__policy__base('context_is_admin').with({
:key => 'context_is_admin',
:value => 'foo:bar',
:file_user => 'root',
:file_group => 'heat',
:file_format => 'yaml',
})
is_expected.to contain_oslo__policy('heat_config').with(
:enforce_scope => false,
:enforce_new_defaults => false,
:policy_file => '/etc/heat/policy.yaml',
:policy_dirs => '/etc/heat/policy.d',
)
end
end
on_supported_os({
:supported_os => OSDefaults.get_supported_os
}).each do |os,facts|
context "on #{os}" do
let (:facts) do
facts.merge!(OSDefaults.get_facts())
end
it_behaves_like 'heat::policy'
end
end
end