5242d3a08b
... so that this module supports configuration of all libvirt daemons. Change-Id: I93a02935df3a23e15b4a37081dc2a6ea646f6c79
60 lines
1.7 KiB
Ruby
60 lines
1.7 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'nova::compute::libvirt::config' do
|
|
shared_examples 'nova::compute::libvirt::config' do
|
|
let :params do
|
|
{
|
|
:libvirtd_config => {
|
|
'foo' => { 'value' => 'fooValue' },
|
|
'bar' => { 'value' => 'barValue' },
|
|
'baz' => { 'ensure' => 'absent' }
|
|
},
|
|
:virtlogd_config => {
|
|
'foo2' => { 'value' => 'fooValue' },
|
|
'bar2' => { 'value' => 'barValue' },
|
|
'baz2' => { 'ensure' => 'absent' }
|
|
},
|
|
:virtlockd_config => {
|
|
'foo3' => { 'value' => 'fooValue' },
|
|
'bar3' => { 'value' => 'barValue' },
|
|
'baz3' => { 'ensure' => 'absent' }
|
|
}
|
|
}
|
|
end
|
|
|
|
context 'with specified configs' do
|
|
it { should contain_class('nova::deps') }
|
|
|
|
it {
|
|
should contain_libvirtd_config('foo').with_value('fooValue')
|
|
should contain_libvirtd_config('bar').with_value('barValue')
|
|
should contain_libvirtd_config('baz').with_ensure('absent')
|
|
}
|
|
|
|
it {
|
|
should contain_virtlogd_config('foo2').with_value('fooValue')
|
|
should contain_virtlogd_config('bar2').with_value('barValue')
|
|
should contain_virtlogd_config('baz2').with_ensure('absent')
|
|
}
|
|
|
|
it {
|
|
should contain_virtlockd_config('foo3').with_value('fooValue')
|
|
should contain_virtlockd_config('bar3').with_value('barValue')
|
|
should contain_virtlockd_config('baz3').with_ensure('absent')
|
|
}
|
|
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 'nova::compute::libvirt::config'
|
|
end
|
|
end
|
|
end
|