mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
6c116666ed
Avoid repeating api_version Add persistent disk to insert_server mock Use Fog::Mock.delay properly instead of Fog.timeout Update default image
36 lines
836 B
Ruby
36 lines
836 B
Ruby
module Fog
|
|
module Compute
|
|
class Google
|
|
|
|
class Mock
|
|
|
|
def list_images(project=@project)
|
|
images = data(project)[:images].values
|
|
build_response(:body => {
|
|
"kind" => "compute#imageList",
|
|
"selfLink" => "https://www.googleapis.com/compute/#{api_version}/projects/#{project}/global/images",
|
|
"id" => "projects/#{project}/global/images",
|
|
"items" => images
|
|
})
|
|
end
|
|
|
|
end
|
|
|
|
class Real
|
|
|
|
def list_images(project=nil)
|
|
api_method = @compute.images.list
|
|
project=@project if project.nil?
|
|
parameters = {
|
|
'project' => project
|
|
}
|
|
|
|
result = self.build_result(api_method, parameters)
|
|
response = self.build_response(result)
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|