
Some classes require nova::compute::libvirt but there is no need to put that class into dependencies because resource orders are defined by deps or explicit definitions. Also, the base libvirt class is not really required. This change removes these dependencies, to avoid enforcing orders as much as possible. Change-Id: Icbb2fa209effd355cef36f35662bfdcf18d8b090
82 lines
2.2 KiB
Ruby
82 lines
2.2 KiB
Ruby
require 'spec_helper'
|
|
require 'puppet/util/package'
|
|
describe 'nova::compute::libvirt_guests' do
|
|
|
|
shared_examples 'redhat-nova-compute-libvirt-guests' do
|
|
|
|
context 'with default parameters' do
|
|
|
|
it { is_expected.to contain_class('nova::params')}
|
|
|
|
it { is_expected.to contain_file('/etc/sysconfig/libvirt-guests').with(
|
|
:ensure => 'present',
|
|
:path => '/etc/sysconfig/libvirt-guests',
|
|
:tag => 'libvirt-guests-file',
|
|
) }
|
|
it { is_expected.to contain_file_line('/etc/sysconfig/libvirt-guests ON_BOOT').with(
|
|
:path => '/etc/sysconfig/libvirt-guests',
|
|
:line => 'ON_BOOT=ignore',
|
|
:tag => 'libvirt-guests-file_line'
|
|
) }
|
|
it { is_expected.to contain_file_line('/etc/sysconfig/libvirt-guests ON_SHUTDOWN').with(
|
|
:path => '/etc/sysconfig/libvirt-guests',
|
|
:line => "ON_SHUTDOWN=shutdown",
|
|
:tag => 'libvirt-guests-file_line'
|
|
) }
|
|
it { is_expected.to contain_file_line('/etc/sysconfig/libvirt-guests SHUTDOWN_TIMEOUT').with(
|
|
:path => '/etc/sysconfig/libvirt-guests',
|
|
:line => "SHUTDOWN_TIMEOUT=300",
|
|
:tag => 'libvirt-guests-file_line'
|
|
) }
|
|
|
|
it { is_expected.to contain_package('libvirt-guests').with(
|
|
:name => 'libvirt-client',
|
|
:ensure => 'present'
|
|
) }
|
|
|
|
it { is_expected.to_not contain_service('libvirt-guests')}
|
|
end
|
|
|
|
context 'with params' do
|
|
let :params do
|
|
{ :enabled=> true }
|
|
end
|
|
|
|
it { is_expected.to contain_package('libvirt-guests').with(
|
|
:name => 'libvirt-client',
|
|
:ensure => 'present'
|
|
) }
|
|
|
|
it { is_expected.to contain_service('libvirt-guests').with(
|
|
:name => 'libvirt-guests',
|
|
:enable => true,
|
|
:ensure => 'running',
|
|
)}
|
|
end
|
|
|
|
context 'while not managing service state' do
|
|
let :params do
|
|
{
|
|
:manage_service => false,
|
|
}
|
|
end
|
|
|
|
it { is_expected.to_not contain_service('libvirt-guests') }
|
|
end
|
|
|
|
end
|
|
|
|
on_supported_os({
|
|
:supported_os => OSDefaults.get_supported_os
|
|
}).each do |os,facts|
|
|
context "on #{os}" do
|
|
|
|
case [:osfamily]
|
|
when 'RedHat'
|
|
it_behaves_like 'redhat-nova-compute-libvirt-guests'
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|