1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/requests/compute/detach_volume.rb
Mike Moore 2b284849a9 Add attachment check to detach_volume mock
If the attachment does not exist it raises a NoMethodError instead of NotFound.
2013-07-03 01:11:46 -06:00

32 lines
793 B
Ruby

module Fog
module Compute
class OpenStack
class Real
def detach_volume(server_id, attachment_id)
request(
:expects => 202,
:method => 'DELETE',
:path => "servers/%s/os-volume_attachments/%s" % [server_id, attachment_id]
)
end
end
class Mock
def detach_volume(server_id, attachment_id)
response = Excon::Response.new
if self.data[:volumes][attachment_id] &&
self.data[:volumes][attachment_id]['attachments'].reject! { |attachment| attachment['serverId'] == server_id }
response.status = 202
response
else
raise Fog::Compute::OpenStack::NotFound
end
end
end
end
end
end