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(
|
2024-03-05 12:18:57 +09:00
|
|
|
:command => ['aodh-dbsync'],
|
2016-04-30 22:24:24 +08:00
|
|
|
:path => '/usr/bin',
|
|
|
|
:refreshonly => 'true',
|
|
|
|
:user => 'aodh',
|
2016-12-01 15:42:24 +08:00
|
|
|
:try_sleep => 5,
|
|
|
|
:tries => 10,
|
2020-11-23 09:27:52 +08:00
|
|
|
:timeout => 300,
|
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]',
|
2018-03-12 16:33:05 +08:00
|
|
|
:tag => 'openstack-db',
|
2016-04-30 22:24:24 +08:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2020-11-23 09:27:52 +08:00
|
|
|
describe "overriding db_sync_timeout" do
|
|
|
|
let :params do
|
|
|
|
{
|
|
|
|
:db_sync_timeout => 750,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it {
|
|
|
|
is_expected.to contain_exec('aodh-db-sync').with(
|
2024-03-05 12:18:57 +09:00
|
|
|
:command => ['aodh-dbsync'],
|
2020-11-23 09:27:52 +08:00
|
|
|
:path => '/usr/bin',
|
|
|
|
:refreshonly => 'true',
|
|
|
|
:user => 'aodh',
|
|
|
|
:try_sleep => 5,
|
|
|
|
:tries => 10,
|
|
|
|
:timeout => 750,
|
|
|
|
:logoutput => 'on_failure',
|
|
|
|
:subscribe => ['Anchor[aodh::install::end]',
|
|
|
|
'Anchor[aodh::config::end]',
|
|
|
|
'Anchor[aodh::dbsync::begin]'],
|
|
|
|
:notify => 'Anchor[aodh::dbsync::end]',
|
|
|
|
:tag => 'openstack-db',
|
|
|
|
)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-04-30 22:24:24 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
on_supported_os({
|
|
|
|
:supported_os => OSDefaults.get_supported_os
|
|
|
|
}).each do |os,facts|
|
|
|
|
context "on #{os}" do
|
|
|
|
let (:facts) do
|
2023-03-01 12:02:51 +09:00
|
|
|
facts.merge(OSDefaults.get_facts())
|
2016-04-30 22:24:24 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it_configures 'aodh-dbsync'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|