puppet-gnocchi/spec/classes/gnocchi_storage_ceph_spec.rb

78 lines
2.1 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_conffile').with_value('/etc/ceph/ceph.conf')
end
it { is_expected.to contain_package('python-rados').with(
:ensure => 'present',
: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
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