Files
puppet-placement/spec/classes/placement_client_spec.rb
Thomas Goirand 517c3d6fe7 Get rid of the $pyvers variable
Since everyone has switched to Python3, it's time for the removal of the
$pyvers variable.

Change-Id: Ib369975e3c852919765deebd09a5fa74dd78808a
2021-05-21 12:25:13 +02:00

44 lines
1.1 KiB
Ruby

require 'spec_helper'
describe 'placement::client' do
shared_examples_for 'placement client' do
it { is_expected.to contain_class('placement::deps') }
it { is_expected.to contain_class('placement::params') }
it 'installs placement client package' do
is_expected.to contain_package('python-osc-placement').with(
:ensure => 'present',
:name => platform_params[:client_package_name],
:tag => ['openstack', 'placement-support-package']
)
end
it { is_expected.to contain_class('openstacklib::openstackclient') }
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
case facts[:osfamily]
when 'Debian'
{ :client_package_name => 'python3-osc-placement' }
when 'RedHat'
{ :client_package_name => 'python3-osc-placement' }
end
end
it_behaves_like 'placement client'
end
end
end