puppet-manila/spec/classes/manila_db_sync_spec.rb
ZhongShengping 8a922c1a55 Include deps class in unit test for sync
Change-Id: If79b3fad8dbef1865a1c3963ee60fc8f87c607d0
2020-10-12 10:46:40 +08:00

45 lines
1.1 KiB
Ruby

require 'spec_helper'
describe 'manila::db::sync' do
shared_examples_for 'manila-dbsync' do
it { is_expected.to contain_class('manila::deps') }
it 'runs manila-db-sync' do
is_expected.to contain_exec('manila-manage db_sync').with(
:command => 'manila-manage db sync',
:path => '/usr/bin',
:refreshonly => 'true',
:user => 'manila',
:try_sleep => 5,
:tries => 10,
:logoutput => 'on_failure',
:subscribe => ['Anchor[manila::install::end]',
'Anchor[manila::config::end]',
'Anchor[manila::dbsync::begin]'],
:notify => 'Anchor[manila::dbsync::end]',
:tag => 'openstack-db',
)
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 'manila-dbsync'
end
end
end