mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
743882f032
This massive commit refactors all of the request methods on the Fog::Compute[:vsphere] instance to return simple hashes. The behavior before this commit returned full vmware object references which was a problem because it was difficult to unit test. With this patch, it is much easier to add and maintain Mock implementations of the request methods. This makes adding behavior tests for the server model much easier. In addition, test coverage using Shindo has been added. Previously there was little test coverage of the behavior. To run the tests: shindont tests/vsphere/
34 lines
1 KiB
Ruby
34 lines
1 KiB
Ruby
module Fog
|
|
module Compute
|
|
class Vsphere
|
|
class Real
|
|
|
|
def vm_destroy(options = {})
|
|
raise ArgumentError, "instance_uuid is a required parameter" unless options.has_key? 'instance_uuid'
|
|
|
|
# Find the VM Object
|
|
search_filter = { :uuid => options['instance_uuid'], 'vmSearch' => true, 'instanceUuid' => true }
|
|
vm_mob_ref = @connection.searchIndex.FindAllByUuid(search_filter).first
|
|
|
|
unless vm_mob_ref.kind_of? RbVmomi::VIM::VirtualMachine
|
|
raise Fog::Vsphere::Errors::NotFound,
|
|
"Could not find VirtualMachine with instance uuid #{options['instance_uuid']}"
|
|
end
|
|
task = vm_mob_ref.Destroy_Task
|
|
task.wait_for_completion
|
|
{ 'task_state' => task.info.state }
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def vm_destroy(options = {})
|
|
raise ArgumentError, "instance_uuid is a required parameter" unless options.has_key? 'instance_uuid'
|
|
{ 'task_state' => 'success' }
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|