fog/fog-openstack

View on GitHub
lib/fog/openstack/volume/v1/requests/list_volumes_detailed.rb

Summary

Maintainability
A
3 hrs
Test Coverage
require 'fog/openstack/volume/requests/list_volumes_detailed'

module Fog
  module OpenStack
    class Volume
      class V1
        class Real
          include Fog::OpenStack::Volume::Real
        end

        class Mock
          def list_volumes_detailed(_options = {})
            response            = Excon::Response.new
            response.status     = 200
            data[:volumes] ||= [
              {"status"              => "available",
               "display_description" => "test 1 desc",
               "availability_zone"   => "nova",
               "display_name"        => "Volume1",
               "attachments"         => [{}],
               "volume_type"         => nil,
               "snapshot_id"         => nil,
               "size"                => 1,
               "id"                  => 1,
               "created_at"          => Time.now,
               "metadata"            => {}},
              {"status"              => "available",
               "display_description" => "test 2 desc",
               "availability_zone"   => "nova",
               "display_name"        => "Volume2",
               "attachments"         => [{}],
               "volume_type"         => nil,
               "snapshot_id"         => nil,
               "size"                => 1,
               "id"                  => 2,
               "created_at"          => Time.now,
               "metadata"            => {}}
            ]
            response.body = {'volumes' => data[:volumes]}
            response
          end
        end
      end
    end
  end
end