2012-02-24 07:03:55 -05:00
|
|
|
require 'fog/openstack'
|
|
|
|
|
|
|
|
Shindo.tests('Fog::Compute[:openstack] | volume requests', ['openstack']) do
|
|
|
|
|
|
|
|
@volume_format = {
|
2012-09-03 02:40:34 -04:00
|
|
|
'id' => String,
|
|
|
|
'display_name' => String,
|
|
|
|
'size' => Integer,
|
|
|
|
'display_description' => String,
|
|
|
|
'status' => String,
|
2012-10-02 01:52:45 -04:00
|
|
|
'snapshot_id' => Fog::Nullable::String,
|
2012-09-03 02:40:34 -04:00
|
|
|
'availability_zone' => String,
|
|
|
|
'attachments' => Array,
|
2012-10-02 01:52:45 -04:00
|
|
|
'volume_type' => Fog::Nullable::String,
|
2012-09-03 02:40:34 -04:00
|
|
|
'created_at' => Time
|
2012-02-24 07:03:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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?
|
2012-09-03 02:40:34 -04:00
|
|
|
Fog::Compute[:openstack].get_volume_details(1).body
|
2012-02-24 07:03:55 -05:00
|
|
|
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
|