Files
puppet-cloudkitty/spec/classes/cloudkitty_policy_spec.rb
Takashi Kajinami 3c8553a898 Use yaml instead of json for policy file
Because usage of json for policy file will be deprecated and replaced
by yaml[1].

[1] https://governance.openstack.org/tc/goals/selected/wallaby/migrate-policy-format-from-json-to-yaml.html

Depends-on: https://review.opendev.org/769647
Change-Id: I4a3d5996beaaec649dbd076f29e80d6dc9705cbf
2021-01-07 23:18:16 +00:00

44 lines
1.0 KiB
Ruby

require 'spec_helper'
describe 'cloudkitty::policy' do
shared_examples_for 'cloudkitty policies' do
let :params do
{
:policy_path => '/etc/cloudkitty/policy.yaml',
: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 => 'cloudkitty',
:file_format => 'yaml',
})
is_expected.to contain_oslo__policy('cloudkitty_config').with(
:policy_file => '/etc/cloudkitty/policy.yaml',
)
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_configures 'cloudkitty policies'
end
end
end