1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/tests/models/cloud_watch/alarm_data_tests.rb
2015-01-02 09:42:20 -08:00

42 lines
1.1 KiB
Ruby

Shindo.tests("AWS::CloudWatch | alarm_data", ['aws', 'cloudwatch']) do
pending if Fog.mocking?
tests('success') do
tests("#all").succeeds do
Fog::AWS[:cloud_watch].alarm_data.all
end
alarm_name_prefix = {'AlarmNamePrefix'=>'tmp'}
tests("#all_by_prefix").succeeds do
Fog::AWS[:cloud_watch].alarm_data.all(alarm_name_prefix)
end
namespace = 'AWS/EC2'
metric_name = 'CPUUtilization'
tests("#get").succeeds do
Fog::AWS[:cloud_watch].alarm_data.get(namespace, metric_name).to_json
end
new_attributes = {
:alarm_name => 'tmp-alarm',
:comparison_operator => 'GreaterThanOrEqualToThreshold',
:evaluation_periods => 1,
:metric_name => 'tmp-metric-alarm',
:namespace => 'fog-0.11.0',
:period => 60,
:statistic => 'Sum',
:threshold => 5
}
tests('#new').returns(new_attributes) do
Fog::AWS[:cloud_watch].alarm_data.new(new_attributes).attributes
end
tests('#create').returns(new_attributes) do
Fog::AWS[:cloud_watch].alarm_data.create(new_attributes).attributes
end
end
end