f64159bc87
This patch makes it possible to override the current service default, which is /etc/<service>/policy.d . Change-Id: I8ab033c275f29a34a89a5ea9c2560c9992fd06cf
49 lines
1.3 KiB
Ruby
49 lines
1.3 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'magnum::policy' do
|
|
shared_examples 'magnum::policy' do
|
|
let :params do
|
|
{
|
|
:enforce_scope => false,
|
|
:enforce_new_defaults => false,
|
|
:policy_path => '/etc/magnum/policy.yaml',
|
|
:policy_dirs => '/etc/magnum/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 => 'magnum',
|
|
:file_format => 'yaml',
|
|
})
|
|
is_expected.to contain_oslo__policy('magnum_config').with(
|
|
:enforce_scope => false,
|
|
:enforce_new_defaults => false,
|
|
:policy_file => '/etc/magnum/policy.yaml',
|
|
:policy_dirs => '/etc/magnum/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 'magnum::policy'
|
|
end
|
|
end
|
|
end
|