puppet-openstacklib/spec/classes/openstacklib_openstackclient_spec.rb
Takashi Kajinami 62439012bd Replace legacy facts and use fact hash
... because the latest lint no longer allows usage of legacy facts and
top scope fact.

Change-Id: If81712ed2129684d887668f6320e88a206fdad4b
2023-03-01 16:50:04 +09:00

48 lines
1.1 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 => 'installed',
: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 => 'installed',
: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
case facts[:os]['family']
when 'Debian'
{ :openstackclient_package_name => 'python3-openstackclient' }
when 'RedHat'
{ :openstackclient_package_name => 'python3-openstackclient' }
end
end
it_behaves_like 'openstacklib::openstackclient'
end
end
end