Sha256: 41dd2762e8d9e690ba3ddc2eb980cf5c33fc9d7e0fa1d8360cd2d2cb45991ed0
Contents?: true
Size: 1.13 KB
Versions: 61
Compression:
Stored size: 1.13 KB
Contents
module Fog module Compute class OpenStack class Real def update_meta(collection_name, parent_id, key, value) request( :body => Fog::JSON.encode({ 'meta' => {key => value}}), :expects => 200, :method => 'PUT', :path => "#{collection_name}/#{parent_id}/metadata/#{key}" ) end end class Mock def update_meta(collection_name, parent_id, key, value) 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 #FIXME join w/ existing metadata here response = Excon::Response.new response.body = { "metadata" => {key => value} } response.status = 200 response end end end end end
Version data entries
61 entries across 61 versions & 6 rubygems