
Change-Id: Ia60d3f4ef60ba28da9d5103b4bb80eefd3092331 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
68 lines
2.4 KiB
Ruby
68 lines
2.4 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'cloudkitty::orchestrator' do
|
|
|
|
shared_examples_for 'cloudkitty::orchestrator' do
|
|
|
|
context 'with defaults' do
|
|
it { is_expected.to contain_class('cloudkitty::deps') }
|
|
|
|
it 'configures orchestrator' do
|
|
is_expected.to contain_cloudkitty_config('orchestrator/coordination_url')\
|
|
.with_value('<SERVICE DEFAULT>').with_secret(true)
|
|
is_expected.to contain_oslo__coordination('cloudkitty_config').with(
|
|
:backend_url => '<SERVICE DEFAULT>',
|
|
:manage_backend_package => true,
|
|
:package_ensure => 'present',
|
|
:manage_config => false,
|
|
)
|
|
is_expected.to contain_cloudkitty_config('orchestrator/max_workers').with_value(4)
|
|
is_expected.to contain_cloudkitty_config('orchestrator/max_workers_reprocessing').with_value(4)
|
|
is_expected.to contain_cloudkitty_config('orchestrator/max_threads').with_value(16)
|
|
end
|
|
end
|
|
|
|
context 'with parameters set' do
|
|
let :params do
|
|
{
|
|
:coordination_url => 'etcd3+http://127.0.0.1:2379',
|
|
:max_workers => 4,
|
|
:max_workers_reprocessing => 5,
|
|
:max_threads => 20,
|
|
:manage_backend_package => false,
|
|
:backend_package_ensure => 'latest',
|
|
}
|
|
end
|
|
|
|
it 'configures orchestrator' do
|
|
is_expected.to contain_cloudkitty_config('orchestrator/coordination_url')\
|
|
.with_value('etcd3+http://127.0.0.1:2379').with_secret(true)
|
|
is_expected.to contain_oslo__coordination('cloudkitty_config').with(
|
|
:backend_url => 'etcd3+http://127.0.0.1:2379',
|
|
:manage_backend_package => false,
|
|
:package_ensure => 'latest',
|
|
:manage_config => false,
|
|
)
|
|
is_expected.to contain_cloudkitty_config('orchestrator/max_workers').with_value(4)
|
|
is_expected.to contain_cloudkitty_config('orchestrator/max_workers_reprocessing').with_value(5)
|
|
is_expected.to contain_cloudkitty_config('orchestrator/max_threads').with_value(20)
|
|
end
|
|
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(
|
|
:os_workers => 4,
|
|
))
|
|
end
|
|
|
|
it_configures 'cloudkitty::orchestrator'
|
|
end
|
|
end
|
|
|
|
end
|