Files
puppet-placement/spec/classes/placement_client_spec.rb
Takashi Kajinami b0e46961f9 Replace legacy facts and use fact hash
... because the latest lint no longer allows usage of legacy facts and
top scope fact.

Change-Id: Ibf90d5d5240672a5035e1fb893f135a8d879ca59
2023-03-02 12:36:49 +09:00

44 lines
1.1 KiB
Ruby

require 'spec_helper'
describe 'placement::client' do
shared_examples_for 'placement client' do
it { is_expected.to contain_class('placement::deps') }
it { is_expected.to contain_class('placement::params') }
it 'installs placement client package' do
is_expected.to contain_package('python-osc-placement').with(
:ensure => 'present',
:name => platform_params[:client_package_name],
:tag => ['openstack', 'placement-support-package']
)
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[:os]['family']
when 'Debian'
{ :client_package_name => 'python3-osc-placement' }
when 'RedHat'
{ :client_package_name => 'python3-osc-placement' }
end
end
it_behaves_like 'placement client'
end
end
end