mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
73 lines
2.1 KiB
Ruby
73 lines
2.1 KiB
Ruby
Shindo.tests('Fog::Compute::RackspaceV2 | image_tests', ['rackspace']) do
|
|
service = Fog::Compute.new(:provider => 'Rackspace', :version => 'V2')
|
|
|
|
image_format = {
|
|
'id' => String,
|
|
'name' => String,
|
|
'created' => Fog::Nullable::String,
|
|
'updated' => Fog::Nullable::String,
|
|
'status' => Fog::Nullable::String,
|
|
'user_id' => Fog::Nullable::String,
|
|
'tenant_id' => Fog::Nullable::String,
|
|
'progress' => Fog::Nullable::Integer,
|
|
'minDisk' => Fog::Nullable::Integer,
|
|
'minRam' => Fog::Nullable::Integer,
|
|
'metadata' => Fog::Nullable::Hash,
|
|
'OS-DCF:diskConfig' => Fog::Nullable::String,
|
|
'links' => [{
|
|
'rel' => String,
|
|
'href' => String,
|
|
'type' => Fog::Nullable::String
|
|
}]
|
|
}
|
|
|
|
list_image_format = {
|
|
'images' => [image_format]
|
|
}
|
|
|
|
get_image_format = {
|
|
'image' => image_format
|
|
}
|
|
|
|
begin
|
|
test_time = Time.now.to_i.to_s
|
|
@server = service.servers.create(:name => "fog-image-tests_#{test_time}",
|
|
:flavor_id => rackspace_test_flavor_id(service),
|
|
:image_id => rackspace_test_image_id(service))
|
|
@server.wait_for { ready? }
|
|
@image_id = nil
|
|
|
|
tests('success') do
|
|
|
|
tests("#create_image(#{@server.id}, 'fog-test-image')").succeeds do
|
|
response = service.create_image(@server.id, "fog-test-image_#{test_time}")
|
|
@image_id = response.headers["Location"].match(/\/([^\/]+$)/)[1]
|
|
end
|
|
|
|
tests('#list_images').formats(list_image_format) do
|
|
service.list_images.body
|
|
end
|
|
|
|
tests('#get_image').formats(get_image_format, false) do
|
|
service.get_image(@image_id).body
|
|
end
|
|
|
|
tests('#delete_image').succeeds do
|
|
service.delete_image(@image_id)
|
|
end
|
|
end
|
|
|
|
tests('failure') do
|
|
tests('#delete_image').raises(Fog::Compute::RackspaceV2::NotFound) do
|
|
service.delete_image(Fog::Rackspace::MockData::NOT_FOUND_ID)
|
|
end
|
|
|
|
tests('#get_image').raises(Fog::Compute::RackspaceV2::NotFound) do
|
|
service.get_image(Fog::Rackspace::MockData::NOT_FOUND_ID)
|
|
end
|
|
end
|
|
ensure
|
|
@image.destroy if @image
|
|
@server.destroy if @server
|
|
end
|
|
end
|