puppet-zaqar/spec/classes/zaqar_client_spec.rb
Takashi Kajinami 17fbed269c Expect python3 client package in CentOS8
In CentOS, we expect to have python3 client package in 8.x while we
expect to have python2 in 7.x .
Fix unit tests to expect the correct version according to os major
version.

Change-Id: Ie4fd708bbc9dcd80e1e69addb5a6a087f0deea2c
2020-03-31 17:13:24 +09:00

51 lines
1.3 KiB
Ruby

require 'spec_helper'
describe 'zaqar::client' do
shared_examples_for 'zaqar client' do
it { is_expected.to contain_class('zaqar::deps') }
it { is_expected.to contain_class('zaqar::params') }
it 'installs zaqar client package' do
is_expected.to contain_package('python-zaqarclient').with(
:ensure => 'present',
:name => platform_params[:client_package_name],
:tag => 'openstack',
)
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-zaqarclient' }
when 'RedHat'
if facts[:operatingsystem] == 'Fedora'
{ :client_package_name => 'python3-zaqarclient' }
else
if facts[:operatingsystemmajrelease] > '7'
{ :client_package_name => 'python3-zaqarclient' }
else
{ :client_package_name => 'python-zaqarclient' }
end
end
end
end
it_behaves_like 'zaqar client'
end
end
end