485e30da61
Change-Id: Ie12bd5bad1f2cac9d175c76a18d4a5b5094f72fc
45 lines
1.1 KiB
Ruby
45 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'neutron::client' do
|
|
|
|
shared_examples_for 'neutron client' do
|
|
|
|
it { is_expected.to contain_class('neutron::deps') }
|
|
it { is_expected.to contain_class('neutron::params') }
|
|
|
|
it 'installs neutron client package' do
|
|
is_expected.to contain_package('python-neutronclient').with(
|
|
:ensure => 'present',
|
|
:name => platform_params[:client_package],
|
|
:tag => ['neutron-support-package', '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'
|
|
if facts[:os_package_type] == 'debian'
|
|
{ :client_package => 'python3-neutronclient' }
|
|
else
|
|
{ :client_package => 'python-neutronclient' }
|
|
end
|
|
when 'RedHat'
|
|
{ :client_package => 'python-neutronclient' }
|
|
end
|
|
end
|
|
|
|
it_behaves_like 'neutron client'
|
|
end
|
|
end
|
|
|
|
end
|