2016-04-30 22:24:24 +08:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'aodh::db::sync' do
|
|
|
|
|
|
|
|
shared_examples_for 'aodh-dbsync' do
|
|
|
|
|
2016-11-25 10:14:13 +08:00
|
|
|
it { is_expected.to contain_class('aodh::deps') }
|
|
|
|
|
2016-04-30 22:24:24 +08:00
|
|
|
it 'runs aodh-db-sync' do
|
|
|
|
is_expected.to contain_exec('aodh-db-sync').with(
|
|
|
|
:command => 'aodh-dbsync --config-file /etc/aodh/aodh.conf',
|
|
|
|
:path => '/usr/bin',
|
|
|
|
:refreshonly => 'true',
|
|
|
|
:user => 'aodh',
|
2016-11-25 10:14:13 +08:00
|
|
|
:logoutput => 'on_failure',
|
|
|
|
:subscribe => ['Anchor[aodh::install::end]',
|
|
|
|
'Anchor[aodh::config::end]',
|
|
|
|
'Anchor[aodh::dbsync::begin]'],
|
|
|
|
:notify => 'Anchor[aodh::dbsync::end]',
|
2016-04-30 22:24:24 +08:00
|
|
|
)
|
|
|
|
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({
|
2016-10-07 17:17:56 +03:00
|
|
|
:os_workers => 8,
|
2016-04-30 22:24:24 +08:00
|
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
|
|
}))
|
|
|
|
end
|
|
|
|
|
|
|
|
it_configures 'aodh-dbsync'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|