These options are used when castellan cert manager is used. Change-Id: I07824ef319409c8611c9900b3c778d6ed1852f93 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
40 lines
833 B
Ruby
40 lines
833 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'octavia::key_manager' do
|
|
shared_examples 'octavia::key_manager' do
|
|
context 'with default parameters' do
|
|
it {
|
|
is_expected.to contain_oslo__key_manager('octavia_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('octavia_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 'octavia::key_manager'
|
|
end
|
|
end
|
|
end
|