
Per Mitaka nova commit 8e8e839ef748be242fd0ad02e3ae233cc98da8b2 we now need to create and sync the 'nova_api' database. Closes-bug: #1539793 Co-Authored-By: Dan Prince <dprince@redhat.com> Co-Authored-By: Emilien Macchi <emilien@redhat.com> Change-Id: I234d2e9e219c6ea4235c3d3c5193b8924d6e6f8e
60 lines
1.4 KiB
Ruby
60 lines
1.4 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'nova::db::sync_api' do
|
|
|
|
shared_examples_for 'nova-dbsync-api' do
|
|
|
|
it 'runs nova-db-sync-api' do
|
|
is_expected.to contain_exec('nova-db-sync-api').with(
|
|
:command => '/usr/bin/nova-manage api_db sync',
|
|
:refreshonly => 'true',
|
|
:logoutput => 'on_failure'
|
|
)
|
|
end
|
|
|
|
describe "overriding extra_params" do
|
|
let :params do
|
|
{
|
|
:extra_params => '--config-file /etc/nova/nova.conf',
|
|
}
|
|
end
|
|
|
|
it {
|
|
is_expected.to contain_exec('nova-db-sync-api').with(
|
|
:command => '/usr/bin/nova-manage --config-file /etc/nova/nova.conf api_db sync',
|
|
:refreshonly => 'true',
|
|
:logoutput => 'on_failure'
|
|
)
|
|
}
|
|
end
|
|
|
|
end
|
|
|
|
|
|
context 'on a RedHat osfamily' do
|
|
let :facts do
|
|
@default_facts.merge({
|
|
:osfamily => 'RedHat',
|
|
:operatingsystemrelease => '7.0',
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
})
|
|
end
|
|
|
|
it_configures 'nova-dbsync-api'
|
|
end
|
|
|
|
context 'on a Debian osfamily' do
|
|
let :facts do
|
|
@default_facts.merge({
|
|
:operatingsystemrelease => '7.8',
|
|
:operatingsystem => 'Debian',
|
|
:osfamily => 'Debian',
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
})
|
|
end
|
|
|
|
it_configures 'nova-dbsync-api'
|
|
end
|
|
|
|
end
|