
Depends-On: https://review.openstack.org/#/c/633162/ Change-Id: Ied4fcd08ce82543907c4cf8fd5f2780e63a47eed
51 lines
1.3 KiB
Ruby
51 lines
1.3 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
|
|
if facts[:osfamily] == 'Debian' or (facts[:os_package_type] == 'rpm' \
|
|
and facts[:operatingsystemrelease].to_i > 7) then
|
|
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
|