4feba93488
This option has been unused, and was removed from magnum. Depneds-on: https://review.opendev.org/912027 Change-Id: I055ef530f164f80646ab70ac91a10c2f584048e7
70 lines
1.7 KiB
Ruby
70 lines
1.7 KiB
Ruby
#
|
|
# Unit tests for magnum::conductor
|
|
#
|
|
require 'spec_helper'
|
|
|
|
describe 'magnum::conductor' do
|
|
|
|
let :pre_condition do
|
|
'class { "magnum::keystone::keystone_auth": password => "secret", }'
|
|
end
|
|
|
|
shared_examples_for 'magnum-conductor' do
|
|
|
|
it { is_expected.to contain_package('magnum-conductor').with(
|
|
:name => platform_params[:conductor_package],
|
|
:ensure => 'present'
|
|
) }
|
|
|
|
it { is_expected.to contain_service('magnum-conductor').with(
|
|
:name => platform_params[:conductor_service],
|
|
:hasstatus => 'true',
|
|
:ensure => 'running'
|
|
) }
|
|
|
|
it {
|
|
is_expected.to contain_magnum_config('conductor/workers').with_value(facts[:os_workers])
|
|
}
|
|
|
|
context 'with manage_service as false' do
|
|
let :params do
|
|
{ :enabled => true,
|
|
:manage_service => false
|
|
}
|
|
end
|
|
it { is_expected.not_to contain_service('magnum-conductor') }
|
|
end
|
|
|
|
context 'with workers specified' do
|
|
let :params do
|
|
{ :workers => 10 }
|
|
end
|
|
|
|
it { is_expected.to contain_magnum_config('conductor/workers').with_value(10) }
|
|
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
|
|
|
|
let :platform_params do
|
|
if facts[:os]['family'] == 'Debian'
|
|
{ :conductor_package => 'magnum-conductor',
|
|
:conductor_service => 'magnum-conductor' }
|
|
else
|
|
{ :conductor_package => 'openstack-magnum-conductor',
|
|
:conductor_service => 'openstack-magnum-conductor' }
|
|
end
|
|
end
|
|
|
|
it_configures 'magnum-conductor'
|
|
end
|
|
end
|
|
end
|