puppet-zaqar/spec/classes/zaqar_db_sync_spec.rb
Takashi Kajinami 9ae179cd51 Replace legacy facts and use fact hash
... because the latest lint no longer allows usage of legacy facts and
top scope fact.

Change-Id: If6eb852b44673ea6b6a629aa1381b78bb6ae5646
2023-03-02 12:51:11 +09:00

42 lines
1.0 KiB
Ruby

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