puppet-zaqar/spec/classes/zaqar_client_spec.rb
ZhongShengping a1de9e3357 Add zaqar client install support
Change-Id: I8719facdbbc397c45cec7934ba275f3de8589093
2017-08-03 09:37:40 +08:00

36 lines
807 B
Ruby

require 'spec_helper'
describe 'zaqar::client' do
shared_examples_for 'zaqar client' do
it { is_expected.to contain_class('zaqar::deps') }
it { is_expected.to contain_class('zaqar::params') }
it 'installs zaqar client package' do
is_expected.to contain_package('python-zaqarclient').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
{ :client_package_name => 'python-zaqarclient' }
end
it_behaves_like 'zaqar client'
end
end
end