fog/fog-openstack

View on GitHub
lib/fog/openstack/baremetal/requests/list_ports.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module OpenStack
    class Baremetal
      class Real
        def list_ports(options = {})
          request(
            :expects => [200, 204],
            :method  => 'GET',
            :path    => 'ports',
            :query   => options
          )
        end
      end

      class Mock
        def list_ports(_options = {})
          response = Excon::Response.new
          response.status = [200, 204][rand(2)]
          response.body = {
            "ports" => [
              {
                "address" => "fe:54:00:77:07:d9",
                "links"   => [
                  {
                    "href" => "http://localhost:6385/v1/ports/27e3153e-d5bf-4b7e-b517-fb518e17f34c",
                    "rel"  => "self"
                  },
                  {
                    "href" => "http://localhost:6385/ports/27e3153e-d5bf-4b7e-b517-fb518e17f34c",
                    "rel"  => "bookmark"
                  }
                ],
                "uuid"    => Fog::UUID.uuid
              }
            ]
          }
          response
        end
      end
    end
  end
end