37049a867d
... because the latest lint no longer allows usage of legacy facts and top scope fact. Change-Id: Ia9ab733a7fc5cbb5b23659ff7cbfd3b2b7d2fb18
38 lines
984 B
Ruby
38 lines
984 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'gnocchi::client' do
|
|
shared_examples 'gnocchi::client' do
|
|
it { is_expected.to contain_class('gnocchi::deps') }
|
|
it { is_expected.to contain_class('gnocchi::params') }
|
|
|
|
it { should contain_package('python-gnocchiclient').with(
|
|
:ensure => 'present',
|
|
:name => platform_params[:client_package_name],
|
|
:tag => 'openstack',
|
|
)}
|
|
|
|
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[:os]['family']
|
|
when 'Debian'
|
|
{ :client_package_name => 'python3-gnocchiclient' }
|
|
when 'RedHat'
|
|
{ :client_package_name => 'python3-gnocchiclient' }
|
|
end
|
|
end
|
|
|
|
it_behaves_like 'gnocchi::client'
|
|
end
|
|
end
|
|
end
|