mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
d722827ebd
Signed-off-by: Sam Cornwell <14048146+samcornwell@users.noreply.github.com>
93 lines
2.5 KiB
Ruby
93 lines
2.5 KiB
Ruby
require 'helper'
|
|
require 'aws_iam_groups'
|
|
require 'date'
|
|
|
|
# MAIGPB = MockAwsIamGroupsPluralBackend
|
|
# Abbreviation not used outside this file
|
|
|
|
#=============================================================================#
|
|
# Constructor Tests
|
|
#=============================================================================#
|
|
class AwsIamGroupsConstructorTest < Minitest::Test
|
|
|
|
def setup
|
|
AwsIamGroups::BackendFactory.select(MAIGPB::Empty)
|
|
end
|
|
|
|
def test_empty_params_ok
|
|
AwsIamGroups.new
|
|
end
|
|
|
|
def test_rejects_unrecognized_params
|
|
assert_raises(ArgumentError) { AwsIamGroups.new(shoe_size: 9) }
|
|
end
|
|
end
|
|
|
|
|
|
#=============================================================================#
|
|
# Search / Recall
|
|
#=============================================================================#
|
|
class AwsIamGroupsRecallEmptyTest < Minitest::Test
|
|
|
|
def setup
|
|
AwsIamGroups::BackendFactory.select(MAIGPB::Empty)
|
|
end
|
|
|
|
def test_search_miss_via_empty_groups
|
|
refute AwsIamGroups.new.exists?
|
|
end
|
|
end
|
|
|
|
class AwsIamGroupsRecallBasicTest < Minitest::Test
|
|
|
|
def setup
|
|
AwsIamGroups::BackendFactory.select(MAIGPB::Basic)
|
|
end
|
|
|
|
def test_search_hit_via_empty_query
|
|
assert AwsIamGroups.new.exists?
|
|
end
|
|
end
|
|
|
|
#=============================================================================#
|
|
# Test Fixtures
|
|
#=============================================================================#
|
|
module MAIGPB
|
|
class Empty < AwsIamGroups::Backend
|
|
def list_groups(query = {})
|
|
OpenStruct.new({ groups: [] })
|
|
end
|
|
end
|
|
|
|
class Basic < AwsIamGroups::Backend
|
|
def list_groups(query = {})
|
|
fixtures = [
|
|
OpenStruct.new({
|
|
path: '/',
|
|
group_name: 'Administrator',
|
|
group_id: 'AGPAQWERQWERQWERQWERQ',
|
|
arn: 'arn:aws:iam::111111111111:group/Administrator',
|
|
create_date: DateTime.parse('2017-12-14 05:29:57 UTC')
|
|
}),
|
|
OpenStruct.new({
|
|
path: '/',
|
|
group_name: 'AmazonEC2ReadOnlyAccess',
|
|
group_id: 'AGPAASDFASDFASDFASDFA',
|
|
arn: 'arn:aws:iam::111111111111:group/AmazonEC2ReadOnlyAccess',
|
|
create_date: DateTime.parse('2017-12-15 17:37:14 UTC')
|
|
}),
|
|
]
|
|
|
|
if query[:path_prefix].nil?
|
|
selected = fixtures
|
|
else
|
|
selected = fixtures.select do |group|
|
|
group[:path].start_with? query[:path_prefix]
|
|
end
|
|
end
|
|
|
|
OpenStruct.new({ groups: selected })
|
|
end
|
|
end
|
|
|
|
end
|