puppet-manila/spec/classes/manila_policy_spec.rb
Takashi Kajinami cf3eda1a4a 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: I5990be7fb911e89b4a54bcc4776c8227cb36a926
2021-01-07 23:23:25 +00:00

44 lines
1.0 KiB
Ruby

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