2013-03-19 14:34:35 -04:00
|
|
|
require 'spec_helper'
|
2016-04-05 11:13:55 -05:00
|
|
|
require 'puppet/util/package'
|
2013-03-19 14:34:35 -04:00
|
|
|
describe 'nova::compute::libvirt' do
|
|
|
|
|
|
|
|
let :pre_condition do
|
2013-03-20 12:59:19 -07:00
|
|
|
"include nova\ninclude nova::compute"
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
2015-11-10 21:50:35 -06:00
|
|
|
shared_examples 'debian-nova-compute-libvirt' do
|
2016-04-05 11:13:55 -05:00
|
|
|
let(:libvirt_options) do
|
|
|
|
if facts[:operatingsystem] == 'Ubuntu' and Puppet::Util::Package.versioncmp(facts[:operatingsystemmajrelease], '16') >= 0
|
|
|
|
'libvirtd_opts="-l"'
|
|
|
|
else
|
|
|
|
'libvirtd_opts="-d -l"'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-25 02:10:52 +01:00
|
|
|
describe 'with default parameters' do
|
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_class('nova::params')}
|
2013-12-25 02:10:52 +01:00
|
|
|
|
2015-11-16 02:55:39 +00:00
|
|
|
it {
|
|
|
|
is_expected.to contain_package('nova-compute-kvm').with(
|
|
|
|
:ensure => 'present',
|
|
|
|
:tag => ['openstack', 'nova-package']
|
|
|
|
)
|
|
|
|
is_expected.to contain_package('nova-compute-kvm').that_requires('Anchor[nova::install::begin]')
|
|
|
|
is_expected.to contain_package('nova-compute-kvm').that_notifies('Anchor[nova::install::end]')
|
|
|
|
}
|
|
|
|
|
|
|
|
it {
|
|
|
|
is_expected.to contain_package('libvirt').with(
|
2017-01-16 16:27:53 -07:00
|
|
|
:name => 'libvirtd',
|
2015-11-16 02:55:39 +00:00
|
|
|
:ensure => 'present'
|
|
|
|
)
|
|
|
|
is_expected.to contain_package('libvirt').that_requires('Anchor[nova::install::begin]')
|
|
|
|
is_expected.to contain_package('libvirt').that_comes_before('Anchor[nova::install::end]')
|
|
|
|
}
|
|
|
|
|
|
|
|
it {
|
|
|
|
is_expected.to contain_service('libvirt').with(
|
2017-01-16 16:27:53 -07:00
|
|
|
:name => 'libvirtd',
|
2016-04-21 14:58:50 -04:00
|
|
|
:enable => true,
|
|
|
|
:ensure => 'running',
|
2015-11-16 02:55:39 +00:00
|
|
|
)
|
|
|
|
}
|
2013-12-25 02:10:52 +01:00
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/compute_driver').with_value('libvirt.LibvirtDriver')}
|
2016-12-20 12:37:55 +04:00
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/preallocate_images').with_value('<SERVICE DEFAULT>')}
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/virt_type').with_value('kvm')}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/cpu_mode').with_value('host-model')}
|
2015-08-19 13:10:16 +03:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/cpu_model').with_ensure('absent')}
|
2017-03-09 17:40:44 +00:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/snapshot_image_format').with_ensure('absent')}
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/disk_cachemodes').with_ensure('absent')}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/inject_password').with_value(false)}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/inject_key').with_value(false)}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/inject_partition').with_value(-2)}
|
2016-01-12 23:26:08 +08:00
|
|
|
it { is_expected.to contain_nova_config('vnc/vncserver_listen').with_value('127.0.0.1')}
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/remove_unused_base_images').with_ensure('absent')}
|
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/remove_unused_original_minimum_age_seconds').with_ensure('absent')}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/remove_unused_resized_minimum_age_seconds').with_ensure('absent')}
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
2013-12-25 02:10:52 +01:00
|
|
|
describe 'with params' do
|
2013-03-19 14:34:35 -04:00
|
|
|
let :params do
|
2016-01-14 12:56:42 +00:00
|
|
|
{ :ensure_package => 'latest',
|
|
|
|
:libvirt_virt_type => 'qemu',
|
2014-03-04 14:48:08 +01:00
|
|
|
:vncserver_listen => '0.0.0.0',
|
|
|
|
:libvirt_cpu_mode => 'host-passthrough',
|
2015-08-19 13:10:16 +03:00
|
|
|
:libvirt_cpu_model => 'kvm64',
|
2017-03-09 17:40:44 +00:00
|
|
|
:libvirt_snapshot_image_format => 'raw',
|
2014-03-04 14:48:08 +01:00
|
|
|
:libvirt_disk_cachemodes => ['file=directsync','block=none'],
|
2016-01-19 12:12:04 +01:00
|
|
|
:libvirt_hw_disk_discard => 'unmap',
|
2016-11-10 18:16:02 +01:00
|
|
|
:libvirt_hw_machine_type => 'x86_64=machinetype1,armv7l=machinetype2',
|
2017-01-03 11:14:08 -05:00
|
|
|
:libvirt_enabled_perf_events => ['cmt', 'mbml', 'mbmt'],
|
2014-03-04 14:48:08 +01:00
|
|
|
:remove_unused_base_images => true,
|
|
|
|
:remove_unused_resized_minimum_age_seconds => 3600,
|
2014-09-29 12:30:34 +02:00
|
|
|
:remove_unused_original_minimum_age_seconds => 3600,
|
2015-07-07 20:53:02 -04:00
|
|
|
:libvirt_service_name => 'custom_service',
|
2016-04-15 20:39:01 -06:00
|
|
|
:virtlock_service_name => 'virtlock',
|
|
|
|
:virtlog_service_name => 'virtlog',
|
2015-07-07 20:53:02 -04:00
|
|
|
:compute_driver => 'libvirt.FoobarDriver',
|
2016-12-20 12:37:55 +04:00
|
|
|
:preallocate_images => 'space',
|
2013-12-25 02:10:52 +01:00
|
|
|
}
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
2016-01-14 12:56:42 +00:00
|
|
|
it { is_expected.to contain_package('nova-compute-qemu').with(
|
|
|
|
:name => 'nova-compute-qemu',
|
|
|
|
:ensure => 'latest'
|
|
|
|
) }
|
2015-07-07 20:53:02 -04:00
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/compute_driver').with_value('libvirt.FoobarDriver')}
|
2016-12-20 12:37:55 +04:00
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/preallocate_images').with_value('space')}
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/virt_type').with_value('qemu')}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/cpu_mode').with_value('host-passthrough')}
|
2015-08-19 13:10:16 +03:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/cpu_model').with_ensure('absent')}
|
2017-03-09 17:40:44 +00:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/snapshot_image_format').with_ensure('absent')}
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/disk_cachemodes').with_value('file=directsync,block=none')}
|
2016-01-19 12:12:04 +01:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/hw_disk_discard').with_value('unmap')}
|
2016-11-10 18:16:02 +01:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/hw_machine_type').with_value('x86_64=machinetype1,armv7l=machinetype2')}
|
2017-01-03 11:14:08 -05:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/enabled_perf_events').with_value('cmt,mbml,mbmt')}
|
2016-01-12 23:26:08 +08:00
|
|
|
it { is_expected.to contain_nova_config('vnc/vncserver_listen').with_value('0.0.0.0')}
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/remove_unused_base_images').with_value(true)}
|
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/remove_unused_original_minimum_age_seconds').with_value(3600)}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/remove_unused_resized_minimum_age_seconds').with_value(3600)}
|
2015-11-16 02:55:39 +00:00
|
|
|
it {
|
|
|
|
is_expected.to contain_service('libvirt').with(
|
|
|
|
:name => 'custom_service',
|
|
|
|
:enable => true,
|
|
|
|
:ensure => 'running',
|
|
|
|
:before => ['Service[nova-compute]']
|
|
|
|
)
|
2016-04-15 20:39:01 -06:00
|
|
|
is_expected.to contain_service('virtlockd').with(
|
|
|
|
:name => 'virtlock',
|
|
|
|
:enable => true,
|
|
|
|
:ensure => 'running'
|
|
|
|
)
|
|
|
|
is_expected.to contain_service('virtlogd').with(
|
|
|
|
:name => 'virtlog',
|
|
|
|
:enable => true,
|
|
|
|
:ensure => 'running'
|
|
|
|
)
|
|
|
|
|
2015-11-16 02:55:39 +00:00
|
|
|
}
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
2015-08-19 13:10:16 +03:00
|
|
|
describe 'with custom cpu_mode' do
|
|
|
|
let :params do
|
|
|
|
{ :libvirt_cpu_mode => 'custom',
|
|
|
|
:libvirt_cpu_model => 'kvm64' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/cpu_mode').with_value('custom')}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/cpu_model').with_value('kvm64')}
|
|
|
|
end
|
|
|
|
|
2017-03-09 17:40:44 +00:00
|
|
|
describe 'with qcow2 as snapshot_image_format' do
|
|
|
|
let :params do
|
|
|
|
{ :libvirt_snapshot_image_format => 'qcow2' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/snapshot_image_format').with_value('qcow2')}
|
|
|
|
end
|
|
|
|
|
2016-12-14 10:04:07 +01:00
|
|
|
describe 'with qemu as virt_type' do
|
|
|
|
let :params do
|
|
|
|
{ :libvirt_virt_type => 'qemu' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/cpu_mode').with_value('none')}
|
|
|
|
end
|
|
|
|
|
2013-12-25 02:10:52 +01:00
|
|
|
describe 'with migration_support enabled' do
|
|
|
|
|
2013-03-19 14:34:35 -04:00
|
|
|
context 'with vncserver_listen set to 0.0.0.0' do
|
2013-12-25 02:10:52 +01:00
|
|
|
let :params do
|
2014-02-24 15:17:16 +01:00
|
|
|
{ :vncserver_listen => '0.0.0.0',
|
2013-12-25 02:10:52 +01:00
|
|
|
:migration_support => true }
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_class('nova::migration::libvirt')}
|
2016-01-12 23:26:08 +08:00
|
|
|
it { is_expected.to contain_nova_config('vnc/vncserver_listen').with_value('0.0.0.0')}
|
2017-01-16 16:27:53 -07:00
|
|
|
it { is_expected.to contain_file_line('/etc/default/libvirtd libvirtd opts').with(:line => libvirt_options) }
|
2015-04-09 01:25:32 +02:00
|
|
|
it { is_expected.to contain_file_line('/etc/libvirt/libvirtd.conf listen_tls').with(:line => "listen_tls = 0") }
|
|
|
|
it { is_expected.to contain_file_line('/etc/libvirt/libvirtd.conf listen_tcp').with(:line => "listen_tcp = 1") }
|
|
|
|
it { is_expected.not_to contain_file_line('/etc/libvirt/libvirtd.conf auth_tls')}
|
|
|
|
it { is_expected.to contain_file_line('/etc/libvirt/libvirtd.conf auth_tcp').with(:line => "auth_tcp = \"none\"") }
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
2015-03-16 15:42:59 -04:00
|
|
|
context 'with vncserver_listen set to ::0' do
|
|
|
|
let :params do
|
|
|
|
{ :vncserver_listen => '::0',
|
|
|
|
:migration_support => true }
|
|
|
|
end
|
|
|
|
|
2015-05-05 15:03:51 +02:00
|
|
|
it { is_expected.to contain_class('nova::migration::libvirt')}
|
2016-01-12 23:26:08 +08:00
|
|
|
it { is_expected.to contain_nova_config('vnc/vncserver_listen').with_value('::0')}
|
2017-01-16 16:27:53 -07:00
|
|
|
it { is_expected.to contain_file_line('/etc/default/libvirtd libvirtd opts').with(:line => libvirt_options) }
|
2015-04-09 01:25:32 +02:00
|
|
|
it { is_expected.to contain_file_line('/etc/libvirt/libvirtd.conf listen_tls').with(:line => "listen_tls = 0") }
|
|
|
|
it { is_expected.to contain_file_line('/etc/libvirt/libvirtd.conf listen_tcp').with(:line => "listen_tcp = 1") }
|
|
|
|
it { is_expected.not_to contain_file_line('/etc/libvirt/libvirtd.conf auth_tls')}
|
|
|
|
it { is_expected.to contain_file_line('/etc/libvirt/libvirtd.conf auth_tcp').with(:line => "auth_tcp = \"none\"") }
|
2015-03-16 15:42:59 -04:00
|
|
|
end
|
|
|
|
|
2015-02-04 11:55:36 -07:00
|
|
|
context 'with custom libvirt service name on Debian platforms' do
|
2014-10-14 14:34:37 -04:00
|
|
|
let :params do
|
|
|
|
{ :libvirt_service_name => 'libvirtd',
|
|
|
|
:vncserver_listen => '0.0.0.0',
|
|
|
|
:migration_support => true }
|
|
|
|
end
|
2016-04-05 11:13:55 -05:00
|
|
|
it { is_expected.to contain_file_line('/etc/default/libvirtd libvirtd opts').with(:line => libvirt_options) }
|
2014-10-14 14:34:37 -04:00
|
|
|
|
|
|
|
end
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
2016-06-14 18:03:30 -04:00
|
|
|
|
|
|
|
describe 'when manage_libvirt_services is set to false' do
|
|
|
|
context 'without libvirt packages & services' do
|
|
|
|
let :params do
|
|
|
|
{ :manage_libvirt_services => false }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.not_to contain_package('libvirt') }
|
|
|
|
it { is_expected.not_to contain_service('libvirt') }
|
|
|
|
it { is_expected.not_to contain_package('libvirt-nwfilter') }
|
|
|
|
it { is_expected.not_to contain_service('messagebus') }
|
|
|
|
it { is_expected.not_to contain_service('virtlockd') }
|
|
|
|
it { is_expected.not_to contain_service('virtlogd') }
|
|
|
|
end
|
|
|
|
end
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
2013-12-25 02:10:52 +01:00
|
|
|
|
2015-11-10 21:50:35 -06:00
|
|
|
shared_examples 'redhat-nova-compute-libvirt' do
|
|
|
|
before do
|
|
|
|
facts.merge!({ :operatingsystem => 'RedHat', :osfamily => 'RedHat',
|
2015-02-24 15:33:43 -07:00
|
|
|
:operatingsystemrelease => 6.5,
|
2015-11-10 21:50:35 -06:00
|
|
|
:operatingsystemmajrelease => '6' })
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
2013-12-25 02:10:52 +01:00
|
|
|
describe 'with default parameters' do
|
2013-03-19 14:34:35 -04:00
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_class('nova::params')}
|
2013-03-19 14:34:35 -04:00
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_package('libvirt').with(
|
2015-06-23 22:35:16 +02:00
|
|
|
:name => 'libvirt-daemon-kvm',
|
|
|
|
:ensure => 'present',
|
|
|
|
) }
|
|
|
|
|
|
|
|
it { is_expected.to contain_package('libvirt-nwfilter').with(
|
|
|
|
:name => 'libvirt-daemon-config-nwfilter',
|
|
|
|
:ensure => 'present',
|
2015-11-16 02:55:39 +00:00
|
|
|
:before => ['Service[libvirt]', 'Anchor[nova::install::end]'],
|
2013-12-25 02:10:52 +01:00
|
|
|
) }
|
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_service('libvirt').with(
|
2016-04-21 14:58:50 -04:00
|
|
|
:name => 'libvirtd',
|
|
|
|
:enable => true,
|
|
|
|
:ensure => 'running',
|
|
|
|
:before => ['Service[nova-compute]'],
|
2013-12-25 02:10:52 +01:00
|
|
|
)}
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_service('messagebus').with(
|
2016-04-21 14:58:50 -04:00
|
|
|
:ensure => 'running',
|
|
|
|
:enable => true,
|
|
|
|
:before => ['Service[libvirt]'],
|
|
|
|
:name => 'messagebus'
|
2013-12-25 02:10:52 +01:00
|
|
|
) }
|
2013-03-19 14:34:35 -04:00
|
|
|
|
2014-04-22 15:16:04 -04:00
|
|
|
describe 'on rhel 7' do
|
2015-11-10 21:50:35 -06:00
|
|
|
before do
|
|
|
|
facts.merge!({
|
|
|
|
:operatingsystemrelease => 7.0,
|
|
|
|
:operatingsystemmajrelease => '7'
|
|
|
|
})
|
2014-04-22 15:16:04 -04:00
|
|
|
end
|
|
|
|
|
2016-04-21 14:58:50 -04:00
|
|
|
it { is_expected.to contain_service('libvirt')}
|
2014-04-22 15:16:04 -04:00
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_service('messagebus').with(
|
2016-04-21 14:58:50 -04:00
|
|
|
:name => 'dbus'
|
2014-04-22 15:16:04 -04:00
|
|
|
)}
|
|
|
|
end
|
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/compute_driver').with_value('libvirt.LibvirtDriver')}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/virt_type').with_value('kvm')}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/inject_password').with_value(false)}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/inject_key').with_value(false)}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/inject_partition').with_value(-2)}
|
2016-01-12 23:26:08 +08:00
|
|
|
it { is_expected.to contain_nova_config('vnc/vncserver_listen').with_value('127.0.0.1')}
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/remove_unused_base_images').with_ensure('absent')}
|
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/remove_unused_original_minimum_age_seconds').with_ensure('absent')}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/remove_unused_resized_minimum_age_seconds').with_ensure('absent')}
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
2013-12-25 02:10:52 +01:00
|
|
|
describe 'with params' do
|
|
|
|
let :params do
|
2014-03-04 14:48:08 +01:00
|
|
|
{ :libvirt_virt_type => 'qemu',
|
|
|
|
:vncserver_listen => '0.0.0.0',
|
|
|
|
:remove_unused_base_images => true,
|
|
|
|
:remove_unused_resized_minimum_age_seconds => 3600,
|
2017-05-15 16:54:01 -06:00
|
|
|
:remove_unused_original_minimum_age_seconds => 3600,
|
|
|
|
:libvirt_enabled_perf_events => ['cmt', 'mbml', 'mbmt']
|
2013-12-25 02:10:52 +01:00
|
|
|
}
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/virt_type').with_value('qemu')}
|
2016-01-12 23:26:08 +08:00
|
|
|
it { is_expected.to contain_nova_config('vnc/vncserver_listen').with_value('0.0.0.0')}
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/remove_unused_base_images').with_value(true)}
|
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/remove_unused_original_minimum_age_seconds').with_value(3600)}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/remove_unused_resized_minimum_age_seconds').with_value(3600)}
|
2017-05-15 16:54:01 -06:00
|
|
|
it { is_expected.to contain_nova_config('libvirt/enabled_perf_events').with_value('cmt,mbml,mbmt')}
|
2015-06-23 22:35:16 +02:00
|
|
|
it { is_expected.to contain_package('libvirt').with(
|
|
|
|
:name => 'libvirt-daemon-kvm',
|
|
|
|
:ensure => 'present'
|
|
|
|
) }
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
2013-12-25 02:10:52 +01:00
|
|
|
describe 'with migration_support enabled' do
|
|
|
|
|
|
|
|
context 'with vncserver_listen set to 0.0.0.0' do
|
|
|
|
let :params do
|
2014-02-24 15:17:16 +01:00
|
|
|
{ :vncserver_listen => '0.0.0.0',
|
2013-12-25 02:10:52 +01:00
|
|
|
:migration_support => true }
|
|
|
|
end
|
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_class('nova::migration::libvirt')}
|
2016-01-12 23:26:08 +08:00
|
|
|
it { is_expected.to contain_nova_config('vnc/vncserver_listen').with_value('0.0.0.0')}
|
2015-04-09 01:25:32 +02:00
|
|
|
it { is_expected.to contain_file_line('/etc/sysconfig/libvirtd libvirtd args').with(:line => 'LIBVIRTD_ARGS="--listen"') }
|
|
|
|
it { is_expected.to contain_file_line('/etc/libvirt/libvirtd.conf listen_tls').with(:line => "listen_tls = 0") }
|
|
|
|
it { is_expected.to contain_file_line('/etc/libvirt/libvirtd.conf listen_tcp').with(:line => "listen_tcp = 1") }
|
|
|
|
it { is_expected.not_to contain_file_line('/etc/libvirt/libvirtd.conf auth_tls')}
|
|
|
|
it { is_expected.to contain_file_line('/etc/libvirt/libvirtd.conf auth_tcp').with(:line => "auth_tcp = \"none\"") }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with vncserver_listen set to ::0' do
|
|
|
|
let :params do
|
|
|
|
{ :vncserver_listen => '::0',
|
|
|
|
:migration_support => true }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to contain_class('nova::migration::libvirt')}
|
2016-01-12 23:26:08 +08:00
|
|
|
it { is_expected.to contain_nova_config('vnc/vncserver_listen').with_value('::0')}
|
2015-04-09 01:25:32 +02:00
|
|
|
it { is_expected.to contain_file_line('/etc/sysconfig/libvirtd libvirtd args').with(:line => 'LIBVIRTD_ARGS="--listen"') }
|
|
|
|
it { is_expected.to contain_file_line('/etc/libvirt/libvirtd.conf listen_tls').with(:line => "listen_tls = 0") }
|
|
|
|
it { is_expected.to contain_file_line('/etc/libvirt/libvirtd.conf listen_tcp').with(:line => "listen_tcp = 1") }
|
|
|
|
it { is_expected.not_to contain_file_line('/etc/libvirt/libvirtd.conf auth_tls')}
|
|
|
|
it { is_expected.to contain_file_line('/etc/libvirt/libvirtd.conf auth_tcp').with(:line => "auth_tcp = \"none\"") }
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2013-04-05 10:48:35 -04:00
|
|
|
|
2016-06-14 18:03:30 -04:00
|
|
|
describe 'when manage_libvirt_services is set to false' do
|
|
|
|
context 'without libvirt packages & services' do
|
|
|
|
let :params do
|
|
|
|
{ :manage_libvirt_services => false }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.not_to contain_package('libvirt') }
|
|
|
|
it { is_expected.not_to contain_service('libvirt') }
|
|
|
|
it { is_expected.not_to contain_package('libvirt-nwfilter') }
|
|
|
|
it { is_expected.not_to contain_service('messagebus') }
|
|
|
|
it { is_expected.not_to contain_service('virtlockd') }
|
|
|
|
it { is_expected.not_to contain_service('virtlogd') }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-25 02:10:52 +01:00
|
|
|
describe 'with default parameters on Fedora' do
|
2015-11-10 21:50:35 -06:00
|
|
|
before do
|
|
|
|
facts.merge!({ :operatingsystem => 'Fedora', :osfamily => 'RedHat' })
|
2013-04-05 10:48:35 -04:00
|
|
|
end
|
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_class('nova::params')}
|
2013-04-05 10:48:35 -04:00
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_package('libvirt').with(
|
2015-06-23 22:35:16 +02:00
|
|
|
:name => 'libvirt-daemon-kvm',
|
2013-12-25 02:10:52 +01:00
|
|
|
:ensure => 'present'
|
2014-01-30 17:09:21 -05:00
|
|
|
) }
|
2013-12-25 02:10:52 +01:00
|
|
|
|
2015-06-23 22:35:16 +02:00
|
|
|
it { is_expected.to contain_package('libvirt-nwfilter').with(
|
|
|
|
:name => 'libvirt-daemon-config-nwfilter',
|
|
|
|
:ensure => 'present',
|
2015-11-16 02:55:39 +00:00
|
|
|
:before => ['Service[libvirt]', 'Anchor[nova::install::end]'],
|
2015-06-23 22:35:16 +02:00
|
|
|
) }
|
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_service('libvirt').with(
|
2016-04-21 14:58:50 -04:00
|
|
|
:name => 'libvirtd',
|
|
|
|
:enable => true,
|
|
|
|
:ensure => 'running',
|
|
|
|
:before => ['Service[nova-compute]']
|
2013-12-25 02:10:52 +01:00
|
|
|
)}
|
|
|
|
|
2015-03-16 03:05:59 +01:00
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/compute_driver').with_value('libvirt.LibvirtDriver')}
|
|
|
|
it { is_expected.to contain_nova_config('libvirt/virt_type').with_value('kvm')}
|
2016-01-12 23:26:08 +08:00
|
|
|
it { is_expected.to contain_nova_config('vnc/vncserver_listen').with_value('127.0.0.1')}
|
2013-04-05 10:48:35 -04:00
|
|
|
end
|
2013-12-25 02:10:52 +01:00
|
|
|
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|
2015-11-10 21:50:35 -06:00
|
|
|
|
2016-06-07 00:59:36 -03:00
|
|
|
on_supported_os({
|
2016-07-26 23:28:44 -03:00
|
|
|
:supported_os => OSDefaults.get_supported_os
|
2016-06-07 00:59:36 -03:00
|
|
|
}).each do |os,facts|
|
|
|
|
context "on #{os}" do
|
|
|
|
|
|
|
|
case [:osfamily]
|
|
|
|
when 'Debian'
|
|
|
|
|
|
|
|
case [:operatingsystem]
|
|
|
|
when 'Debian'
|
|
|
|
let (:facts) do
|
|
|
|
facts.merge!(OSDefaults.get_facts({
|
|
|
|
:os_package_family => 'debian',
|
|
|
|
:operatingsystemmajrelease => '8'}))
|
|
|
|
end
|
|
|
|
it_behaves_like 'debian-nova-compute-libvirt'
|
|
|
|
when 'Ubuntu'
|
|
|
|
let (:facts) do
|
|
|
|
facts.merge!(OSDefaults.get_facts({
|
|
|
|
:os_package_family => 'ubuntu',
|
|
|
|
:operatingsystemmajrelease => '16.04'}))
|
|
|
|
end
|
|
|
|
it_behaves_like 'debian-nova-compute-libvirt'
|
|
|
|
end
|
2015-11-10 21:50:35 -06:00
|
|
|
|
2016-06-07 00:59:36 -03:00
|
|
|
when 'RedHat'
|
|
|
|
let (:facts) do
|
|
|
|
facts.merge!(OSDefaults.get_facts({ :os_package_type => 'rpm' }))
|
|
|
|
end
|
|
|
|
it_behaves_like 'redhat-nova-compute-libvirt'
|
|
|
|
end
|
2015-11-10 21:50:35 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-19 14:34:35 -04:00
|
|
|
end
|