
Some users wish to override the default package provider by their own. Tag all packages with the 'openstack' to allow mass resource attributes override using resource collectors. Closes-bug: #1391209 Change-Id: I09e54700438894e22d29605fec51bb056baf4050 Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
46 lines
813 B
Ruby
46 lines
813 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'heat::client' do
|
|
|
|
let :params do
|
|
{}
|
|
end
|
|
|
|
let :default_params do
|
|
{ :package_ensure => 'present' }
|
|
end
|
|
|
|
shared_examples_for 'heat client' do
|
|
let :p do
|
|
default_params.merge(params)
|
|
end
|
|
|
|
it { is_expected.to contain_class('heat::params') }
|
|
|
|
it 'installs heat client package' do
|
|
is_expected.to contain_package('python-heatclient').with(
|
|
:name => 'python-heatclient',
|
|
:ensure => p[:package_ensure],
|
|
:tag => 'openstack'
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
context 'on Debian platform' do
|
|
let :facts do
|
|
{ :osfamily => 'Debian' }
|
|
end
|
|
|
|
it_configures 'heat client'
|
|
end
|
|
|
|
context 'on RedHat platform' do
|
|
let :facts do
|
|
{ :osfamily => 'RedHat' }
|
|
end
|
|
|
|
it_configures 'heat client'
|
|
end
|
|
end
|