
The repo is inside the openstackclient plugin commands[1]. [1]https://docs.openstack.org/python-openstackclient/latest/cli/plugin-commands.html Change-Id: I6e99e240e75fd4cfa9ec94b0587e46668e1b259e
43 lines
1.0 KiB
Ruby
43 lines
1.0 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'
|
|
{ :client_package_name => 'python-zaqarclient' }
|
|
end
|
|
end
|
|
|
|
it_behaves_like 'zaqar client'
|
|
end
|
|
end
|
|
|
|
end
|