9412a6f45a
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: If27e91cee37d816bfc7b577a154c71a9e5a48324
40 lines
1.0 KiB
Ruby
40 lines
1.0 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'murano::db::sync' do
|
|
|
|
shared_examples_for 'murano-dbsync' do
|
|
|
|
it 'runs murano-dbmanage' do
|
|
is_expected.to contain_exec('murano-dbmanage').with(
|
|
:command => 'murano-db-manage --config-file /etc/murano/murano.conf upgrade',
|
|
:path => '/usr/bin',
|
|
:user => 'murano',
|
|
:refreshonly => 'true',
|
|
:try_sleep => 5,
|
|
:tries => 10,
|
|
:logoutput => 'on_failure',
|
|
:subscribe => ['Anchor[murano::install::end]',
|
|
'Anchor[murano::config::end]',
|
|
'Anchor[murano::dbsync::begin]'],
|
|
:notify => 'Anchor[murano::dbsync::end]',
|
|
)
|
|
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({
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
}))
|
|
end
|
|
|
|
it_configures 'murano-dbsync'
|
|
end
|
|
end
|
|
|
|
end
|