Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add specs for reconfiguring vm with OvirtSDK #22

Merged
merged 1 commit into from
May 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ def vm_reconfigure(vm, options = {})

vm.with_provider_object(VERSION_HASH) do |vm_service|
# Retrieve the current representation of the virtual machine:
# TODO: no need to retreive vm here, only if memory is updated
vm = vm_service.get

# Update the memory:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,111 @@
end
end
end

describe "#vm_reconfigure" do
before do
_guid, _server, zone = EvmSpecHelper.create_guid_miq_server_zone
@ems = FactoryGirl.create(:ems_redhat_with_authentication, :zone => zone)
@hw = FactoryGirl.create(:hardware, :memory_mb => 1024, :cpu_sockets => 2, :cpu_cores_per_socket => 1)
@vm = FactoryGirl.create(:vm_redhat, :ext_management_system => @ems)
@cores_per_socket = 2
@num_of_sockets = 3
@vm_proxy = double("OvirtSDK4::Vm.new")
@vm_service = double("OvirtSDK4::Vm")
allow(@ems).to receive(:highest_supported_api_version).and_return(4)
allow(@vm).to receive(:with_provider_object).and_yield(@vm_service)
allow(@vm_service).to receive(:get).and_return(@vm_proxy)
end

it 'cpu_topology' do
spec = {
"numCPUs" => @cores_per_socket * @num_of_sockets,
"numCoresPerSocket" => @cores_per_socket
}

expect(@vm_service).to receive(:update)
.with(OvirtSDK4::Vm.new(
:cpu => {
:topology => {
:cores => @cores_per_socket,
:sockets => @num_of_sockets
}
}
))
@ems.vm_reconfigure(@vm, :spec => spec)
end

describe "memory" do
before do
@memory_policy = double("memory_policy")
allow(@memory_policy).to receive(:guaranteed).and_return(2.gigabytes)
allow(@vm_proxy).to receive(:status).and_return(vm_status)
allow(@vm_proxy).to receive(:memory).and_return(0)
allow(@vm_proxy).to receive(:memory_policy).and_return(@memory_policy)
allow(@vm_proxy).to receive(:name).and_return("vm_name")
@memory_spec = { :memory => memory, :memory_policy => { :guaranteed => guaranteed } }
end

subject(:reconfigure_vm) { @ems.vm_reconfigure(@vm, :spec => spec) }
let(:spec) { { 'memoryMB' => 8.gigabytes / 1.megabyte } }
let(:memory) { 8.gigabytes }
let(:guaranteed) { 2.gigabytes }
context "vm is up" do
let(:vm_status) { OvirtSDK4::VmStatus::UP }
it 'updates the current and persistent configuration if the VM is up' do
expect(@vm_service).to receive(:update).with(OvirtSDK4::Vm.new(@memory_spec), :next_run => true)
expect(@vm_service).to receive(:update).with(OvirtSDK4::Vm.new(:memory => 8.gigabytes))
reconfigure_vm
end

context "memory is bigger than vms memory should be rounded up by 256" do
let(:spec) { { 'memoryMB' => 8.gigabytes / 1.megabyte + 1 } }
let(:memory) { 8.gigabytes + 256.megabytes }
it 'adjusts the increased memory to the next 256 MiB multiple if the VM is up' do
expect(@vm_service).to receive(:update).with(OvirtSDK4::Vm.new(@memory_spec), :next_run => true)
expect(@vm_service).to receive(:update).with(OvirtSDK4::Vm.new(:memory => memory))
reconfigure_vm
end
end

context "memory is less than vms memory should be rounded up" do
let(:spec) { { 'memoryMB' => 8.gigabytes / 1.megabyte - 1 } }
it 'adjusts reduced memory to the next 256 MiB multiple if the VM is up' do
expect(@vm_service).to receive(:update).with(OvirtSDK4::Vm.new(@memory_spec), :next_run => true)
expect(@vm_service).to receive(:update).with(OvirtSDK4::Vm.new(:memory => memory))
reconfigure_vm
end
end

