44900a04a4
Implement some changes for murano-cfapi service, mainly including: 1.Add separate murano-cfapi.conf for murano-cfapi service 2.Add separate command murano-cfapi-db-manage for murano_cfapi db Change-Id: I2a675a30e84ce03cc3cd5fb6fb5a6318498ac913 Closes-Bug: #1589445
136 lines
6.1 KiB
Ruby
136 lines
6.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'murano::logging_cfapi' do
|
|
|
|
let :params do
|
|
{
|
|
}
|
|
end
|
|
|
|
let :log_params do
|
|
{
|
|
:debug => 'true',
|
|
:use_syslog => 'true',
|
|
:use_stderr => 'false',
|
|
:log_facility => 'LOG_LOCAL0',
|
|
:log_dir => '/tmp/murano_cfapi',
|
|
:logging_context_format_string => '%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s',
|
|
:logging_default_format_string => '%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s',
|
|
:logging_debug_format_suffix => '%(funcName)s %(pathname)s:%(lineno)d',
|
|
:logging_exception_prefix => '%(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s',
|
|
:log_config_append => '/etc/murano/logging-cfapi.conf',
|
|
:publish_errors => true,
|
|
:default_log_levels => {
|
|
'amqp' => 'WARN',
|
|
'amqplib' => 'WARN',
|
|
'boto' => 'WARN',
|
|
'sqlalchemy' => 'WARN',
|
|
'suds' => 'INFO',
|
|
'iso8601' => 'WARN',
|
|
'requests.packages.urllib3.connectionpool' => 'WARN' },
|
|
:fatal_deprecations => true,
|
|
:instance_format => '[instance: %(uuid)s] ',
|
|
:instance_uuid_format => '[instance: %(uuid)s] ',
|
|
:log_date_format => '%Y-%m-%d %H:%M:%S',
|
|
}
|
|
end
|
|
|
|
shared_examples_for 'murano-logging-cfapi' do
|
|
|
|
context 'with basic logging options defaults' do
|
|
it_configures 'basic logging options defaults'
|
|
end
|
|
|
|
context 'with basic logging options passed' do
|
|
before { params.merge!( log_params ) }
|
|
it_configures 'basic logging options passed'
|
|
end
|
|
|
|
context 'with extended logging options' do
|
|
before { params.merge!( log_params ) }
|
|
it_configures 'logging params set'
|
|
end
|
|
|
|
context 'without extended logging options' do
|
|
it_configures 'logging params unset'
|
|
end
|
|
|
|
end
|
|
|
|
shared_examples_for 'basic logging options defaults' do
|
|
context 'with defaults' do
|
|
it { is_expected.to contain_murano_cfapi_config('DEFAULT/use_stderr').with_value('<SERVICE DEFAULT>') }
|
|
it { is_expected.to contain_murano_cfapi_config('DEFAULT/use_syslog').with_value('<SERVICE DEFAULT>') }
|
|
it { is_expected.to contain_murano_cfapi_config('DEFAULT/debug').with_value('<SERVICE DEFAULT>') }
|
|
it { is_expected.to contain_murano_cfapi_config('DEFAULT/log_dir').with_value('/var/log/murano_cfapi') }
|
|
end
|
|
|
|
context 'with syslog enabled and default log facility' do
|
|
let :params do
|
|
{ :use_syslog => 'true' }
|
|
end
|
|
|
|
it { is_expected.to contain_murano_cfapi_config('DEFAULT/use_syslog').with_value(true) }
|
|
it { is_expected.to contain_murano_cfapi_config('DEFAULT/syslog_log_facility').with_value('<SERVICE DEFAULT>') }
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'basic logging options passed' do
|
|
context 'with passed params' do
|
|
it { is_expected.to contain_murano_cfapi_config('DEFAULT/debug').with_value(true) }
|
|
it { is_expected.to contain_murano_cfapi_config('DEFAULT/use_syslog').with_value(true) }
|
|
it { is_expected.to contain_murano_cfapi_config('DEFAULT/use_stderr').with_value(false) }
|
|
it { is_expected.to contain_murano_cfapi_config('DEFAULT/syslog_log_facility').with_value('LOG_LOCAL0') }
|
|
it { is_expected.to contain_murano_cfapi_config('DEFAULT/log_dir').with_value('/tmp/murano_cfapi') }
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'logging params set' do
|
|
it 'enables logging params' do
|
|
is_expected.to contain_murano_cfapi_config('DEFAULT/logging_context_format_string').with_value(
|
|
'%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s')
|
|
|
|
is_expected.to contain_murano_cfapi_config('DEFAULT/logging_default_format_string').with_value(
|
|
'%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s')
|
|
|
|
is_expected.to contain_murano_cfapi_config('DEFAULT/logging_debug_format_suffix').with_value(
|
|
'%(funcName)s %(pathname)s:%(lineno)d')
|
|
|
|
is_expected.to contain_murano_cfapi_config('DEFAULT/logging_exception_prefix').with_value(
|
|
'%(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s')
|
|
|
|
is_expected.to contain_murano_cfapi_config('DEFAULT/log_config_append').with_value('/etc/murano/logging-cfapi.conf')
|
|
is_expected.to contain_murano_cfapi_config('DEFAULT/publish_errors').with_value(true)
|
|
is_expected.to contain_murano_cfapi_config('DEFAULT/default_log_levels').with_value(
|
|
'amqp=WARN,amqplib=WARN,boto=WARN,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,sqlalchemy=WARN,suds=INFO')
|
|
|
|
is_expected.to contain_murano_cfapi_config('DEFAULT/fatal_deprecations').with_value(true)
|
|
is_expected.to contain_murano_cfapi_config('DEFAULT/instance_format').with_value('[instance: %(uuid)s] ')
|
|
is_expected.to contain_murano_cfapi_config('DEFAULT/instance_uuid_format').with_value('[instance: %(uuid)s] ')
|
|
is_expected.to contain_murano_cfapi_config('DEFAULT/log_date_format').with_value('%Y-%m-%d %H:%M:%S')
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'logging params unset' do
|
|
[ :logging_context_format_string, :logging_default_format_string, :logging_debug_format_suffix,
|
|
:logging_exception_prefix, :log_config_append, :publish_errors,
|
|
:default_log_levels, :fatal_deprecations, :instance_format,
|
|
:instance_uuid_format, :log_date_format, ].each { |param|
|
|
it { is_expected.to contain_murano_cfapi_config("DEFAULT/#{param}").with_value('<SERVICE DEFAULT>') }
|
|
}
|
|
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_configures 'murano-logging-cfapi'
|
|
end
|
|
end
|
|
|
|
end
|