12c1944b3d
This change introduces the config class for ironic-inspector so that users can inject arbitrary parameters even if these are not implemented in manifests. Change-Id: Ieaeb38e96559a2841bad63c7c6db9e7f2f433140
36 lines
932 B
Ruby
36 lines
932 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'ironic::inspector::config' do
|
|
let :params do
|
|
{
|
|
:ironic_inspector_config => {
|
|
'DEFAULT/foo' => { 'value' => 'fooValue' },
|
|
'DEFAULT/bar' => { 'value' => 'barValue' },
|
|
'DEFAULT/baz' => { 'ensure' => 'absent' }
|
|
}
|
|
}
|
|
end
|
|
|
|
shared_examples 'ironic::inspector::config' do
|
|
it { should contain_class('ironic::deps') }
|
|
|
|
it {
|
|
should contain_ironic_inspector_config('DEFAULT/foo').with_value('fooValue')
|
|
should contain_ironic_inspector_config('DEFAULT/bar').with_value('barValue')
|
|
should contain_ironic_inspector_config('DEFAULT/baz').with_ensure('absent')
|
|
}
|
|
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 'ironic::inspector::config'
|
|
end
|
|
end
|
|
end
|