2018-04-23 23:28:43 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'openstacklib::openstackclient' do
|
|
|
|
shared_examples_for 'openstacklib::openstackclient' do
|
|
|
|
context 'with default params' do
|
2018-11-01 16:08:00 +01:00
|
|
|
it { should contain_package(platform_params[:openstackclient_package_name]).with(
|
|
|
|
:ensure => 'present',
|
|
|
|
:tag => 'openstack'
|
|
|
|
)}
|
2018-04-23 23:28:43 +02:00
|
|
|
end
|
2018-08-31 17:26:19 +02:00
|
|
|
|
|
|
|
context 'with non default package name' do
|
|
|
|
let :params do
|
2018-11-01 16:08:00 +01:00
|
|
|
{
|
|
|
|
:package_name => 'my-openstackclient'
|
|
|
|
}
|
2018-08-31 17:26:19 +02:00
|
|
|
end
|
|
|
|
|
2018-11-01 16:08:00 +01:00
|
|
|
it { should contain_package('my-openstackclient').with(
|
|
|
|
:ensure => 'present',
|
|
|
|
:tag => 'openstack'
|
|
|
|
)}
|
2018-08-31 17:26:19 +02:00
|
|
|
end
|
2018-04-23 23:28:43 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
on_supported_os({
|
2018-11-01 16:08:00 +01:00
|
|
|
:supported_os => OSDefaults.get_supported_os
|
2018-04-23 23:28:43 +02:00
|
|
|
}).each do |os,facts|
|
|
|
|
context "on #{os}" do
|
|
|
|
let (:facts) do
|
|
|
|
facts.merge!(OSDefaults.get_facts())
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:platform_params) do
|
2019-01-17 21:47:46 +01:00
|
|
|
if facts[:osfamily] == 'Debian' or (facts[:os_package_type] == 'rpm' \
|
2018-10-05 19:25:44 +05:30
|
|
|
and facts[:operatingsystemrelease].to_i > 7) then
|
2018-04-23 23:28:43 +02:00
|
|
|
openstackclient_package_name = 'python3-openstackclient'
|
|
|
|
else
|
|
|
|
openstackclient_package_name = 'python-openstackclient'
|
|
|
|
end
|
|
|
|
{
|
|
|
|
:openstackclient_package_name => openstackclient_package_name
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'openstacklib::openstackclient'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|