mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
8509d5c05d
Add missing delete_meta and update_meta calls to the OpenStack API. Also updates the model with some tests on these new calls.
43 lines
969 B
Ruby
43 lines
969 B
Ruby
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
|
|
class Real
|
|
|
|
def delete_meta(collection_name, parent_id, key)
|
|
request(
|
|
:expects => 204,
|
|
:method => 'DELETE',
|
|
:path => "#{collection_name}/#{parent_id}/metadata/#{key}"
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def delete_meta(collection_name, parent_id, key)
|
|
|
|
if collection_name == "images" then
|
|
if not list_images_detail.body['images'].detect {|_| _['id'] == parent_id}
|
|
raise Fog::Compute::OpenStack::NotFound
|
|
end
|
|
end
|
|
|
|
if collection_name == "servers" then
|
|
if not list_servers_detail.body['servers'].detect {|_| _['id'] == parent_id}
|
|
raise Fog::Compute::OpenStack::NotFound
|
|
end
|
|
end
|
|
|
|
response = Excon::Response.new
|
|
response.status = 204
|
|
response
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|