337b4e91ac
Change-Id: Id8e4e924b9f38bf512bd571ab4109ad5fca7e9f8
99 lines
2.7 KiB
Ruby
99 lines
2.7 KiB
Ruby
#
|
|
# Unit tests for gnocchi::storage::ceph
|
|
#
|
|
require 'spec_helper'
|
|
|
|
describe 'gnocchi::storage::ceph' do
|
|
|
|
let :params do
|
|
{
|
|
:ceph_username => 'joe',
|
|
:ceph_keyring => 'client.admin',
|
|
}
|
|
end
|
|
|
|
shared_examples 'gnocchi::storage::ceph' do
|
|
|
|
context 'with default parameters' do
|
|
it 'configures gnocchi-api with default parameters' do
|
|
is_expected.to contain_gnocchi_config('storage/driver').with_value('ceph')
|
|
is_expected.to contain_gnocchi_config('storage/ceph_username').with_value('joe')
|
|
is_expected.to contain_gnocchi_config('storage/ceph_keyring').with_value('client.admin')
|
|
is_expected.to contain_gnocchi_config('storage/ceph_pool').with_value('gnocchi')
|
|
is_expected.to contain_gnocchi_config('storage/ceph_timeout').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_gnocchi_config('storage/ceph_conffile').with_value('/etc/ceph/ceph.conf')
|
|
end
|
|
|
|
it { is_expected.to contain_package('python-rados').with(
|
|
:ensure => 'installed',
|
|
:name => 'python3-rados',
|
|
:tag => ['openstack', 'gnocchi-package'],
|
|
)}
|
|
end
|
|
|
|
context 'with ceph_secret parameter' do
|
|
before do
|
|
params.merge!({
|
|
:ceph_secret => 'secrete'})
|
|
end
|
|
|
|
it { is_expected.to contain_gnocchi_config('storage/ceph_secret').with_value('secrete').with_secret(true) }
|
|
end
|
|
|
|
context 'without required parameters' do
|
|
before { params.delete(:ceph_keyring) }
|
|
it { expect { is_expected.to raise_error(Puppet::Error) } }
|
|
end
|
|
|
|
context 'with both required parameters set to false' do
|
|
before do
|
|
params.merge!({
|
|
:ceph_secret => false,
|
|
:ceph_keyring => false,
|
|
})
|
|
end
|
|
it { expect { is_expected.to raise_error(Puppet::Error) } }
|
|
end
|
|
|
|
context 'with manage_rados to false' do
|
|
before do
|
|
params.merge!( :manage_rados => false )
|
|
end
|
|
|
|
it { is_expected.not_to contain_package('python-rados') }
|
|
end
|
|
|
|
context 'with package_ensure' do
|
|
before do
|
|
params.merge!( :package_ensure => 'latest' )
|
|
end
|
|
|
|
it { is_expected.to contain_package('python-rados').with(
|
|
:ensure => 'latest',
|
|
:name => 'python3-rados',
|
|
:tag => ['openstack', 'gnocchi-package'],
|
|
)}
|
|
end
|
|
|
|
context 'with ceph_timeout' do
|
|
before do
|
|
params.merge!( :ceph_timeout => 30 )
|
|
end
|
|
|
|
it { is_expected.to contain_gnocchi_config('storage/ceph_timeout').with_value(30) }
|
|
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
|
|
|
|
it_behaves_like 'gnocchi::storage::ceph'
|
|
end
|
|
end
|
|
end
|