Files
puppet-ceilometer/spec/classes/ceilometer_agent_notification_spec.rb
ZhongShengping fc4a0fd510 Add hooks for external install & svc management
This adds defined anchor points for external modules to hook into the
software install, config and service dependency chain.  This allows
external modules to manage software installation (virtualenv,
containers, etc) and service management (pacemaker) without needing rely
on resources that may change or be renamed.

Change-Id: I0d18ec6ffe6b54c85773a6dabb0ed7b6f59a12f4
2016-11-29 17:32:37 +08:00

200 lines
6.6 KiB
Ruby

#
# Copyright (C) 2014 eNovance SAS <licensing@enovance.com>
#
# Author: Emilien Macchi <emilien.macchi@enovance.com>
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# Unit tests for ceilometer::agent::notification
#
require 'spec_helper'
describe 'ceilometer::agent::notification' do
let :pre_condition do
"class { 'ceilometer': telemetry_secret => 's3cr3t' }"
end
let :params do
{ :manage_service => true,
:enabled => true,
:ack_on_event_error => true,
:store_events => false }
end
shared_examples_for 'ceilometer-agent-notification' do
it { is_expected.to contain_class('ceilometer::deps') }
it { is_expected.to contain_class('ceilometer::params') }
it 'installs ceilometer agent notification package' do
is_expected.to contain_package(platform_params[:agent_notification_package_name]).with(
:ensure => 'present',
:tag => ['openstack', 'ceilometer-package'],
)
end
it 'configures notifications parameters in ceilometer.conf' do
is_expected.to contain_ceilometer_config('notification/workers').with_value('<SERVICE DEFAULT>')
is_expected.to contain_ceilometer_config('notification/ack_on_event_error').with_value( params[:ack_on_event_error] )
is_expected.to contain_ceilometer_config('notification/store_events').with_value( params[:store_events] )
is_expected.to contain_ceilometer_config('notification/disable_non_metric_meters').with_value('<SERVICE DEFAULT>')
end
context 'with disabled non-metric meters' do
before do
params.merge!({ :disable_non_metric_meters => true })
end
it 'disables non-metric meters' do
is_expected.to contain_ceilometer_config('notification/disable_non_metric_meters').with_value(params[:disable_non_metric_meters])
end
end
[{:enabled => true}, {:enabled => false}].each do |param_hash|
context "when service should be #{param_hash[:enabled] ? 'enabled' : 'disabled'}" do
before do
params.merge!(param_hash)
end
it 'configures ceilometer agent notification service' do
is_expected.to contain_service('ceilometer-agent-notification').with(
:ensure => (params[:manage_service] && params[:enabled]) ? 'running' : 'stopped',
:name => platform_params[:agent_notification_service_name],
:enable => params[:enabled],
:hasstatus => true,
:hasrestart => true,
:tag => 'ceilometer-service'
)
end
end
end
context 'with disabled service managing' do
before do
params.merge!({
:manage_service => false,
:enabled => false })
end
it 'configures ceilometer-agent-notification service' do
is_expected.to contain_service('ceilometer-agent-notification').with(
:ensure => nil,
:name => platform_params[:agent_notification_service_name],
:enable => false,
:hasstatus => true,
:hasrestart => true,
:tag => 'ceilometer-service'
)
end
end
context 'with multiple messaging urls' do
before do
params.merge!({
:messaging_urls => ['rabbit://rabbit_user:password@localhost/nova',
'rabbit://rabbit_user:password@localhost/neutron'] })
end
it 'configures two messaging urls' do
is_expected.to contain_ceilometer_config('notification/messaging_urls').with_value(
['rabbit://rabbit_user:password@localhost/nova', 'rabbit://rabbit_user:password@localhost/neutron']
)
end
end
context "with event_pipeline management enabled" do
before { params.merge!(
:manage_event_pipeline => true
) }
it { is_expected.to contain_file('event_pipeline').with(
'path' => '/etc/ceilometer/event_pipeline.yaml',
) }
it { 'configures event_pipeline with the default notifier'
verify_contents(catalogue, 'event_pipeline', [
"---",
"sources:",
" - name: event_source",
" events:",
" - \"*\"",
" sinks:",
" - event_sink",
"sinks:",
" - name: event_sink",
" transformers:",
" triggers:",
" publishers:",
" - notifier://",
])}
end
context "with multiple event_pipeline publishers specified" do
before { params.merge!(
:manage_event_pipeline => true,
:event_pipeline_publishers => ['notifier://', 'notifier://?topic=alarm.all']
) }
it { 'configures event_pipeline with multiple publishers'
verify_contents(catalogue, 'event_pipeline', [
"---",
"sources:",
" - name: event_source",
" events:",
" - \"*\"",
" sinks:",
" - event_sink",
"sinks:",
" - name: event_sink",
" transformers:",
" triggers:",
" publishers:",
" - notifier://",
" - notifier://?topic=alarm.all",
])}
end
context "with event_pipeline management disabled" do
before { params.merge!(
:manage_event_pipeline => false
) }
it { is_expected.not_to contain_file('event_pipeline') }
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[:osfamily]
when 'Debian'
{ :agent_notification_package_name => 'ceilometer-agent-notification',
:agent_notification_service_name => 'ceilometer-agent-notification' }
when 'RedHat'
{ :agent_notification_package_name => 'openstack-ceilometer-notification',
:agent_notification_service_name => 'openstack-ceilometer-notification' }
end
end
it_behaves_like 'ceilometer-agent-notification'
end
end
end