Add test for sync

Change-Id: I01d0d5f50b294a4b9593a651f50cf7b5a2fddd70
This commit is contained in:
ZhongShengping 2016-12-12 16:41:13 +08:00
parent be984e4577
commit c21c7126f8
2 changed files with 43 additions and 1 deletions

View File

@ -5,7 +5,8 @@ class zaqar::db::sync {
include ::zaqar::deps
exec { 'zaqar-manage db_sync':
exec { 'zaqar-db-sync':
command => 'zaqar-manage db_sync',
path => '/usr/bin',
user => 'zaqar',
refreshonly => true,

View 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