mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[openstack|volume] Volume Endpoints Support
Create List Delete and Show of Volume
This commit is contained in:
parent
62e73549e6
commit
ed44c02742
8 changed files with 282 additions and 0 deletions
|
@ -27,6 +27,8 @@ module Fog
|
||||||
collection :security_groups
|
collection :security_groups
|
||||||
model :tenant
|
model :tenant
|
||||||
collection :tenants
|
collection :tenants
|
||||||
|
model :volume
|
||||||
|
collection :volumes
|
||||||
|
|
||||||
|
|
||||||
request_path 'fog/openstack/requests/compute'
|
request_path 'fog/openstack/requests/compute'
|
||||||
|
@ -88,6 +90,11 @@ module Fog
|
||||||
request :list_tenants
|
request :list_tenants
|
||||||
request :set_tenant
|
request :set_tenant
|
||||||
|
|
||||||
|
request :list_volumes
|
||||||
|
request :get_volume_details
|
||||||
|
request :create_volume
|
||||||
|
request :delete_volume
|
||||||
|
|
||||||
class Mock
|
class Mock
|
||||||
|
|
||||||
def self.data
|
def self.data
|
||||||
|
|
45
lib/fog/openstack/models/compute/volume.rb
Normal file
45
lib/fog/openstack/models/compute/volume.rb
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
require 'fog/core/model'
|
||||||
|
require 'fog/openstack/models/compute/metadata'
|
||||||
|
|
||||||
|
module Fog
|
||||||
|
module Compute
|
||||||
|
class OpenStack
|
||||||
|
|
||||||
|
class Volume < Fog::Model
|
||||||
|
|
||||||
|
identity :id
|
||||||
|
|
||||||
|
attribute :name, :aliases => 'displayName'
|
||||||
|
attribute :description, :aliases => 'displayDescription'
|
||||||
|
attribute :status
|
||||||
|
attribute :size
|
||||||
|
attribute :type, :aliases => 'volumeType'
|
||||||
|
attribute :snapshot_id, :aliases => 'snapshotId'
|
||||||
|
attribute :availability_zone, :aliases => 'availabilityZone'
|
||||||
|
attribute :created_at, :aliases => 'createdAt'
|
||||||
|
attribute :attachments
|
||||||
|
|
||||||
|
|
||||||
|
def initialize(attributes)
|
||||||
|
@connection = attributes[:connection]
|
||||||
|
super
|
||||||
|
end
|
||||||
|
|
||||||
|
def save
|
||||||
|
requires :name, :description, :size
|
||||||
|
data = connection.create_volume(name, description, size, attributes)
|
||||||
|
merge_attributes(data.body['volume'])
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy
|
||||||
|
requires :id
|
||||||
|
connection.delete_volume(id)
|
||||||
|
true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
26
lib/fog/openstack/models/compute/volumes.rb
Normal file
26
lib/fog/openstack/models/compute/volumes.rb
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
require 'fog/core/collection'
|
||||||
|
require 'fog/openstack/models/compute/volume'
|
||||||
|
|
||||||
|
module Fog
|
||||||
|
module Compute
|
||||||
|
class OpenStack
|
||||||
|
|
||||||
|
class Volumes < Fog::Collection
|
||||||
|
model Fog::Compute::OpenStack::Volume
|
||||||
|
|
||||||
|
def all(detailed=true)
|
||||||
|
load(connection.list_volumes(detailed).body['volumes'])
|
||||||
|
end
|
||||||
|
|
||||||
|
def get(volume_id)
|
||||||
|
if volume = connection.get_volume_details(volume_id).body['volume']
|
||||||
|
new(volume)
|
||||||
|
end
|
||||||
|
rescue Fog::Compute::OpenStack::NotFound
|
||||||
|
nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
54
lib/fog/openstack/requests/compute/create_volume.rb
Normal file
54
lib/fog/openstack/requests/compute/create_volume.rb
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
module Fog
|
||||||
|
module Compute
|
||||||
|
class OpenStack
|
||||||
|
class Real
|
||||||
|
|
||||||
|
def create_volume(name, description, size, options={})
|
||||||
|
data = {
|
||||||
|
'volume' => {
|
||||||
|
'display_name' => name,
|
||||||
|
'display_description' => description,
|
||||||
|
'size' => size
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
vanilla_options = ['snapshot_id']
|
||||||
|
vanilla_options.select{|o| options[o]}.each do |key|
|
||||||
|
data['volume'][key] = options[key]
|
||||||
|
end
|
||||||
|
request(
|
||||||
|
:body => MultiJson.encode(data),
|
||||||
|
:expects => [200, 202],
|
||||||
|
:method => 'POST',
|
||||||
|
:path => "os-volumes"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
class Mock
|
||||||
|
|
||||||
|
def create_volume(name, description, size, options={})
|
||||||
|
response = Excon::Response.new
|
||||||
|
response.status = 202
|
||||||
|
response.body = {
|
||||||
|
'volume' => {
|
||||||
|
'id' => Fog::Mock.random_numbers(2),
|
||||||
|
'displayName' => name,
|
||||||
|
'displayDescription' => description,
|
||||||
|
'size' => size,
|
||||||
|
'status' => 'creating',
|
||||||
|
'snapshotId' => '4',
|
||||||
|
'volumeType' => nil,
|
||||||
|
'availabilityZone' => 'nova',
|
||||||
|
'createdAt' => Time.now,
|
||||||
|
'attchments' => []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
response
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
26
lib/fog/openstack/requests/compute/delete_volume.rb
Normal file
26
lib/fog/openstack/requests/compute/delete_volume.rb
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
module Fog
|
||||||
|
module Compute
|
||||||
|
class OpenStack
|
||||||
|
class Real
|
||||||
|
|
||||||
|
def delete_volume(volume_id)
|
||||||
|
request(
|
||||||
|
:expects => 204,
|
||||||
|
:method => 'DELETE',
|
||||||
|
:path => "os-volumes/#{volume_id}"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
class Mock
|
||||||
|
def delete_volume(volume_id)
|
||||||
|
response = Excon::Response.new
|
||||||
|
response.status = 204
|
||||||
|
response
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
42
lib/fog/openstack/requests/compute/get_volume_details.rb
Normal file
42
lib/fog/openstack/requests/compute/get_volume_details.rb
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
module Fog
|
||||||
|
module Compute
|
||||||
|
class OpenStack
|
||||||
|
class Real
|
||||||
|
|
||||||
|
def get_volume_details(volume_id)
|
||||||
|
|
||||||
|
request(
|
||||||
|
:expects => 200,
|
||||||
|
:method => 'GET',
|
||||||
|
:path => "os-volumes/#{volume_id}"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
class Mock
|
||||||
|
|
||||||
|
def get_volume_details(detailed=true)
|
||||||
|
response = Excon::Response.new
|
||||||
|
response.status = 200
|
||||||
|
response.body = {
|
||||||
|
'volume' => {
|
||||||
|
'id' => '1',
|
||||||
|
'displayName' => Fog::Mock.random_letters(rand(8) + 5),
|
||||||
|
'displayDescription' => Fog::Mock.random_letters(rand(12) + 10),
|
||||||
|
'size' => 3,
|
||||||
|
'volumeType' => nil,
|
||||||
|
'snapshotId' => '4',
|
||||||
|
'status' => 'online',
|
||||||
|
'availabilityZone' => 'nova',
|
||||||
|
'createdAt' => Time.now,
|
||||||
|
'attchments' => []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
response
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
43
lib/fog/openstack/requests/compute/list_volumes.rb
Normal file
43
lib/fog/openstack/requests/compute/list_volumes.rb
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
module Fog
|
||||||
|
module Compute
|
||||||
|
class OpenStack
|
||||||
|
class Real
|
||||||
|
|
||||||
|
def list_volumes(detailed=true)
|
||||||
|
|
||||||
|
path = detailed ? 'os-volumes/detail' : 'os-volumes'
|
||||||
|
request(
|
||||||
|
:expects => 200,
|
||||||
|
:method => 'GET',
|
||||||
|
:path => path
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
class Mock
|
||||||
|
|
||||||
|
def list_volumes(detailed=true)
|
||||||
|
response = Excon::Response.new
|
||||||
|
response.status = 200
|
||||||
|
response.body = {
|
||||||
|
'volumes' => [
|
||||||
|
{ 'id' => '1',
|
||||||
|
'displayName' => Fog::Mock.random_letters(rand(8) + 5),
|
||||||
|
'displayDescription' => Fog::Mock.random_letters(rand(12) + 10),
|
||||||
|
'size' => 3,
|
||||||
|
'status' => 'online',
|
||||||
|
'snapshotId' => '4',
|
||||||
|
'volumeType' => nil,
|
||||||
|
'availabilityZone' => 'nova',
|
||||||
|
'createdAt' => Time.now,
|
||||||
|
'attchments' => []}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
response
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
39
tests/openstack/requests/compute/volume_tests.rb
Normal file
39
tests/openstack/requests/compute/volume_tests.rb
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
require 'fog/openstack'
|
||||||
|
|
||||||
|
Shindo.tests('Fog::Compute[:openstack] | volume requests', ['openstack']) do
|
||||||
|
|
||||||
|
@volume_format = {
|
||||||
|
'id' => String,
|
||||||
|
'displayName' => String,
|
||||||
|
'size' => Integer,
|
||||||
|
'displayDescription' => String,
|
||||||
|
'status' => String,
|
||||||
|
'snapshotId' => String,
|
||||||
|
'availabilityZone' => String,
|
||||||
|
'attchments' => Array,
|
||||||
|
'volumeType' => NilClass,
|
||||||
|
'createdAt' => Time
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
tests('success') do
|
||||||
|
tests('#list_volumes').formats({'volumes' => [@volume_format]}) do
|
||||||
|
Fog::Compute[:openstack].list_volumes.body
|
||||||
|
end
|
||||||
|
|
||||||
|
tests('#get_volume_detail').formats({'volume' => @volume_format}) do
|
||||||
|
pending unless Fog.mocking?
|
||||||
|
Fog::Compute[:openstack].get_volume_details(0).body
|
||||||
|
end
|
||||||
|
|
||||||
|
tests('#create_volume').formats({'volume' => @volume_format}) do
|
||||||
|
pending unless Fog.mocking?
|
||||||
|
Fog::Compute[:openstack].create_volume('loud', 'this is a loud volume', 3).body
|
||||||
|
end
|
||||||
|
|
||||||
|
tests('#delete_volume').succeeds do
|
||||||
|
pending unless Fog.mocking?
|
||||||
|
Fog::Compute[:openstack].delete_volume(1)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue