
... because the latest lint no longer allows usage of legacy facts and top scope fact. Change-Id: Ib4f33d08f9415b4a8533ec6b9b0e6d7637f4e289
41 lines
979 B
Ruby
41 lines
979 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'watcher::client' do
|
|
|
|
shared_examples_for 'watcher client' do
|
|
|
|
it { is_expected.to contain_class('watcher::deps') }
|
|
it { is_expected.to contain_class('watcher::params') }
|
|
|
|
it 'installs watcher client package' do
|
|
is_expected.to contain_package('python-watcherclient').with(
|
|
:ensure => 'present',
|
|
:name => platform_params[:client_package_name],
|
|
: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'
|
|
{ :client_package_name => 'python3-watcherclient' }
|
|
when 'RedHat'
|
|
{ :client_package_name => 'python3-watcherclient' }
|
|
end
|
|
end
|
|
|
|
it_behaves_like 'watcher client'
|
|
end
|
|
end
|
|
|
|
end
|