Files
puppet-nova/spec/classes/nova_compute_libvirt_services_spec.rb
Takashi Kajinami e8a14766c8 Install swtpm package
The swtpm package is required to support TPM emulation[1].

[1] https://docs.openstack.org/nova/latest/admin/emulated-tpm.html

Change-Id: I79f094ac6e5e3a6ecdc5b70f32fb63756395adf3
2023-11-01 13:18:46 +09:00

79 lines
2.3 KiB
Ruby

require 'spec_helper'
describe 'nova::compute::libvirt::services' do
shared_examples_for 'nova compute libvirt services' do
context 'with default parameters' do
it 'deploys libvirt packages and services' do
is_expected.to contain_package('ovmf')
is_expected.to contain_package('swtpm')
is_expected.to contain_package('libvirt')
is_expected.to contain_service('libvirt')
end
end
context 'with overridden parameters' do
let :params do
{
:libvirt_service_name => false,
:modular_libvirt => false,
:manage_ovmf => false,
:manage_swtpm => false,
}
end
it 'disable libvirt service' do
is_expected.not_to contain_package('libvirt')
is_expected.not_to contain_service('libvirt')
end
it 'skips installing ovmf' do
is_expected.not_to contain_package('ovmf')
end
it 'skips installing swtpm' do
is_expected.not_to contain_package('swtpm')
end
end
end
shared_examples_for 'nova compute libvirt services with modular libvirt' do
context 'with default parameters' do
let :params do
{
:modular_libvirt => true
}
end
it 'deploys libvirt packages and services with modular-libvirt' do
is_expected.to contain_package('libvirt')
is_expected.to contain_package('virtqemu')
is_expected.to contain_package('virtsecret')
is_expected.to contain_package('virtstorage')
is_expected.to contain_package('virtnodedev')
is_expected.to contain_service('virtlogd')
is_expected.to contain_service('virtproxyd')
is_expected.to contain_service('virtnodedevd')
is_expected.to contain_service('virtsecretd')
is_expected.to contain_service('virtstoraged')
is_expected.to contain_service('virtqemud')
end
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_configures 'nova compute libvirt services'
if facts['osfamily'] == 'RedHat'
it_configures 'nova compute libvirt services with modular libvirt'
end
end
end
end