e2b1d99501
Updating the policies for this project should only refresh the services that reads it. Change-Id: I72b2d29962e82e9c254c2254663865da2b747e3b
90 lines
2.7 KiB
Ruby
90 lines
2.7 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'sahara::policy' do
|
|
shared_examples 'sahara::policy' do
|
|
|
|
context 'setup policy with parameters' do
|
|
let :params do
|
|
{
|
|
:enforce_scope => false,
|
|
:enforce_new_defaults => false,
|
|
:policy_path => '/etc/sahara/policy.yaml',
|
|
:policy_default_rule => 'default',
|
|
:policy_dirs => '/etc/sahara/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/sahara/policy.yaml').with(
|
|
:policies => {
|
|
'context_is_admin' => {
|
|
'key' => 'context_is_admin',
|
|
'value' => 'foo:bar'
|
|
}
|
|
},
|
|
:policy_path => '/etc/sahara/policy.yaml',
|
|
:file_user => 'root',
|
|
:file_group => 'sahara',
|
|
:file_format => 'yaml',
|
|
:purge_config => false,
|
|
:tag => 'sahara',
|
|
)
|
|
is_expected.to contain_oslo__policy('sahara_config').with(
|
|
:enforce_scope => false,
|
|
:enforce_new_defaults => false,
|
|
:policy_file => '/etc/sahara/policy.yaml',
|
|
:policy_default_rule => 'default',
|
|
:policy_dirs => '/etc/sahara/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/sahara/policy.yaml',
|
|
:policies => {},
|
|
:purge_config => true,
|
|
}
|
|
end
|
|
|
|
it 'set up the policies' do
|
|
is_expected.to contain_openstacklib__policy('/etc/sahara/policy.yaml').with(
|
|
:policies => {},
|
|
:policy_path => '/etc/sahara/policy.yaml',
|
|
:file_user => 'root',
|
|
:file_group => 'sahara',
|
|
:file_format => 'yaml',
|
|
:purge_config => true,
|
|
:tag => 'sahara',
|
|
)
|
|
is_expected.to contain_oslo__policy('sahara_config').with(
|
|
:enforce_scope => false,
|
|
:enforce_new_defaults => false,
|
|
:policy_file => '/etc/sahara/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 'sahara::policy'
|
|
end
|
|
end
|
|
end
|