
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: Ibc184a50cf16b7048e0f7249f8894d8661bb76fe
32 lines
684 B
Ruby
32 lines
684 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'aodh::client' do
|
|
|
|
shared_examples_for 'aodh client' do
|
|
|
|
it { is_expected.to contain_class('aodh::deps') }
|
|
it { is_expected.to contain_class('aodh::params') }
|
|
|
|
it 'installs aodh client package' do
|
|
is_expected.to contain_package('python-aodhclient').with(
|
|
:ensure => 'present',
|
|
:name => 'python-aodhclient',
|
|
:tag => 'openstack',
|
|
)
|
|
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
|
|
|
|
it_configures 'aodh client'
|
|
end
|
|
end
|
|
|
|
end
|