7f88e87fe8
Ironic has never used api-paste.ini but defines pipeline in code. The ironic_api_paste_ini resource type to manage api-paste.ini is deprecated because the resource is just invalid. Change-Id: I5fc1d691642f184b6fdd4bfcba5314b3ea11b583
36 lines
866 B
Ruby
36 lines
866 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'ironic::config' do
|
|
let :params do
|
|
{
|
|
:ironic_config => {
|
|
'DEFAULT/foo' => { 'value' => 'fooValue' },
|
|
'DEFAULT/bar' => { 'value' => 'barValue' },
|
|
'DEFAULT/baz' => { 'ensure' => 'absent' }
|
|
}
|
|
}
|
|
end
|
|
|
|
shared_examples 'ironic::config' do
|
|
it { should contain_class('ironic::deps') }
|
|
|
|
it {
|
|
should contain_ironic_config('DEFAULT/foo').with_value('fooValue')
|
|
should contain_ironic_config('DEFAULT/bar').with_value('barValue')
|
|
should contain_ironic_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::config'
|
|
end
|
|
end
|
|
end
|