1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
module Fog
module OpenStack
class Compute
class Real
def list_images
request(
:expects => [200, 203],
:method => 'GET',
:path => 'images'
)
end
end
class Mock
def list_images
response = Excon::Response.new
data = list_images_detail.body['images']
images = []
data.each do |image|
images << image.reject { |key, _value| !['id', 'name', 'links'].include?(key) }
end
response.status = [200, 203][rand(2)]
response.body = {'images' => images}
response
end
end
end
end
end
|