require 'spec_helper' describe 'ironic::db::sync' do shared_examples_for 'ironic-dbsync' do it 'runs ironic-manage db_sync' do is_expected.to contain_exec('ironic-dbsync').with( :command => 'ironic-dbsync --config-file /etc/ironic/ironic.conf', :path => '/usr/bin', :user => 'root', :refreshonly => 'true', :logoutput => 'on_failure' ) end end context 'on a RedHat osfamily' do let :facts do { :osfamily => 'RedHat', :operatingsystemrelease => '7.0', :concat_basedir => '/var/lib/puppet/concat' } end it_configures 'ironic-dbsync' end context 'on a Debian osfamily' do let :facts do { :operatingsystemrelease => '7.8', :operatingsystem => 'Debian', :osfamily => 'Debian', :concat_basedir => '/var/lib/puppet/concat' } end it_configures 'ironic-dbsync' end end