1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
require 'spec_helper'
require_relative './shared_context'
describe Fog::OpenStack::Image do
spec_data_folder = 'spec/fixtures/openstack/image_v2'
before :all do
openstack_vcr = OpenStackVCR.new(
:vcr_directory => spec_data_folder,
:service_class => Fog::OpenStack::Image # Fog to choose latest available version
)
@service = openstack_vcr.service
end
def cleanup_image(image, image_name = nil, image_id = nil)
# Delete the image
image.destroy if image
if image_id
begin
image_by_id = @service.images.find_by_id(image_id)
rescue
false
end
end
image_by_id.destroy if image_by_id
if image_name
@service.images.all(:name => image_name).each(&:destroy)
end
# Check that the deletion worked
proc { @service.images.find_by_id(image_id).must_equal nil } if image_id
@service.images.all(:name => image_name).length.must_equal 0 if image_name
end
it "CRUD & list images" do
VCR.use_cassette('image_v2_crud') do
image_name = 'foobar'
image_rename = 'baz'
@service.images.all.wont_equal nil
begin
# Create an image called foobar
foobar_image = @service.images.create(:name => image_name)
foobar_id = foobar_image.id
@service.images.all(:name => image_name).length.must_equal 1
foobar_image.status.must_equal 'queued'
# Rename it to baz
# see "Patch images" test below - for now this will be a simple synthesis of a JSON patch with op = 'replace'
foobar_image.update(:name => image_rename)
foobar_image.name.must_equal image_rename
baz_image = @service.images.find_by_id foobar_id
baz_image.wont_equal nil
baz_image.id.must_equal foobar_id
baz_image.name.must_equal image_rename
# Read the image freshly by listing images filtered by the new name
images = @service.images.all(:name => image_rename)
images.length.must_equal 1
images.first.id.must_equal baz_image.id
ensure
cleanup_image baz_image
@service.images.all.select { |image| [image_name, image_rename].include? image.name }.each(&:destroy)
# Check that the deletion worked
@service.images.all.count { |image| [image_name, image_rename].include? image.name }.must_equal 0
end
end
end
it "Image creation with ID" do
VCR.use_cassette('image_v2_create_id') do
image_name = 'foobar_id'
begin
# increment this identifier when running test more than once, unless the VCR recording is being used
identifier = '11111111-2222-3333-aaaa-bbbbbbcccce1'
# Create an image with a specified ID
foobar_image = @service.images.create(:name => 'foobar_id', :id => identifier)
foobar_id = foobar_image.id
@service.images.all(:name => image_name).length.must_equal 1
foobar_image.status.must_equal 'queued'
foobar_id.must_equal identifier
get_image = @service.images.find_by_id(identifier)
get_image.name.must_equal image_name
ensure
cleanup_image foobar_image, image_name, foobar_id
end
end
end
it "Image saving when image has been created with ID" do
VCR.use_cassette('image_v2_save_id') do
identifier = "11111111-2222-3333-aaaa-bbbbbbcccce2"
begin
# Create an image with a specified ID
foobar_image = Fog::OpenStack::Image::V2::Image.new(
:name => 'original_name',
:id => identifier,
:service => @service,
:property_to_delete => 'bar'
)
foobar_image.save
foobar_image.status.must_equal 'queued'
foobar_image.id.must_equal identifier
foobar_image.name.must_equal 'original_name'
foobar_image.property_to_delete.must_equal 'bar'
foobar_image.respond_to?(:property_to_add).must_equal false
get_image = @service.images.find_by_id(identifier)
get_image.name = 'updated_name'
get_image.property_to_add = 'bar'
get_image.property_to_delete = nil
get_image.save
updated_image = @service.images.find_by_id(identifier)
updated_image.name.must_equal 'updated_name'
updated_image.property_to_add.must_equal 'bar'
updated_image.respond_to?(:property_to_delete).must_equal false
ensure
cleanup_image nil, nil, identifier
end
end
end
it "Reloads image state from the server" do
VCR.use_cassette('image_v2_reload') do
image_name = 'reloaded_image'
begin
created_image = @service.images.create(
:name => image_name + '_original',
:service => @service,
)
identifier = created_image.id
found_image = @service.images.find_by_id(identifier)
# verify an image provided by `create` can be reloaded
found_image.name = image_name + '_updated'
found_image.save
created_image.name.must_equal image_name + '_original',
created_image.reload
created_image.name.must_equal image_name + '_updated'
# verify an image provided by `find_by_id` can be reloaded
created_image.name = image_name + '_updated_again'
created_image.save
found_image.name.must_equal image_name + '_updated'
found_image.reload
found_image.name.must_equal image_name + '_updated_again'
ensure
cleanup_image nil, image_name
end
end
end
it "Image creation with specified location" do
VCR.use_cassette('image_v2_create_location') do
begin
# Create image with location of image data
skip "Figure out 'Create image with location of image data'"
end
end
end
it "Image upload & download in bulk" do
VCR.use_cassette('image_v2_upload_download') do
image_name = 'foobar_up1'
begin
# minimal.ova is a "no-op" virtual machine image, 80kB .ova file containing 64Mb dynamic disk
image_path = "#{spec_data_folder}/minimal.ova"
foobar_image = @service.images.create(:name => image_name,
:container_format => 'ovf',
:disk_format => 'vmdk')
foobar_id = foobar_image.id
# Status should be queued
@service.images.find_by_id(foobar_id).status.must_match(/queued/)
# Upload data from File or IO object
foobar_image.upload_data File.new(image_path, 'r')
# Status should be saving or active
@service.images.find_by_id(foobar_id).status.must_match(/saving|active/)
# Get an IO object from which to download image data - wait until finished saving though
while @service.images.find_by_id(foobar_id).status == 'saving'
sleep 1
end
@service.images.find_by_id(foobar_id).status.must_equal 'active'
# Bulk download
downloaded_data = foobar_image.download_data
downloaded_data.size.must_equal File.size(image_path)
ensure
cleanup_image foobar_image, image_name
end
end
end
it "Deactivates and activates an image" do
VCR.use_cassette('image_v2_activation') do
image_name = 'foobar3a'
# "no-op" virtual machine image, 80kB .ova file containing 64Mb dynamic disk
image_path = "spec/fixtures/openstack/image_v2/minimal.ova"
begin
# Create an image called foobar2
foobar_image = @service.images.create(:name => image_name,
:container_format => 'ovf',
:disk_format => 'vmdk')
foobar_id = foobar_image.id
foobar_image.upload_data File.new(image_path, 'r')
while @service.images.find_by_id(foobar_id).status == 'saving'
sleep 1
end
foobar_image.deactivate
proc { foobar_image.download_data }.must_raise Excon::Errors::Forbidden
foobar_image.reactivate
foobar_image.download_data
ensure
cleanup_image foobar_image, image_name
end
end
end
it "Adds and deletes image tags" do
VCR.use_cassette('image_v2_tags') do
image_name = 'foobar3'
begin
# Create an image
foobar_image = @service.images.create(:name => image_name,
:container_format => 'ovf',
:disk_format => 'vmdk')
foobar_id = foobar_image.id
foobar_image.add_tag 'tag1'
@service.images.find_by_id(foobar_id).tags.must_include 'tag1'
foobar_image.add_tags %w[tag2 tag3 tag4]
@service.images.find_by_id(foobar_id).tags.must_equal %w[tag4 tag1 tag2 tag3]
foobar_image.remove_tag 'tag2'
@service.images.find_by_id(foobar_id).tags.must_equal %w[tag4 tag1 tag3]
foobar_image.remove_tags %w[tag1 tag3]
@service.images.find_by_id(foobar_id).tags.must_include 'tag4'
ensure
cleanup_image foobar_image, image_name
end
end
end
it "CRUD and list image members" do
VCR.use_cassette('image_v2_member_crudl') do
image_name = 'foobar4'
tenant_id = 'tenant1'
begin
# Create an image called foobar
foobar_image = @service.images.create(:name => image_name)
foobar_image.members.size.must_equal 0
foobar_image.add_member tenant_id
foobar_image.members.size.must_equal 1
member = foobar_image.member tenant_id
member.wont_equal nil
member['status'].must_equal 'pending'
member['status'] = 'accepted'
foobar_image.update_member member
foobar_image.member(tenant_id)['status'].must_equal 'accepted'
foobar_image.remove_member member['member_id']
foobar_image.members.size.must_equal 0
ensure
cleanup_image foobar_image, image_name
end
end
end
it "Gets JSON schemas for 'images', 'image', 'members', 'member'" do
VCR.use_cassette('image_v2_schemas') do
skip 'Fetching JSON schemas: to be implemented'
end
end
it "CRUD resource types" do
VCR.use_cassette('image_v2_resource_type_crud') do
skip 'CRUD resource types: to be implemented'
end
end
it "CRUD namespace metadata definition" do
VCR.use_cassette('image_v2_namespace_metadata_crud') do
skip 'CRUD namespace metadata definition: to be implemented'
end
end
it "CRUD property metadata definition" do
VCR.use_cassette('image_v2_property_metadata_crud') do
skip 'CRUD property metadata definition: to be implemented'
end
end
it "CRUD object metadata definition" do
VCR.use_cassette('image_v2_object_metadata_crud') do
skip 'CRUD object metadata definition: to be implemented'
end
end
it "CRUD tag metadata definition" do
VCR.use_cassette('image_v2_tag_metadata_crud') do
skip 'CRUD tag metadata definition: to be implemented'
end
end
it "CRUD schema metadata definition" do
VCR.use_cassette('image_v2_schema_metadata_crud') do
skip 'CRUD schema metadata definition: to be implemented'
end
end
it "Creates, lists & gets tasks" do
VCR.use_cassette('image_v2_task_clg') do
skip 'Creates, lists & gets tasks: to be implemented'
end
end
describe 'find_by_id' do
it 'finds image' do
existing_image_id = 'fe05659e-d433-4e09-aa78-19e0b7f5e497'
VCR.use_cassette('images_v2_find_by_id') do
@service.images.find_by_id(existing_image_id).id.must_equal existing_image_id
end
end
it 'returns nil when image is not found' do
VCR.use_cassette('images_v2_find_by_id') do
assert_nil @service.images.find_by_id('11111111-2222-3333-aaaa-bbbbbbcccce2')
end
end
end
end
|