Files
puppet-swift/spec/classes/swift_client_spec.rb
zhubingbing 09139955cb Debian is using python3-swiftclient
Change-Id: I64f7fc1a2172f5f4a200a822eb4f617fde65db55
2018-04-12 11:36:09 +08:00

58 lines
1.3 KiB
Ruby

require 'spec_helper'
describe 'swift::client' do
let :params do
{}
end
let :default_params do
{ :package_ensure => 'present' }
end
shared_examples_for 'swift client' do
let :p do
default_params.merge(params)
end
it { is_expected.to contain_class('swift::params') }
it 'installs swift client package' do
is_expected.to contain_package('swiftclient').with(
:name => platform_params[:client_package_name],
:ensure => p[:package_ensure],
:tag => ['openstack','swift-support-package'],
)
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({
:fqdn => 'some.host.tld',
}))
end
let(:platform_params) do
case facts[:osfamily]
when 'Debian'
if facts[:os_package_type] == 'debian'
{ :client_package_name => 'python3-swiftclient' }
else
{ :client_package_name => 'python-swiftclient' }
end
when 'RedHat'
{ :client_package_name => 'python-swiftclient' }
end
end
it_configures 'swift client'
end
end
end