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/list_volumes.rb

55 lines
1.4 KiB
Ruby
Raw Normal View History

module Fog
module Compute
class OpenStack
class Real
def list_volumes(detailed=true)
path = detailed ? 'os-volumes/detail' : 'os-volumes'
request(
:expects => 200,
:method => 'GET',
:path => path
)
end
end
class Mock
def list_volumes(detailed=true)
response = Excon::Response.new
response.status = 200
self.data[:volumes] ||= [
{ "status" => "available",
"displayDescription" => "",
"availabilityZone" => "nova",
"displayName" => "test 1",
"attachments" => [{}],
"volumeType" => nil,
"snapshotId" => nil,
"size" => 1,
"id" => 6,
"createdAt" => "2012-03-30 05:31:00.655058",
"metadata" => {} },
{ "status" => "available",
"displayDescription" => "",
"availabilityZone" => "nova",
"displayName" => "test 2",
"attachments" => [{}],
"volumeType" => nil,
"snapshotId" => nil,
"size" => 1,
"id" => 8,
"createdAt" => "2012-03-30 16:14:55.582717",
"metadata" => {} }
]
response.body = { 'volumes' => self.data[:volumes] }
response
end
end
end
end
end