Files
puppet-barbican/spec/classes/barbican_policy_spec.rb
Takashi Kajinami 46265f57c5 Allow purging policy files
This change introduces the new purge_config parameter to the policy
class so that any policy rules not managed by puppet manifests can be
cleared.

Co-Authored-By: Martin Schuppert <mschuppert@redhat.com>
Depends-On: https://review.opendev.org/802305
Change-Id: I8e2d912f75bb36b129a25ddf9d6323d1adadd49b
2021-09-04 21:55:59 +09:00

86 lines
2.5 KiB
Ruby

require 'spec_helper'
describe 'barbican::policy' do
shared_examples 'barbican::policy' do
context 'setup policy with parameters' do
let :params do
{
:enforce_scope => false,
:enforce_new_defaults => false,
:policy_path => '/etc/barbican/policy.yaml',
:policy_dirs => '/etc/barbican/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('/etc/barbican/policy.yaml').with(
:policies => {
'context_is_admin' => {
'key' => 'context_is_admin',
'value' => 'foo:bar'
}
},
:policy_path => '/etc/barbican/policy.yaml',
:file_user => 'root',
:file_group => 'barbican',
:file_format => 'yaml',
:purge_config => false,
)
is_expected.to contain_oslo__policy('barbican_config').with(
:enforce_scope => false,
:enforce_new_defaults => false,
:policy_file => '/etc/barbican/policy.yaml',
:policy_dirs => '/etc/barbican/policy.d',
)
end
end
context 'with empty policies and purge_config enabled' do
let :params do
{
:enforce_scope => false,
:enforce_new_defaults => false,
:policy_path => '/etc/barbican/policy.yaml',
:policies => {},
:purge_config => true,
}
end
it 'set up the policies' do
is_expected.to contain_openstacklib__policy('/etc/barbican/policy.yaml').with(
:policies => {},
:policy_path => '/etc/barbican/policy.yaml',
:file_user => 'root',
:file_group => 'barbican',
:file_format => 'yaml',
:purge_config => true,
)
is_expected.to contain_oslo__policy('barbican_config').with(
:enforce_scope => false,
:enforce_new_defaults => false,
:policy_file => '/etc/barbican/policy.yaml',
)
end
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 'barbican::policy'
end
end
end