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-rackspace-0.1.6 tests/rackspace/models/block_storage/volume_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-rackspace-0.1.5/tests/rackspace/models/block_storage/volume_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-rackspace-0.1.5/tests/rackspace/models/block_storage/volume_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-rackspace-0.1.5/tests/rackspace/models/block_storage/volume_tests.rb
fog-rackspace-0.1.5 tests/rackspace/models/block_storage/volume_tests.rb
fog-rackspace-0.1.4 tests/rackspace/models/block_storage/volume_tests.rb
fog-rackspace-0.1.3 tests/rackspace/models/block_storage/volume_tests.rb
fog-rackspace-0.1.2 tests/rackspace/models/block_storage/volume_tests.rb
fog-rackspace-0.1.1 tests/rackspace/models/block_storage/volume_tests.rb
fog-rackspace-0.1.0 tests/rackspace/models/block_storage/volume_tests.rb
fog-1.37.0 tests/rackspace/models/block_storage/volume_tests.rb
fog-1.36.0 tests/rackspace/models/block_storage/volume_tests.rb
fog-1.35.0 tests/rackspace/models/block_storage/volume_tests.rb
fog-2.0.0.pre.0 tests/rackspace/models/block_storage/volume_tests.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/tests/rackspace/models/block_storage/volume_tests.rb
fog-1.34.0 tests/rackspace/models/block_storage/volume_tests.rb
fog-1.33.0 tests/rackspace/models/block_storage/volume_tests.rb
fog-1.32.0 tests/rackspace/models/block_storage/volume_tests.rb
fog-1.31.0 tests/rackspace/models/block_storage/volume_tests.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/tests/rackspace/models/block_storage/volume_tests.rb