9eb1bc9316
Increase the setting log level in the synchronization database. Change-Id: I486ed0250e09f75bfebc1dcb6f56be178d1243e9 Closes-Bug: #1683567
65 lines
1.8 KiB
Ruby
65 lines
1.8 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'octavia::db::sync' do
|
|
|
|
shared_examples_for 'octavia-dbsync' do
|
|
|
|
it 'runs octavia-manage db upgrade' do
|
|
is_expected.to contain_exec('octavia-db-sync').with(
|
|
:command => 'octavia-db-manage upgrade head ',
|
|
:user => 'octavia',
|
|
:path => '/usr/bin',
|
|
:refreshonly => 'true',
|
|
:try_sleep => 5,
|
|
:tries => 10,
|
|
:logoutput => 'on_failure',
|
|
:subscribe => ['Anchor[octavia::install::end]',
|
|
'Anchor[octavia::config::end]',
|
|
'Anchor[octavia::dbsync::begin]'],
|
|
:notify => 'Anchor[octavia::dbsync::end]',
|
|
)
|
|
end
|
|
|
|
describe "overriding extra_params" do
|
|
let :params do
|
|
{
|
|
:extra_params => '--config-file /etc/octavia/octavia.conf',
|
|
}
|
|
end
|
|
|
|
it {
|
|
is_expected.to contain_exec('octavia-db-sync').with(
|
|
:command => 'octavia-db-manage upgrade head --config-file /etc/octavia/octavia.conf',
|
|
:user => 'octavia',
|
|
:path => '/usr/bin',
|
|
:refreshonly => 'true',
|
|
:try_sleep => 5,
|
|
:tries => 10,
|
|
:logoutput => 'on_failure',
|
|
:subscribe => ['Anchor[octavia::install::end]',
|
|
'Anchor[octavia::config::end]',
|
|
'Anchor[octavia::dbsync::begin]'],
|
|
:notify => 'Anchor[octavia::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({
|
|
:os_workers => 8,
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
}))
|
|
end
|
|
|
|
it_configures 'octavia-dbsync'
|
|
end
|
|
end
|
|
|
|
end
|