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

56 lines
1.4 KiB
Ruby
Raw Normal View History

module Fog
module Volume
class OpenStack
class Real
def list_volumes(detailed=true)
path = detailed ? 'volumes/detail' : '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",
"display_description" => "test 1 desc",
"availability_zone" => "nova",
"display_name" => "Volume1",
"attachments" => [{}],
"volume_type" => nil,
"snapshot_id" => nil,
"size" => 1,
"id" => 1,
"created_at" => Time.now,
"metadata" => {} },
{ "status" => "available",
"display_description" => "test 2 desc",
"availability_zone" => "nova",
"display_name" => "Volume2",
"attachments" => [{}],
"volume_type" => nil,
"snapshot_id" => nil,
"size" => 1,
"id" => 2,
"created_at" => Time.now,
"metadata" => {} }
]
response.body = { 'volumes' => self.data[:volumes] }
response
end
end
end
end
end