Files
puppet-cloudkitty/spec/classes/cloudkitty_policy_spec.rb
ZhongShengping 5cf5aec1e9 oslo policy: check puppet resource instead of actual config in spec
Change-Id: Ifa58a79404fdc2edfad89f5b8db7b5d85eb5c199
2017-05-23 13:55:26 +08:00

40 lines
956 B
Ruby

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