b27952a457
Change-Id: I404492a21eff9cfb4caf5e95228a8205ca9afcb6
91 lines
2.6 KiB
Ruby
91 lines
2.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'neutron::db::sync' do
|
|
shared_examples 'neutron-dbsync' do
|
|
|
|
it { is_expected.to contain_class('neutron::deps') }
|
|
|
|
it 'runs neutron-db-sync' do
|
|
should contain_exec('neutron-db-sync').with(
|
|
:command => 'neutron-db-manage upgrade heads',
|
|
:path => '/usr/bin',
|
|
:refreshonly => 'true',
|
|
:try_sleep => 5,
|
|
:tries => 10,
|
|
:timeout => 300,
|
|
:logoutput => 'on_failure',
|
|
:subscribe => ['Anchor[neutron::install::end]',
|
|
'Anchor[neutron::config::end]',
|
|
'Anchor[neutron::dbsync::begin]'],
|
|
:notify => 'Anchor[neutron::dbsync::end]',
|
|
:tag => 'openstack-db',
|
|
)
|
|
end
|
|
|
|
describe "overriding extra_params" do
|
|
let :params do
|
|
{
|
|
:extra_params => '--config-file /etc/neutron/neutron.conf',
|
|
}
|
|
end
|
|
|
|
it {
|
|
should contain_exec('neutron-db-sync').with(
|
|
:command => 'neutron-db-manage --config-file /etc/neutron/neutron.conf upgrade heads',
|
|
:path => '/usr/bin',
|
|
:refreshonly => 'true',
|
|
:try_sleep => 5,
|
|
:tries => 10,
|
|
:timeout => 300,
|
|
:logoutput => 'on_failure',
|
|
:subscribe => ['Anchor[neutron::install::end]',
|
|
'Anchor[neutron::config::end]',
|
|
'Anchor[neutron::dbsync::begin]'],
|
|
:notify => 'Anchor[neutron::dbsync::end]',
|
|
:tag => 'openstack-db',
|
|
)
|
|
}
|
|
end
|
|
|
|
describe "overriding db_sync_timeout" do
|
|
let :params do
|
|
{
|
|
:db_sync_timeout => 750,
|
|
}
|
|
end
|
|
|
|
it {
|
|
should contain_exec('neutron-db-sync').with(
|
|
:command => 'neutron-db-manage upgrade heads',
|
|
:path => '/usr/bin',
|
|
:refreshonly => 'true',
|
|
:try_sleep => 5,
|
|
:tries => 10,
|
|
:timeout => 750,
|
|
:logoutput => 'on_failure',
|
|
:subscribe => ['Anchor[neutron::install::end]',
|
|
'Anchor[neutron::config::end]',
|
|
'Anchor[neutron::dbsync::begin]'],
|
|
:notify => 'Anchor[neutron::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({
|
|
:processorcount => 8,
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
}))
|
|
end
|
|
|
|
it_behaves_like 'neutron-dbsync'
|
|
end
|
|
end
|
|
end
|