Sha256: a6ba33af9beab750634757e499353ffe5c1833ae9d508492568cbe3f576bfdca

Contents?: true

Size: 835 Bytes

Versions: 87

Compression:

Stored size: 835 Bytes

Contents

Shindo.tests('Fog::Rackspace::BlockStorage | volume', ['rackspace']) do

  service = Fog::Rackspace::BlockStorage.new
  options = { :display_name => "fog_#{Time.now.to_i.to_s}", :size => 100 }

  model_tests(service.volumes, options, true) do
    @instance.wait_for{ ready? }

    tests('double save').raises(Fog::Rackspace::BlockStorage::IdentifierTaken) do
      @instance.save
    end

    tests('#attached?').succeeds do
      @instance.state = 'in-use'
      returns(true) { @instance.attached? }
    end

    tests('#snapshots').succeeds do
      begin
        snapshot = @instance.create_snapshot
        snapshot.wait_for { ready? }

        returns(true) { @instance.snapshots.first.id == snapshot.id }
      ensure
        snapshot.destroy if snapshot
      end
    end

    @instance.wait_for { snapshots.empty? }
  end
end

Version data entries

87 entries across 85 versions & 8 rubygems

Version Path
fog-maestrodev-1.18.0.20131206115947 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131205181604 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131127194823 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131126183714 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131126122111 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131125111730 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131125083406 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131123105121 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131122203507 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131121075022 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131118164830 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131115184302 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131114200144 tests/rackspace/models/block_storage/volume_tests.rb
gapinc-fog-1.12.1.2.1 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131112185232 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.18.0.20131111203459 tests/rackspace/models/block_storage/volume_tests.rb
fog-1.18.0 tests/rackspace/models/block_storage/volume_tests.rb
fog-1.17.0 tests/rackspace/models/block_storage/volume_tests.rb
fog-1.16.0 tests/rackspace/models/block_storage/volume_tests.rb
fog-maestrodev-1.15.0.20130927082724 tests/rackspace/models/block_storage/volume_tests.rb