mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
118 lines
3.4 KiB
Ruby
118 lines
3.4 KiB
Ruby
require 'helper'
|
|
|
|
# MVSB = MockVpcSubnetsBackend
|
|
# Abbreviation not used outside this file
|
|
|
|
#=============================================================================#
|
|
# Constructor Tests
|
|
#=============================================================================#
|
|
class AwsSubnetsConstructor < Minitest::Test
|
|
def setup
|
|
AwsSubnets::BackendFactory.select(AwsMVSB::Basic)
|
|
end
|
|
|
|
def test_constructor_no_args_ok
|
|
AwsSubnets.new
|
|
end
|
|
|
|
def test_constructor_reject_unknown_resource_params
|
|
assert_raises(ArgumentError) { AwsSubnets.new(bla: 'blabla') }
|
|
end
|
|
end
|
|
|
|
#=============================================================================#
|
|
# Filter Criteria
|
|
#=============================================================================#
|
|
class AwsSubnetsFilterCriteria < Minitest::Test
|
|
def setup
|
|
AwsSubnets::BackendFactory.select(AwsMVSB::Basic)
|
|
end
|
|
|
|
def test_filter_vpc_id
|
|
hit = AwsSubnets.new.where(vpc_id: 'vpc-01234567')
|
|
assert(hit.exists?)
|
|
|
|
miss = AwsSubnets.new.where(vpc_id: 'vpc-87654321')
|
|
refute(miss.exists?)
|
|
|
|
end
|
|
|
|
def test_filter_subnet_id
|
|
hit = AwsSubnets.new.where(subnet_id: 'subnet-01234567')
|
|
assert(hit.exists?)
|
|
|
|
miss = AwsSubnets.new.where(subnet_id: 'subnet-98765432')
|
|
refute(miss.exists?)
|
|
end
|
|
|
|
end
|
|
|
|
#=============================================================================#
|
|
# Properties
|
|
#=============================================================================#
|
|
class AwsSubnetProperties < Minitest::Test
|
|
def setup
|
|
AwsSubnets::BackendFactory.select(AwsMVSB::Basic)
|
|
end
|
|
|
|
def test_property_vpc_ids
|
|
basic = AwsSubnets.new
|
|
assert_kind_of(Array, basic.vpc_ids)
|
|
assert(basic.vpc_ids.include?('vpc-01234567'))
|
|
refute(basic.vpc_ids.include?(nil))
|
|
end
|
|
|
|
def test_property_subnet_ids
|
|
basic = AwsSubnets.new
|
|
assert_kind_of(Array, basic.subnet_ids)
|
|
assert(basic.subnet_ids.include?('subnet-01234567'))
|
|
refute(basic.subnet_ids.include?(nil))
|
|
end
|
|
|
|
def test_property_cidr_blocks
|
|
basic = AwsSubnets.new
|
|
assert_kind_of(Array, basic.cidr_blocks)
|
|
assert(basic.cidr_blocks.include?('10.0.1.0/24'))
|
|
refute(basic.cidr_blocks.include?(nil))
|
|
end
|
|
|
|
def test_property_states
|
|
basic = AwsSubnets.new
|
|
assert_kind_of(Array, basic.states)
|
|
assert(basic.states.include?('available'))
|
|
refute(basic.states.include?(nil))
|
|
end
|
|
end
|
|
|
|
#=============================================================================#
|
|
# Test Fixtures
|
|
#=============================================================================#
|
|
module AwsMVSB
|
|
class Basic < AwsBackendBase
|
|
def describe_subnets
|
|
fixtures = [
|
|
OpenStruct.new({
|
|
availability_zone: "us-east-1c",
|
|
available_ip_address_count: 251,
|
|
cidr_block: "10.0.1.0/24",
|
|
default_for_az: false,
|
|
map_public_ip_on_launch: false,
|
|
state: "available",
|
|
subnet_id: "subnet-01234567",
|
|
vpc_id: "vpc-01234567",
|
|
}),
|
|
OpenStruct.new({
|
|
availability_zone: "us-east-1b",
|
|
available_ip_address_count: 251,
|
|
cidr_block: "10.0.2.0/24",
|
|
default_for_az: false,
|
|
map_public_ip_on_launch: false,
|
|
state: "available",
|
|
subnet_id: "subnet-00112233",
|
|
vpc_id: "vpc-00112233",
|
|
}),
|
|
]
|
|
OpenStruct.new({ subnets: fixtures })
|
|
end
|
|
end
|
|
end
|