2017-11-02 09:03:43 +08:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'octavia::client' do
|
|
|
|
|
|
|
|
let :params do
|
|
|
|
{}
|
|
|
|
end
|
|
|
|
|
|
|
|
let :default_params do
|
|
|
|
{ :package_ensure => 'present' }
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'octavia client' do
|
|
|
|
let :p do
|
|
|
|
default_params.merge(params)
|
|
|
|
end
|
|
|
|
|
2019-05-20 11:03:20 +08:00
|
|
|
it { is_expected.to contain_class('octavia::deps') }
|
2017-11-02 09:03:43 +08:00
|
|
|
it { is_expected.to contain_class('octavia::params') }
|
|
|
|
|
|
|
|
it 'installs octavia client package' do
|
|
|
|
is_expected.to contain_package('python-octaviaclient').with(
|
2018-04-12 11:22:42 +08:00
|
|
|
:name => platform_params[:client_package_name],
|
2017-11-02 09:03:43 +08:00
|
|
|
:ensure => p[:package_ensure],
|
|
|
|
:tag => 'openstack'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-05-16 09:52:25 +08:00
|
|
|
it { is_expected.to contain_class('openstacklib::openstackclient') }
|
2017-11-02 09:03:43 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
on_supported_os({
|
2018-02-08 15:32:42 +00:00
|
|
|
:supported_os => OSDefaults.get_supported_os
|
2017-11-02 09:03:43 +08:00
|
|
|
}).each do |os,facts|
|
|
|
|
context "on #{os}" do
|
|
|
|
let (:facts) do
|
|
|
|
facts.merge!(OSDefaults.get_facts())
|
|
|
|
end
|
|
|
|
|
2018-04-12 11:22:42 +08:00
|
|
|
let(:platform_params) do
|
|
|
|
case facts[:osfamily]
|
|
|
|
when 'Debian'
|
2019-01-17 21:45:31 +01:00
|
|
|
{ :client_package_name => 'python3-octaviaclient' }
|
2018-04-12 11:22:42 +08:00
|
|
|
when 'RedHat'
|
2021-05-21 12:09:49 +02:00
|
|
|
{ :client_package_name => 'python3-octaviaclient' }
|
2018-04-12 11:22:42 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-02 09:03:43 +08:00
|
|
|
it_behaves_like 'octavia client'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|