
This change updates the heat tests to use rspec-puppet-facts to test multiple operating systems. Change-Id: Ic6e1542d5befba529f753b346ff842ed88d1292e
40 lines
908 B
Ruby
40 lines
908 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'heat::policy' do
|
|
|
|
shared_examples_for 'heat policies' do
|
|
let :params do
|
|
{
|
|
:policy_path => '/etc/heat/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_heat_config('oslo_policy/policy_file').with_value('/etc/heat/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 'heat policies'
|
|
end
|
|
end
|
|
|
|
end
|