We already added support from the option to enable this feature[1].
This makes some tunables of the feature so that operators can customize
some options using the native interfaces.
[1] 4a77e0a5b9
Change-Id: I68533b2166e93efcc73227619181fc95809d12d0
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
require 'spec_helper'
 | 
						|
 | 
						|
describe 'nova::workarounds' do
 | 
						|
 | 
						|
  let :params do
 | 
						|
    {}
 | 
						|
  end
 | 
						|
 | 
						|
  shared_examples 'nova::workarounds' do
 | 
						|
 | 
						|
    context 'with default parameters' do
 | 
						|
      it { is_expected.not_to contain_nova_config('workarounds/enable_numa_live_migration') }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/never_download_image_if_on_rbd').with_value('<SERVICE DEFAULT>') }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/ensure_libvirt_rbd_instance_dir_cleanup').with_value('<SERVICE DEFAULT>') }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/enable_qemu_monitor_announce_self').with_value('<SERVICE DEFAULT>') }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/qemu_monitor_announce_self_count').with_value('<SERVICE DEFAULT>') }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/qemu_monitor_announce_self_interval').with_value('<SERVICE DEFAULT>') }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/wait_for_vif_plugged_event_during_hard_reboot').with_value('<SERVICE DEFAULT>') }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/disable_compute_service_check_for_ffu').with_value('<SERVICE DEFAULT>') }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/skip_hypervisor_version_check_on_lm').with_value('<SERVICE DEFAULT>') }
 | 
						|
    end
 | 
						|
 | 
						|
    context 'with overridden parameters' do
 | 
						|
      let :params do
 | 
						|
        {
 | 
						|
          :enable_numa_live_migration                    => true,
 | 
						|
          :never_download_image_if_on_rbd                => true,
 | 
						|
          :ensure_libvirt_rbd_instance_dir_cleanup       => true,
 | 
						|
          :enable_qemu_monitor_announce_self             => true,
 | 
						|
          :qemu_monitor_announce_self_count              => 3,
 | 
						|
          :qemu_monitor_announce_self_interval           => 1,
 | 
						|
          :wait_for_vif_plugged_event_during_hard_reboot => ['normal', 'direct'],
 | 
						|
          :disable_compute_service_check_for_ffu         => true,
 | 
						|
          :skip_hypervisor_version_check_on_lm           => true,
 | 
						|
        }
 | 
						|
      end
 | 
						|
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/enable_numa_live_migration').with_value('true') }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/never_download_image_if_on_rbd').with_value('true') }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/ensure_libvirt_rbd_instance_dir_cleanup').with_value('true') }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/enable_qemu_monitor_announce_self').with_value(true) }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/qemu_monitor_announce_self_count').with_value(3) }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/qemu_monitor_announce_self_interval').with_value(1) }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/wait_for_vif_plugged_event_during_hard_reboot').with_value('normal,direct') }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/disable_compute_service_check_for_ffu').with_value(true) }
 | 
						|
      it { is_expected.to contain_nova_config('workarounds/skip_hypervisor_version_check_on_lm').with_value(true) }
 | 
						|
    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::workarounds'
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |