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/get_snapshot_details.rb
Philip Mark M. Deazeta d50fe64007 [openstack] Changed volumes attributes of mocks from camelcase to
snakecase

Change in snaphot_id

Added mcks for volume attach and detach

Conflicts:
	lib/fog/openstack/requests/compute/create_volume.rb
	lib/fog/openstack/requests/compute/get_volume_details.rb
	lib/fog/openstack/requests/compute/list_volumes.rb
2012-09-28 14:46:24 +08:00

39 lines
948 B
Ruby

module Fog
module Compute
class OpenStack
class Real
def get_snapshot_details(snapshot_id)
request(
:expects => 200,
:method => 'GET',
:path => "os-snapshots/#{snapshot_id}"
)
end
end
class Mock
def get_snapshot_details(detailed=true)
response = Excon::Response.new
response.status = 200
response.body = {
'snapshot' => {
'id' => '1',
'display_name' => Fog::Mock.random_letters(rand(8) + 5),
'display_description' => Fog::Mock.random_letters(rand(12) + 10),
'size' => 3,
'volume_id' => '4',
'status' => 'online',
'created_at' => Time.now
}
}
response
end
end
end
end
end