ca26a6bbc8
Change-Id: I66c41584347c9986ac7e884e80efa982b4050175
31 lines
761 B
Ruby
31 lines
761 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'ironic::inspector::db::sync' do
|
|
|
|
shared_examples_for 'inspector-dbsync' do
|
|
|
|
it 'runs ironic-inspectror-db_sync' do
|
|
is_expected.to contain_exec('ironic-inspector-dbsync').with(
|
|
:command => 'ironic-inspector-dbsync --config-file /etc/ironic-inspector/inspector.conf upgrade',
|
|
:path => '/usr/bin',
|
|
:user => 'ironic-inspector',
|
|
:refreshonly => 'true',
|
|
:logoutput => 'on_failure'
|
|
)
|
|
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())
|
|
end
|
|
it_behaves_like 'inspector-dbsync'
|
|
end
|
|
end
|
|
|
|
end
|