Sha256: 03f4d42b2d6ce0467cfc5eeb9b3426bcbbdcf98343e344f67d8ca6bc97ae8e2f

Contents?: true

Size: 1.99 KB

Versions: 13

Compression:

Stored size: 1.99 KB

Contents

Shindo.tests('Fog::Compute[:slicehost] | slice requests', ['slicehost']) do

  @slice_format = {
    'addresses'     => [String],
    'bw-in'         => Float,
    'bw-out'        => Float,
    'flavor-id'     => Integer,
    'id'            => Integer,
    'image-id'      => Integer,
    'name'          => String,
    'progress'      => Integer,
    'status'        => String
  }

  tests('success') do

    @slice_id = nil

    tests("#create_slice(1, 305, 'fogcreateslice')").formats(@slice_format.merge('root-password' => String)) do
      pending if Fog.mocking?
      data = Fog::Compute[:slicehost].create_slice(1, 305, 'fogcreateslice').body
      @slice_id = data['id']
      data
    end

    unless Fog.mocking?
      Fog::Compute[:slicehost].servers.get(@slice_id).wait_for { ready? }
    end

    tests("#get_slice(#{@slice_id})").formats(@slice_format) do
      pending if Fog.mocking?
      Fog::Compute[:slicehost].get_slice(@slice_id).body
    end

    tests("#get_slices").formats({'slices' => [@slice_format]}) do
      pending if Fog.mocking?
      Fog::Compute[:slicehost].get_slices.body
    end

    tests("#reboot_slice(#{@slice_id})").formats(@slice_format) do
      pending if Fog.mocking?
      Fog::Compute[:slicehost].reboot_slice(@slice_id).body
    end

    unless Fog.mocking?
      Fog::Compute[:slicehost].servers.get(@slice_id).wait_for { ready? }
    end

    tests("#delete_slice(#{@slice_id})").succeeds do
      pending if Fog.mocking?
      Fog::Compute[:slicehost].delete_slice(@slice_id)
    end

  end

  tests('failure') do

    tests('#get_slice(0)').raises(Excon::Errors::Forbidden) do
      pending if Fog.mocking?
      Fog::Compute[:slicehost].get_slice(0)
    end

    tests('#reboot_slice(0)').raises(Excon::Errors::Forbidden) do
      pending if Fog.mocking?
      Fog::Compute[:slicehost].reboot_slice(0)
    end

    tests('#delete_slice(0)').raises(Fog::Compute::Slicehost::NotFound) do
      pending if Fog.mocking?
      Fog::Compute[:slicehost].delete_slice(0)
    end

  end

end

Version data entries

13 entries across 13 versions & 5 rubygems

Version Path
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/tests/slicehost/requests/compute/slice_tests.rb
michiels-fog-1.3.1 tests/slicehost/requests/compute/slice_tests.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/tests/slicehost/requests/compute/slice_tests.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/tests/slicehost/requests/compute/slice_tests.rb
fog-1.3.1 tests/slicehost/requests/compute/slice_tests.rb
fog-1.3.0 tests/slicehost/requests/compute/slice_tests.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/tests/slicehost/requests/compute/slice_tests.rb
fog-1.2.0 tests/slicehost/requests/compute/slice_tests.rb
ktheory-fog-1.1.2 tests/slicehost/requests/compute/slice_tests.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/tests/slicehost/requests/compute/slice_tests.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/tests/slicehost/requests/compute/slice_tests.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/tests/slicehost/requests/compute/slice_tests.rb
fog-1.1.2 tests/slicehost/requests/compute/slice_tests.rb