mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
33 lines
916 B
Ruby
33 lines
916 B
Ruby
![]() |
module Fog
|
||
|
module Image
|
||
|
class OpenStack
|
||
|
class Real
|
||
|
def get_image_by_id(image_id)
|
||
|
request(
|
||
|
:expects => [200, 204],
|
||
|
:method => 'GET',
|
||
|
:path => "images/#{image_id}"
|
||
|
)
|
||
|
end
|
||
|
end # class Real
|
||
|
|
||
|
class Mock
|
||
|
def get_image_by_id(image_id)
|
||
|
response = Excon::Response.new
|
||
|
response.status = [200, 204][rand(1)]
|
||
|
response.body = {
|
||
|
"images"=>[{
|
||
|
"name"=>"mock-image-name",
|
||
|
"size"=>25165824,
|
||
|
"disk_format"=>"ami",
|
||
|
"container_format"=>"ami",
|
||
|
"id"=>"0e09fbd6-43c5-448a-83e9-0d3d05f9747e",
|
||
|
"checksum"=>"2f81976cae15c16ef0010c51e3a6c163"}]
|
||
|
}
|
||
|
response
|
||
|
end # def list_tenants
|
||
|
end # class Mock
|
||
|
end # class OpenStack
|
||
|
end # module Identity
|
||
|
end # module Fog
|