context "guaranteed memory is bigger than vms" do
let(:spec) { { 'memoryMB' => 1.gigabyte / 1.megabyte } }
let(:memory) { 1.gigabyte }
it 'adjusts the guaranteed memory if it is larger than the virtual memory if the VM is up' do
mod_memory_spec = { :memory => memory, :memory_policy => { :guaranteed => 1.gigabyte } }
expect(@vm_service).to receive(:update).with(OvirtSDK4::Vm.new(mod_memory_spec), :next_run => true)
expect(@vm_service).to receive(:update).with(OvirtSDK4::Vm.new(:memory => memory))
reconfigure_vm
end
end
end

context "vm is down" do
let(:vm_status) { OvirtSDK4::VmStatus::DOWN }
it 'updates only the persistent configuration when the VM is down' do
expect(@vm_service).to receive(:update).with(OvirtSDK4::Vm.new(@memory_spec))
reconfigure_vm
end

context "guaranteed memory is bigger than vms" do
let(:spec) { { 'memoryMB' => 1.gigabyte / 1.megabyte } }
let(:memory) { 1.gigabyte }
it 'adjusts the guaranteed memory if it is larger than the virtual memory if the VM is up' do
mod_memory_spec = { :memory => memory, :memory_policy => { :guaranteed => 1.gigabyte } }
expect(@vm_service).to receive(:update).with(OvirtSDK4::Vm.new(mod_memory_spec))
reconfigure_vm
end
end
end
end
end
end
200 changes: 118 additions & 82 deletions spec/models/manageiq/providers/redhat/infra_manager_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,97 +43,133 @@
end

context "#vm_reconfigure" do
before do
_guid, _server, zone = EvmSpecHelper.create_guid_miq_server_zone
@ems = FactoryGirl.create(:ems_redhat_with_authentication, :zone => zone)
@hw = FactoryGirl.create(:hardware, :memory_mb => 1024, :cpu_sockets => 2, :cpu_cores_per_socket => 1)
@vm = FactoryGirl.create(:vm_redhat, :ext_management_system => @ems)

@cores_per_socket = 2
@num_of_sockets = 3

@rhevm_vm_attrs = double('rhevm_vm_attrs')
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:name).and_return('myvm')
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:memory).and_return(4.gigabytes)
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:memory_policy, :guaranteed).and_return(2.gigabytes)
allow(@ems).to receive(:highest_allowed_api_version).and_return(3)
# TODO: Add tests for when the highest_supported_api_version is 4
allow(@ems).to receive(:highest_supported_api_version).and_return(3)
@rhevm_vm = double('rhevm_vm')
allow(@rhevm_vm).to receive(:attributes).and_return(@rhevm_vm_attrs)
allow(@vm).to receive(:with_provider_object).and_yield(@rhevm_vm)
end
context "version 4" do
context "#vm_reconfigure" do
before do
_guid, _server, zone = EvmSpecHelper.create_guid_miq_server_zone
@ems = FactoryGirl.create(:ems_redhat_with_authentication, :zone => zone)
@vm = FactoryGirl.create(:vm_redhat, :ext_management_system => @ems)

@rhevm_vm_attrs = double('rhevm_vm_attrs')
allow(@ems).to receive(:highest_supported_api_version).and_return(4)
stub_settings_merge(:ems => { :ems_redhat => { :use_ovirt_engine_sdk => use_ovirt_engine_sdk } })
@v4_strategy_instance = instance_double(ManageIQ::Providers::Redhat::InfraManager::OvirtServices::Strategies::V4)
allow(ManageIQ::Providers::Redhat::InfraManager::OvirtServices::Strategies::V4)
.to receive(:new)
.and_return(@v4_strategy_instance)
end

it "cpu_topology=" do
spec = {
"numCPUs" => @cores_per_socket * @num_of_sockets,
"numCoresPerSocket" => @cores_per_socket
}
context "use_ovirt_engine_sdk is set to true" do
let(:use_ovirt_engine_sdk) { true }
it 'sends vm_reconfigure to the right ovirt_services' do
expect(@v4_strategy_instance).to receive(:vm_reconfigure).with(@vm, {})
@ems.vm_reconfigure(@vm)
end
end

