Add test for sync
Change-Id: I01d0d5f50b294a4b9593a651f50cf7b5a2fddd70
This commit is contained in:
parent
be984e4577
commit
c21c7126f8
@ -5,7 +5,8 @@ class zaqar::db::sync {
|
|||||||
|
|
||||||
include ::zaqar::deps
|
include ::zaqar::deps
|
||||||
|
|
||||||
exec { 'zaqar-manage db_sync':
|
exec { 'zaqar-db-sync':
|
||||||
|
command => 'zaqar-manage db_sync',
|
||||||
path => '/usr/bin',
|
path => '/usr/bin',
|
||||||
user => 'zaqar',
|
user => 'zaqar',
|
||||||
refreshonly => true,
|
refreshonly => true,
|
||||||
|
41
spec/classes/zaqar_db_sync_spec.rb
Normal file
41
spec/classes/zaqar_db_sync_spec.rb
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
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-manage db_sync',
|
||||||
|
: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
|
Loading…
x
Reference in New Issue
Block a user