inspec/test/unit/resources/aws_cloudwatch_alarm_test.rb
Clinton Wolfe 2955aabf7f DRY up AWS resource implementation and test backend implementations (#121)
* Standardize requires in unit tests

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Standardize requires in resources

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Move AWS connection hook into non-resource library area

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Add an AWS resource mixin, pushing constructor out to it

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Push resource param name recognition into mixin

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Push exists predicate up to mixin

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Rename base.rb to be resource_mixin for clarity

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Separate the backend from its factory, and push it out into a class mixin

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Push BackendFactory up into the resource mixin

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* De-linting

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Remove aws_conn require from LMF and CloudWatch Alarm filters

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Use resource mixin for Cloudwatch Alarm

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Rework LMF to use the resource mixin

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Rubocop.

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Remove SDK load from connection.rb; that happens in aws.rb now

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Mixin should default to allowing empty resource params

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>

* Update LMF to enforce params being required

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
2017-12-04 19:32:13 +01:00

167 lines
5.1 KiB
Ruby

require 'ostruct'
require 'helper'
require 'aws_cloudwatch_alarm'
# MCWAB = MockCloudwatchAlarmBackend
# Abbreviation not used outside this file
#=============================================================================#
# Constructor Tests
#=============================================================================#
class AwsCWAConstructor < Minitest::Test
def setup
AwsCloudwatchAlarm::BackendFactory.select(AwsMCWAB::Empty)
end
def test_constructor_some_args_required
assert_raises(ArgumentError) { AwsCloudwatchAlarm.new }
end
def test_constructor_accepts_known_resource_params_combos
[
{ metric_name: 'some-val', metric_namespace: 'some-val' },
].each do |combo|
AwsCloudwatchAlarm.new(combo)
end
end
def test_constructor_rejects_bad_resource_params_combos
[
{ metric_name: 'some-val' },
{ metric_namespace: 'some-val' },
].each do |combo|
assert_raises(ArgumentError) { AwsCloudwatchAlarm.new(combo) }
end
end
def test_constructor_reject_unknown_resource_params
assert_raises(ArgumentError) { AwsCloudwatchAlarm.new(beep: 'boop') }
end
end
#=============================================================================#
# Search / Recall
#=============================================================================#
class AwsCWARecall < Minitest::Test
def setup
AwsCloudwatchAlarm::BackendFactory.select(AwsMCWAB::Basic)
end
def test_recall_no_match_is_no_exception
alarm = AwsCloudwatchAlarm.new(metric_name: 'nope', metric_namespace: 'nope')
refute alarm.exists?
end
def test_recall_match_single_result_works
alarm = AwsCloudwatchAlarm.new(
metric_name: 'metric-01',
metric_namespace: 'metric-namespace-01',
)
assert alarm.exists?
end
def test_recall_multiple_result_raises
assert_raises(RuntimeError) do
AwsCloudwatchAlarm.new(
metric_name: 'metric-02',
metric_namespace: 'metric-namespace-01',
)
end
end
end
#=============================================================================#
# Properties
#=============================================================================#
class AwsCWAProperties < Minitest::Test
def setup
AwsCloudwatchAlarm::BackendFactory.select(AwsMCWAB::Basic)
end
#---------------------------------------
# alarm_actions
#---------------------------------------
def test_prop_actions_empty
alarm = AwsCloudwatchAlarm.new(
metric_name: 'metric-02',
metric_namespace: 'metric-namespace-02',
)
assert_kind_of Array, alarm.alarm_actions
assert_empty alarm.alarm_actions
end
def test_prop_actions_hit
alarm = AwsCloudwatchAlarm.new(
metric_name: 'metric-01',
metric_namespace: 'metric-namespace-01',
)
assert_kind_of Array, alarm.alarm_actions
refute_empty alarm.alarm_actions
assert_kind_of String, alarm.alarm_actions.first
end
end
#=============================================================================#
# Test Fixtures
#=============================================================================#
module AwsMCWAB
class Empty < AwsCloudwatchAlarm::Backend
def describe_alarms_for_metric(_criteria)
OpenStruct.new({
metric_alarms: [],
})
end
end
class Basic < AwsCloudwatchAlarm::Backend
def describe_alarms_for_metric(criteria)
OpenStruct.new({
metric_alarms: [ # rubocop:disable Metrics/BlockLength
# Each one here is an alarm that is subscribed to the given metric
# Each has an enormous number of properties, most omitted here
# http://docs.aws.amazon.com/sdkforruby/api/Aws/CloudWatch/Client.html#describe_alarms_for_metric-instance_method
OpenStruct.new({
alarm_name: 'alarm-01',
metric_name: 'metric-01',
namespace: 'metric-namespace-01',
statistic: 'SampleCount',
alarm_actions: [
'arn::::' # TODO: get SNS ARN format
],
}),
OpenStruct.new({
# Alarm 02 and 03 both watch metric-01, metric-namespace-01
alarm_name: 'alarm-02',
metric_name: 'metric-02',
namespace: 'metric-namespace-01',
statistic: 'SampleCount',
alarm_actions: [],
}),
OpenStruct.new({
# Alarm 02 and 03 both watch metric-02, metric-namespace-01
alarm_name: 'alarm-03',
metric_name: 'metric-02',
namespace: 'metric-namespace-01',
statistic: 'SampleCount',
alarm_actions: [],
}),
OpenStruct.new({
alarm_name: 'alarm-04',
metric_name: 'metric-02',
namespace: 'metric-namespace-02',
statistic: 'SampleCount',
alarm_actions: [],
}),
].select do |alarm|
criteria.keys.all? do |criterion|
criterion = 'namespace' if criterion == 'metric_namespace'
alarm[criterion] == criteria[criterion]
end
end,
})
end
end
end