
... so that we can easilty understand which distro and which version we expect python3 packages. Change-Id: I385a4a5b123519961791ef6d842ab84990ea00c9
56 lines
1.5 KiB
Ruby
56 lines
1.5 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'openstacklib::openstackclient' do
|
|
shared_examples_for 'openstacklib::openstackclient' do
|
|
context 'with default params' do
|
|
it { should contain_package(platform_params[:openstackclient_package_name]).with(
|
|
:ensure => 'present',
|
|
:tag => 'openstack'
|
|
)}
|
|
end
|
|
|
|
context 'with non default package name' do
|
|
let :params do
|
|
{
|
|
:package_name => 'my-openstackclient'
|
|
}
|
|
end
|
|
|
|
it { should contain_package('my-openstackclient').with(
|
|
:ensure => 'present',
|
|
:tag => 'openstack'
|
|
)}
|
|
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
|
|
case facts[:osfamily]
|
|
when 'Debian'
|
|
{ :openstackclient_package_name => 'python3-openstackclient' }
|
|
when 'RedHat'
|
|
if facts[:operatingsystem] == 'Fedora'
|
|
{ :openstackclient_package_name => 'python3-openstackclient' }
|
|
else
|
|
if facts[:operatingsystemmajrelease] > '7'
|
|
{ :openstackclient_package_name => 'python3-openstackclient' }
|
|
else
|
|
{ :openstackclient_package_name => 'python-openstackclient' }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
it_behaves_like 'openstacklib::openstackclient'
|
|
end
|
|
end
|
|
|
|
end
|