Sha256: 0183c11885ae26a733fc9bbab7015a478489d39be1cd744e2eb2e2fa9db22de4
Contents?: true
Size: 1.13 KB
Versions: 20
Compression:
Stored size: 1.13 KB
Contents
module Fog module OpenStack class Compute class Real def update_metadata(collection_name, parent_id, metadata = {}) request( :body => Fog::JSON.encode('metadata' => metadata), :expects => 200, :method => 'POST', :path => "#{collection_name}/#{parent_id}/metadata" ) end end class Mock def update_metadata(collection_name, parent_id, metadata = {}) if collection_name == "images" unless list_images_detail.body['images'].find { |image| image['id'] == parent_id } raise Fog::OpenStack::Compute::NotFound end end if collection_name == "servers" unless list_servers_detail.body['servers'].find { |server| server['id'] == parent_id } raise Fog::OpenStack::Compute::NotFound end end # FIXME: join w/ existing metadata here response = Excon::Response.new response.body = {"metadata" => metadata} response.status = 200 response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems