55b7aad8cf
This patch aim to update our specs test in order to work with the new rspec-puppet release 2.0.0, in the mean time, we update rspec syntax in order to be prepared for rspec 3.x move. In details: * Use shared_examples "a Puppet::Error" for puppet::error tests * Convert 'should' keyword to 'is_expected.to' (prepare rspec 3.x) * Fix spec tests for rspec-puppet 2.0.0 * Upgrade and pin rspec-puppet from 1.0.1 to 2.0.0 * Clean Gemfile (remove over-specificication of runtime deps of puppetlabs_spec_helper) Change-Id: Ieaff6bc8bdd8548648ff5e76b212d4df382fa8a3 Card: https://trello.com/c/eHXc1Ryd/4-investigate-the-necessary-change-to-be-rspec-puppet-2-0-0-compliant
108 lines
3.9 KiB
Ruby
108 lines
3.9 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'ceilometer::logging' do
|
|
|
|
let :params do
|
|
{
|
|
}
|
|
end
|
|
|
|
let :log_params do
|
|
{
|
|
: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/ceilometer/logging.conf',
|
|
:publish_errors => true,
|
|
:default_log_levels => {
|
|
'amqp' => 'WARN', 'amqplib' => 'WARN', 'boto' => 'WARN',
|
|
'qpid' => '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 'ceilometer-logging' do
|
|
|
|
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 'logging params set' do
|
|
it 'enables logging params' do
|
|
is_expected.to contain_ceilometer_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_ceilometer_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_ceilometer_config('DEFAULT/logging_debug_format_suffix').with_value(
|
|
'%(funcName)s %(pathname)s:%(lineno)d')
|
|
|
|
is_expected.to contain_ceilometer_config('DEFAULT/logging_exception_prefix').with_value(
|
|
'%(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s')
|
|
|
|
is_expected.to contain_ceilometer_config('DEFAULT/log_config_append').with_value(
|
|
'/etc/ceilometer/logging.conf')
|
|
is_expected.to contain_ceilometer_config('DEFAULT/publish_errors').with_value(
|
|
true)
|
|
|
|
is_expected.to contain_ceilometer_config('DEFAULT/default_log_levels').with_value(
|
|
'amqp=WARN,amqplib=WARN,boto=WARN,iso8601=WARN,qpid=WARN,requests.packages.urllib3.connectionpool=WARN,sqlalchemy=WARN,suds=INFO')
|
|
|
|
is_expected.to contain_ceilometer_config('DEFAULT/fatal_deprecations').with_value(
|
|
true)
|
|
|
|
is_expected.to contain_ceilometer_config('DEFAULT/instance_format').with_value(
|
|
'[instance: %(uuid)s] ')
|
|
|
|
is_expected.to contain_ceilometer_config('DEFAULT/instance_uuid_format').with_value(
|
|
'[instance: %(uuid)s] ')
|
|
|
|
is_expected.to contain_ceilometer_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_ceilometer_config("DEFAULT/#{param}").with_ensure('absent') }
|
|
}
|
|
end
|
|
|
|
context 'on Debian platforms' do
|
|
let :facts do
|
|
{ :osfamily => 'Debian' }
|
|
end
|
|
|
|
it_configures 'ceilometer-logging'
|
|
end
|
|
|
|
context 'on RedHat platforms' do
|
|
let :facts do
|
|
{ :osfamily => 'RedHat' }
|
|
end
|
|
|
|
it_configures 'ceilometer-logging'
|
|
end
|
|
|
|
end
|