6dc69ab67f
This change introduces the new independent classes to manage options for key managers, which are implemented in the castellan library. Depends-on: https://review.opendev.org/772676 Change-Id: I5fc9b4e2db56daf998294245465e8c5fcbd8a061
40 lines
828 B
Ruby
40 lines
828 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::key_manager' do
|
|
shared_examples 'cinder::key_manager' do
|
|
context 'with default parameters' do
|
|
it {
|
|
is_expected.to contain_oslo__key_manager('cinder_config').with(
|
|
:backend => '<SERVICE DEFAULT>'
|
|
)
|
|
}
|
|
end
|
|
|
|
context 'with specified parameters' do
|
|
let :params do
|
|
{
|
|
:backend => 'barbican'
|
|
}
|
|
end
|
|
|
|
it {
|
|
is_expected.to contain_oslo__key_manager('cinder_config').with(
|
|
:backend => 'barbican'
|
|
)
|
|
}
|
|
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 'cinder::key_manager'
|
|
end
|
|
end
|
|
end
|