expect(@rhevm_vm).to receive(:cpu_topology=).with(:cores => @cores_per_socket, :sockets => @num_of_sockets)
@ems.vm_reconfigure(@vm, :spec => spec)
context "use_ovirt_engine_sdk is set to false" do
let(:use_ovirt_engine_sdk) { false }
it 'sends vm_reconfigure to the right ovirt_services' do
expect(@v4_strategy_instance).to receive(:vm_reconfigure).with(@vm, {})
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this seems incorrect: if sdk shouldn't be used, the v4 strategy instance shouldn't be used.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should. The vm_reconfigure should always run through v4 if it is available even when the use_ovirt_sdk is toggled off, this is by design.

@ems.vm_reconfigure(@vm)
end
end
end
end

it 'updates the current and persistent configuration if the VM is up' do
spec = {
'memoryMB' => 8.gigabytes / 1.megabyte
}
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:status, :state).and_return('up')
expect(@rhevm_vm).to receive(:update_memory).with(8.gigabytes, 2.gigabytes, :next_run => true)
expect(@rhevm_vm).to receive(:update_memory).with(8.gigabytes, nil)
@ems.vm_reconfigure(@vm, :spec => spec)
end
context "version 3" do
before do
_guid, _server, zone = EvmSpecHelper.create_guid_miq_server_zone
@ems = FactoryGirl.create(:ems_redhat_with_authentication, :zone => zone)
@hw = FactoryGirl.create(:hardware, :memory_mb => 1024, :cpu_sockets => 2, :cpu_cores_per_socket => 1)
@vm = FactoryGirl.create(:vm_redhat, :ext_management_system => @ems)

@cores_per_socket = 2
@num_of_sockets = 3

@rhevm_vm_attrs = double('rhevm_vm_attrs')
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:name).and_return('myvm')
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:memory).and_return(4.gigabytes)
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:memory_policy, :guaranteed).and_return(2.gigabytes)
allow(@ems).to receive(:highest_allowed_api_version).and_return(3)
# TODO: Add tests for when the highest_supported_api_version is 4
allow(@ems).to receive(:highest_supported_api_version).and_return(3)
@rhevm_vm = double('rhevm_vm')
allow(@rhevm_vm).to receive(:attributes).and_return(@rhevm_vm_attrs)
allow(@vm).to receive(:with_provider_object).and_yield(@rhevm_vm)
end

it 'updates only the persistent configuration when the VM is down' do
spec = {
'memoryMB' => 8.gigabytes / 1.megabyte
}
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:status, :state).and_return('down')
expect(@rhevm_vm).to receive(:update_memory).with(8.gigabytes, 2.gigabytes)
@ems.vm_reconfigure(@vm, :spec => spec)
end
it "cpu_topology=" do
spec = {
"numCPUs" => @cores_per_socket * @num_of_sockets,
"numCoresPerSocket" => @cores_per_socket
}

it 'adjusts the increased memory to the next 256 MiB multiple if the VM is up' do
spec = {
'memoryMB' => 8.gigabytes / 1.megabyte + 1
}
adjusted = 8.gigabytes + 256.megabytes
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:status, :state).and_return('up')
expect(@rhevm_vm).to receive(:update_memory).with(adjusted, 2.gigabytes, :next_run => true)
expect(@rhevm_vm).to receive(:update_memory).with(adjusted, nil)
@ems.vm_reconfigure(@vm, :spec => spec)
end
expect(@rhevm_vm).to receive(:cpu_topology=).with(:cores => @cores_per_socket, :sockets => @num_of_sockets)
@ems.vm_reconfigure(@vm, :spec => spec)
end

