e500bfe5e0
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: I29a4d7698c52383be1e0ff1fdb6d350e44b4f151
40 lines
840 B
Ruby
40 lines
840 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'nova::key_manager' do
|
|
shared_examples 'nova::key_manager' do
|
|
context 'with default parameters' do
|
|
it {
|
|
is_expected.to contain_oslo__key_manager('nova_config').with(
|
|
:backend => 'nova.keymgr.conf_key_mgr.ConfKeyManager'
|
|
)
|
|
}
|
|
end
|
|
|
|
context 'with specified parameters' do
|
|
let :params do
|
|
{
|
|
:backend => 'barbican'
|
|
}
|
|
end
|
|
|
|
it {
|
|
is_expected.to contain_oslo__key_manager('nova_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 'nova::key_manager'
|
|
end
|
|
end
|
|
end
|