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