it 'adjusts reduced memory to the next 256 MiB multiple if the VM is up' do
spec = {
'memoryMB' => 8.gigabytes / 1.megabyte - 1
}
adjusted = 8.gigabytes
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:status, :state).and_return('up')
expect(@rhevm_vm).to receive(:update_memory).with(adjusted, 2.gigabytes, :next_run => true)
expect(@rhevm_vm).to receive(:update_memory).with(adjusted, nil)
@ems.vm_reconfigure(@vm, :spec => spec)
end
it 'updates the current and persistent configuration if the VM is up' do
spec = {
'memoryMB' => 8.gigabytes / 1.megabyte
}
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:status, :state).and_return('up')
expect(@rhevm_vm).to receive(:update_memory).with(8.gigabytes, 2.gigabytes, :next_run => true)
expect(@rhevm_vm).to receive(:update_memory).with(8.gigabytes, nil)
@ems.vm_reconfigure(@vm, :spec => spec)
end

it 'adjusts the guaranteed memory if it is larger than the virtual memory if the VM is up' do
spec = {
'memoryMB' => 1.gigabyte / 1.megabyte
}
adjusted = 1.gigabyte
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:status, :state).and_return('up')
expect(@rhevm_vm).to receive(:update_memory).with(1.gigabyte, adjusted, :next_run => true)
expect(@rhevm_vm).to receive(:update_memory).with(1.gigabyte, nil)
@ems.vm_reconfigure(@vm, :spec => spec)
end
it 'updates only the persistent configuration when the VM is down' do
spec = {
'memoryMB' => 8.gigabytes / 1.megabyte
}
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:status, :state).and_return('down')
expect(@rhevm_vm).to receive(:update_memory).with(8.gigabytes, 2.gigabytes)
@ems.vm_reconfigure(@vm, :spec => spec)
end

it 'adjusts the increased memory to the next 256 MiB multiple if the VM is up' do
spec = {
'memoryMB' => 8.gigabytes / 1.megabyte + 1
}
adjusted = 8.gigabytes + 256.megabytes
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:status, :state).and_return('up')
expect(@rhevm_vm).to receive(:update_memory).with(adjusted, 2.gigabytes, :next_run => true)
expect(@rhevm_vm).to receive(:update_memory).with(adjusted, nil)
@ems.vm_reconfigure(@vm, :spec => spec)
end

it 'adjusts the guaranteed memory if it is larger than the virtual memory if the VM is down' do
spec = {
'memoryMB' => 1.gigabyte / 1.megabyte
}
adjusted = 1.gigabyte
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:status, :state).and_return('down')
expect(@rhevm_vm).to receive(:update_memory).with(1.gigabyte, adjusted)
@ems.vm_reconfigure(@vm, :spec => spec)
it 'adjusts reduced memory to the next 256 MiB multiple if the VM is up' do
spec = {
'memoryMB' => 8.gigabytes / 1.megabyte - 1
}
adjusted = 8.gigabytes
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:status, :state).and_return('up')
expect(@rhevm_vm).to receive(:update_memory).with(adjusted, 2.gigabytes, :next_run => true)
expect(@rhevm_vm).to receive(:update_memory).with(adjusted, nil)
@ems.vm_reconfigure(@vm, :spec => spec)
end

it 'adjusts the guaranteed memory if it is larger than the virtual memory if the VM is up' do
spec = {
'memoryMB' => 1.gigabyte / 1.megabyte
}
adjusted = 1.gigabyte
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:status, :state).and_return('up')
expect(@rhevm_vm).to receive(:update_memory).with(1.gigabyte, adjusted, :next_run => true)
expect(@rhevm_vm).to receive(:update_memory).with(1.gigabyte, nil)
@ems.vm_reconfigure(@vm, :spec => spec)
end

it 'adjusts the guaranteed memory if it is larger than the virtual memory if the VM is down' do
spec = {
'memoryMB' => 1.gigabyte / 1.megabyte
}
adjusted = 1.gigabyte
allow(@rhevm_vm_attrs).to receive(:fetch_path).with(:status, :state).and_return('down')
expect(@rhevm_vm).to receive(:update_memory).with(1.gigabyte, adjusted)
@ems.vm_reconfigure(@vm, :spec => spec)
end
end
end

Expand Down