2013-08-01 14:50:02 -04:00
|
|
|
Shindo.tests('Fog::Rackspace::Monitoring | alarms', ['rackspace','rackspace_monitoring']) do
|
2013-08-02 15:14:41 -04:00
|
|
|
pending if Fog.mocking?
|
2013-08-01 14:50:02 -04:00
|
|
|
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
|