a8fc8c9722
This makes sure that the parameters which accept redis url are hidden from logs, because redis url can contain password as a URL element. example: redis://:password@127.0.0.1:6379 Closes-Bug: #2012246 Change-Id: Ief97f9e28ed7e318b56b27f03214ecc76de6798e
82 lines
2.2 KiB
Ruby
82 lines
2.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'gnocchi' do
|
|
|
|
shared_examples 'gnocchi' do
|
|
|
|
context 'with default parameters' do
|
|
let :params do
|
|
{ :purge_config => false }
|
|
end
|
|
|
|
it 'contains the deps class' do
|
|
is_expected.to contain_class('gnocchi::deps')
|
|
end
|
|
|
|
it 'installs packages' do
|
|
is_expected.to contain_package('gnocchi').with(
|
|
:name => platform_params[:gnocchi_common_package],
|
|
:ensure => 'present',
|
|
:tag => ['openstack', 'gnocchi-package']
|
|
)
|
|
end
|
|
|
|
it 'passes purge to resource' do
|
|
is_expected.to contain_resources('gnocchi_config').with({
|
|
:purge => false
|
|
})
|
|
end
|
|
|
|
it 'does not configure coordination_url' do
|
|
is_expected.to contain_gnocchi_config('DEFAULT/coordination_url').with_value('<SERVICE DEFAULT>').with_secret(true)
|
|
is_expected.to contain_oslo__coordination('gnocchi_config').with(
|
|
:backend_url => '<SERVICE DEFAULT>',
|
|
:manage_config => false,
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'with overridden parameters' do
|
|
let :params do
|
|
{ :purge_config => true,
|
|
:coordination_url => 'redis://localhost:6379', }
|
|
end
|
|
|
|
it 'purges gnocchi config' do
|
|
is_expected.to contain_resources('gnocchi_config').with({
|
|
:purge => true
|
|
})
|
|
end
|
|
|
|
it 'configures coordination' do
|
|
is_expected.to contain_gnocchi_config('DEFAULT/coordination_url').with_value('redis://localhost:6379').with_secret(true)
|
|
is_expected.to contain_oslo__coordination('gnocchi_config').with(
|
|
:backend_url => 'redis://localhost:6379',
|
|
:manage_config => false,
|
|
)
|
|
end
|
|
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
|
|
case facts[:os]['family']
|
|
when 'Debian'
|
|
{ :gnocchi_common_package => 'gnocchi-common' }
|
|
when 'RedHat'
|
|
{ :gnocchi_common_package => 'gnocchi-common' }
|
|
end
|
|
end
|
|
it_behaves_like 'gnocchi'
|
|
end
|
|
end
|
|
|
|
end
|