puppet-zaqar/spec/classes/zaqar_db_sync_spec.rb
Thomas Herve d1e35d4e6b Fix db-sync
This fixes the command used to sync zaqar database.

Change-Id: I9e57885796a6ba2efe8d7a16528d582163ae896a
2017-03-07 22:14:59 +01: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,
:subscribe => ['Anchor[zaqar::install::end]',
'Anchor[zaqar::config::end]',
'Anchor[zaqar::dbsync::begin]'],
:notify => 'Anchor[zaqar::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 'zaqar-dbsync'
end
end
end