Sha256: 935bd109e8065409415e0dae25d492f08d430852380f3d7e5ecd9ba3d45a6163

Contents?: true

Size: 1.35 KB

Versions: 78

Compression:

Stored size: 1.35 KB

Contents

Shindo.tests('Fog::Rackspace::Monitoring | entity_tests', ['rackspace','rackspace_monitoring']) do
  account = Fog::Rackspace::Monitoring.new
  entity_id = nil
  tests('success') do
    tests('#create new entity').formats(DATA_FORMAT) do
      response = account.create_entity(:label => "Foo").data
      @entity_id = response[:headers]["X-Object-ID"]
      response
    end
    tests('#get entity').formats(LIST_HEADERS_FORMAT) do
      account.get_entity(@entity_id).data[:headers]
    end
    tests('#update entity').formats(DATA_FORMAT) do
      options = { :metadata => {:testing => "Bar" }}
      account.update_entity(@entity_id,options).data
    end
    tests('#delete entity').formats(DELETE_DATA_FORMAT) do
      account.delete_entity(@entity_id).data
    end
  end
  tests('failure') do
    tests('#create new entity(-1)').raises(Fog::Rackspace::Monitoring::BadRequest) do
      account.create_entity(:label => "")
    end
    tests('#get entity(-1)').raises(Fog::Rackspace::Monitoring::NotFound) do
      account.get_entity(-1)
    end
    tests('#update invalid entity(-1)').raises(Fog::Rackspace::Monitoring::NotFound) do
      options = { :metadata => {:testing => "Bar" }}
      response = account.update_entity(-1,options)
    end
    tests('#delete entity(-1)').raises(Fog::Rackspace::Monitoring::NotFound) do
      account.delete_entity(-1)
    end
  end
end

Version data entries

78 entries across 76 versions & 7 rubygems

Version Path
fog-maestrodev-1.18.0.20131206115947 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131205181604 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131127194823 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131126183714 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131126122111 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131125111730 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131125083406 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131123105121 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131122203507 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131121075022 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131118164830 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131115184302 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131114200144 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131112185232 tests/rackspace/requests/monitoring/entity_tests.rb
fog-maestrodev-1.18.0.20131111203459 tests/rackspace/requests/monitoring/entity_tests.rb
fog-1.18.0 tests/rackspace/requests/monitoring/entity_tests.rb
fog-1.17.0 tests/rackspace/requests/monitoring/entity_tests.rb
fog-1.16.0 tests/rackspace/requests/monitoring/entity_tests.rb