1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Add shindo tests for requests methods for block storage.

This commit is contained in:
Rupak Ganguly 2012-07-09 16:01:16 -04:00
parent 55b0f8ea35
commit e1792048a2

View file

@ -0,0 +1,62 @@
Shindo.tests('Fog::BlockStorage[:hp] | volume requests', ['hp', 'block_storage']) do
@volume_format = {
'status' => String,
'displayDescription' => String,
'availabilityZone' => String,
'displayName' => String,
'attachments' => [Fog::Nullable::Hash],
'volumeType' => Fog::Nullable::String,
'snapshotId' => String,
'size' => Integer,
'id' => Integer,
'createdAt' => String,
'metadata' => Fog::Nullable::Hash
}
tests('success') do
@volume_id = nil
@volume_name = "fogvolumetests"
@volume_desc = @volume_name + " desc"
tests("#create_volume(#{@volume_name}, #{@volume_desc}, 1)").formats(@volume_format) do
data = Fog::BlockStorage[:hp].create_volume(@volume_name, @volume_desc, 1).body['volume']
@volume_id = data['id']
data
end
#Fog::BlockStorage[:hp].volumes.get(@volume_id).wait_for { ready? }
#
tests("#get_volume_details(#{@volume_id})").formats(@volume_format) do
Fog::BlockStorage[:hp].get_volume_details(@volume_id).body['volume']
end
tests('#list_volumes').formats({'volumes' => [@volume_format]}) do
Fog::BlockStorage[:hp].list_volumes.body
end
#Fog::BlockStorage[:hp].volumes.get(@volume_id).wait_for { ready? }
#
tests("#delete_volume(#{@volume_id})").succeeds do
Fog::BlockStorage[:hp].delete_volume(@volume_id)
end
# Add attach_volume and detach_volume tests
end
tests('failure') do
tests('#delete_volume(0)').raises(Fog::BlockStorage::HP::NotFound) do
Fog::BlockStorage[:hp].delete_volume(0)
end
tests('#get_volume_details(0)').raises(Fog::BlockStorage::HP::NotFound) do
Fog::BlockStorage[:hp].get_volume_details(0)
end
# Add attach_volume and detach_volume tests
end
end