Sha256: 75dc2589d0da9d5a00e81ca93a68fdec8bedf47b92b01262f5651bda2bfdc729

Contents?: true

Size: 1.02 KB

Versions: 14

Compression:

Stored size: 1.02 KB

Contents

module Fog
  module Image
    class OpenStack
      class V2
        class Real
          def get_image_by_id(image_id)
            request(
              :expects => [200],
              :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][rand(2)]
            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
  end # module Identity
end # module Fog

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
fog-openstack-0.1.25 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.24 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.23 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.22 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.21 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.20 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.19 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.18 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.17 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.15 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.14 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.13 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.12 lib/fog/image/openstack/v2/requests/get_image_by_id.rb
fog-openstack-0.1.11 lib/fog/image/openstack/v2/requests/get_image_by_id.rb