1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/rackspace/models/monitoring/alarms_tests.rb
Matt Darby 72e52e70be Revert "Moving Rackspace logic to fog-rackspace"
This reverts commit d6ecb19d24.

Conflicts:
	fog.gemspec
2014-12-10 11:30:34 -05:00

25 lines
888 B
Ruby

Shindo.tests('Fog::Rackspace::Monitoring | alarms', ['rackspace','rackspace_monitoring']) do
pending if Fog.mocking?
service = Fog::Rackspace::Monitoring.new
begin
@entity = service.entities.create :label => "fog_#{Time.now.to_i.to_s}"
@check = service.checks.create(CHECK_CREATE_OPTIONS.merge(
:label => "fog_#{Time.now.to_i.to_s}",
:entity => @entity) )
np = "npTechnicalContactsEmail"
options = CHECK_CREATE_OPTIONS.merge(
:label => "fog_#{Time.now.to_i.to_s}",
:entity => @entity,
:entity_id => @entity.id,
:check => @check,
:check_id => @check.id,
:notification_plan_id => np
)
collection = service.alarms(:entity => @entity)
collection_tests(collection, options, false) do
end
ensure
@entity.destroy if @entity
end
end