
The ignore_projects option is not a multi-valued option but accepts only comma-separated strings. Change-Id: I7977ea4c84417078457afb0d0834934ba5481e5d (cherry picked from commit e751dda37b549d26f4bf5c097e7d1ce8f1aa08b4) (cherry picked from commit 642bd4006c03615e429d04fff8f6bc7b0505317d) (cherry picked from commit a78079fcf32e2869f2976c85452c4d38387585fb)
154 lines
7.2 KiB
Ruby
154 lines
7.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::proxy::ceilometer' do
|
|
|
|
let :pre_condition do
|
|
'class { "swift":
|
|
swift_hash_path_suffix => "dummy"
|
|
}'
|
|
end
|
|
|
|
shared_examples 'swift::proxy::ceilometer' do
|
|
describe "when using default parameters" do
|
|
let :params do
|
|
{
|
|
:default_transport_url => 'rabbit://user_1:user_1_passw@1.1.1.1:5673/rabbit',
|
|
}
|
|
end
|
|
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/password').with_value('password').with_secret(true) }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/paste.filter_factory').with_value('ceilometermiddleware.swift:filter_factory') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/url').with_value('rabbit://user_1:user_1_passw@1.1.1.1:5673/rabbit').with_secret(true) }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/nonblocking_notify').with_value('false') }
|
|
|
|
it { is_expected.to contain_package('python-ceilometermiddleware').with(
|
|
:ensure => 'present',
|
|
:name => platform_params[:ceilometermiddleware_package_name],
|
|
:tag => ['openstack', 'swift-support-package'],
|
|
)}
|
|
end
|
|
|
|
describe "when overriding default parameters with rabbit driver" do
|
|
let :params do
|
|
{ :default_transport_url => 'rabbit://user_1:user_1_passw@1.1.1.1:5673/rabbit',
|
|
:driver => 'messagingv2',
|
|
:topic => 'notifications',
|
|
:control_exchange => 'swift',
|
|
:nonblocking_notify => true,
|
|
:ignore_projects => ['services', 'admin'],
|
|
:auth_url => 'http://127.0.0.1:5000',
|
|
:auth_type => 'password',
|
|
:project_domain_name => 'Default',
|
|
:user_domain_name => 'Default',
|
|
:project_name => 'services',
|
|
:username => 'swift',
|
|
:password => 'mypassword',
|
|
:region_name => 'region2'
|
|
}
|
|
end
|
|
|
|
context 'with single rabbit host' do
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/paste.filter_factory').with_value('ceilometermiddleware.swift:filter_factory') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/url').with_value('rabbit://user_1:user_1_passw@1.1.1.1:5673/rabbit').with_secret(true) }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/driver').with_value('messagingv2') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/topic').with_value('notifications') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/control_exchange').with_value('swift') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/nonblocking_notify').with_value('true') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/ignore_projects').with_value('services,admin') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/auth_url').with_value('http://127.0.0.1:5000') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/auth_type').with_value('password') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/project_name').with_value('services') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/project_domain_name').with_value('Default') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/system_scope').with_value('<SERVICE DEFAULT>') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/username').with_value('swift') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/user_domain_name').with_value('Default') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/password').with_value('mypassword').with_secret(true) }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/region_name').with_value('region2') }
|
|
end
|
|
|
|
context 'with default transport url' do
|
|
before do
|
|
params.merge!({ :default_transport_url => 'rabbit://user:pass@host:1234/virt' })
|
|
end
|
|
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/url').with_value('rabbit://user:pass@host:1234/virt').with_secret(true) }
|
|
end
|
|
|
|
it { is_expected.to contain_oslo__messaging__rabbit('swift_proxy_config').with(
|
|
:rabbit_ha_queues => '<SERVICE DEFAULT>',
|
|
:heartbeat_timeout_threshold => '<SERVICE DEFAULT>',
|
|
:heartbeat_rate => '<SERVICE DEFAULT>',
|
|
:heartbeat_in_pthread => '<SERVICE DEFAULT>',
|
|
:rabbit_qos_prefetch_count => '<SERVICE DEFAULT>',
|
|
:amqp_durable_queues => '<SERVICE DEFAULT>',
|
|
:kombu_ssl_ca_certs => '<SERVICE DEFAULT>',
|
|
:kombu_ssl_certfile => '<SERVICE DEFAULT>',
|
|
:kombu_ssl_keyfile => '<SERVICE DEFAULT>',
|
|
:kombu_ssl_version => '<SERVICE DEFAULT>',
|
|
:rabbit_use_ssl => '<SERVICE DEFAULT>',
|
|
:kombu_reconnect_delay => '<SERVICE DEFAULT>',
|
|
:kombu_failover_strategy => '<SERVICE DEFAULT>',
|
|
:kombu_compression => '<SERVICE DEFAULT>',
|
|
)}
|
|
it { is_expected.to contain_oslo__messaging__amqp('swift_proxy_config') }
|
|
|
|
context 'with overridden rabbit ssl params' do
|
|
before do
|
|
params.merge!(
|
|
{
|
|
:notification_ssl_ca_file => '/etc/ca.cert',
|
|
:notification_ssl_cert_file => '/etc/certfile',
|
|
:notification_ssl_key_file => '/etc/key',
|
|
:rabbit_use_ssl => true,
|
|
:kombu_ssl_version => 'TLSv1',
|
|
})
|
|
end
|
|
|
|
it { is_expected.to contain_oslo__messaging__rabbit('swift_proxy_config').with(
|
|
:rabbit_use_ssl => true,
|
|
:kombu_ssl_ca_certs => '/etc/ca.cert',
|
|
:kombu_ssl_certfile => '/etc/certfile',
|
|
:kombu_ssl_keyfile => '/etc/key',
|
|
:kombu_ssl_version => 'TLSv1',
|
|
)}
|
|
end
|
|
|
|
end
|
|
|
|
describe 'when system_scope is set' do
|
|
let :params do
|
|
{
|
|
:default_transport_url => 'rabbit://user_1:user_1_passw@1.1.1.1:5673/rabbit',
|
|
:system_scope => 'all'
|
|
}
|
|
end
|
|
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/project_name').with_value('<SERVICE DEFAULT>') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/project_domain_name').with_value('<SERVICE DEFAULT>') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/system_scope').with_value('all') }
|
|
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'
|
|
{ :ceilometermiddleware_package_name => 'python3-ceilometermiddleware' }
|
|
when 'RedHat'
|
|
{ :ceilometermiddleware_package_name => 'python3-ceilometermiddleware' }
|
|
end
|
|
end
|
|
|
|
it_behaves_like 'swift::proxy::ceilometer'
|
|
end
|
|
end
|
|
|
|
end
|