2010-03-19 21:29:42 -04:00
|
|
|
module Fog
|
|
|
|
module Rackspace
|
2010-09-08 16:50:23 -04:00
|
|
|
class Compute
|
2010-03-19 21:29:42 -04:00
|
|
|
class Real
|
2009-10-10 22:05:17 -04:00
|
|
|
|
|
|
|
# List all images (IDs and names only)
|
|
|
|
#
|
|
|
|
# ==== Returns
|
2009-11-02 21:48:49 -05:00
|
|
|
# * response<~Excon::Response>:
|
2009-10-10 22:05:17 -04:00
|
|
|
# * body<~Hash>:
|
2009-10-12 12:25:33 -04:00
|
|
|
# * 'id'<~Integer> - Id of the image
|
|
|
|
# * 'name'<~String> - Name of the image
|
2009-10-16 13:26:15 -04:00
|
|
|
def list_images
|
2009-10-10 22:05:17 -04:00
|
|
|
request(
|
2009-10-16 16:17:26 -04:00
|
|
|
:expects => [200, 203],
|
2009-10-14 01:36:35 -04:00
|
|
|
:method => 'GET',
|
|
|
|
:path => 'images.json'
|
2009-10-10 22:05:17 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2010-03-19 21:29:42 -04:00
|
|
|
class Mock
|
2009-10-10 22:05:17 -04:00
|
|
|
|
2009-10-16 13:26:15 -04:00
|
|
|
def list_images
|
2009-11-20 15:46:44 -05:00
|
|
|
response = Excon::Response.new
|
|
|
|
data = list_images_detail.body['images']
|
|
|
|
images = []
|
|
|
|
for image in data
|
|
|
|
images << image.reject { |key, value| !['id', 'name'].include?(key) }
|
|
|
|
end
|
|
|
|
response.status = [200, 203][rand(1)]
|
|
|
|
response.body = { 'images' => images }
|
|
|
|
response
|
2009-10-10 22:05:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|