Run black on moto & test directories.
This commit is contained in:
parent
c820395dbf
commit
96e5b1993d
507 changed files with 52541 additions and 47814 deletions
|
|
@ -1,4 +1,5 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
# Ensure 'assert_raises' context manager support for Python 2.6
|
||||
import tests.backport_assert_raises # noqa
|
||||
from nose.tools import assert_raises
|
||||
|
|
@ -12,15 +13,15 @@ import sure # noqa
|
|||
|
||||
from moto import mock_ec2, mock_ec2_deprecated
|
||||
|
||||
SAMPLE_DOMAIN_NAME = u'example.com'
|
||||
SAMPLE_NAME_SERVERS = [u'10.0.0.6', u'10.0.0.7']
|
||||
SAMPLE_DOMAIN_NAME = "example.com"
|
||||
SAMPLE_NAME_SERVERS = ["10.0.0.6", "10.0.0.7"]
|
||||
|
||||
|
||||
@mock_ec2_deprecated
|
||||
def test_vpcs():
|
||||
conn = boto.connect_vpc('the_key', 'the_secret')
|
||||
conn = boto.connect_vpc("the_key", "the_secret")
|
||||
vpc = conn.create_vpc("10.0.0.0/16")
|
||||
vpc.cidr_block.should.equal('10.0.0.0/16')
|
||||
vpc.cidr_block.should.equal("10.0.0.0/16")
|
||||
|
||||
all_vpcs = conn.get_all_vpcs()
|
||||
all_vpcs.should.have.length_of(2)
|
||||
|
|
@ -32,58 +33,56 @@ def test_vpcs():
|
|||
|
||||
with assert_raises(EC2ResponseError) as cm:
|
||||
conn.delete_vpc("vpc-1234abcd")
|
||||
cm.exception.code.should.equal('InvalidVpcID.NotFound')
|
||||
cm.exception.code.should.equal("InvalidVpcID.NotFound")
|
||||
cm.exception.status.should.equal(400)
|
||||
cm.exception.request_id.should_not.be.none
|
||||
|
||||
|
||||
@mock_ec2_deprecated
|
||||
def test_vpc_defaults():
|
||||
conn = boto.connect_vpc('the_key', 'the_secret')
|
||||
conn = boto.connect_vpc("the_key", "the_secret")
|
||||
vpc = conn.create_vpc("10.0.0.0/16")
|
||||
|
||||
conn.get_all_vpcs().should.have.length_of(2)
|
||||
conn.get_all_route_tables().should.have.length_of(2)
|
||||
conn.get_all_security_groups(
|
||||
filters={'vpc-id': [vpc.id]}).should.have.length_of(1)
|
||||
conn.get_all_security_groups(filters={"vpc-id": [vpc.id]}).should.have.length_of(1)
|
||||
|
||||
vpc.delete()
|
||||
|
||||
conn.get_all_vpcs().should.have.length_of(1)
|
||||
conn.get_all_route_tables().should.have.length_of(1)
|
||||
conn.get_all_security_groups(
|
||||
filters={'vpc-id': [vpc.id]}).should.have.length_of(0)
|
||||
conn.get_all_security_groups(filters={"vpc-id": [vpc.id]}).should.have.length_of(0)
|
||||
|
||||
|
||||
@mock_ec2_deprecated
|
||||
def test_vpc_isdefault_filter():
|
||||
conn = boto.connect_vpc('the_key', 'the_secret')
|
||||
conn = boto.connect_vpc("the_key", "the_secret")
|
||||
vpc = conn.create_vpc("10.0.0.0/16")
|
||||
conn.get_all_vpcs(filters={'isDefault': 'true'}).should.have.length_of(1)
|
||||
conn.get_all_vpcs(filters={"isDefault": "true"}).should.have.length_of(1)
|
||||
vpc.delete()
|
||||
conn.get_all_vpcs(filters={'isDefault': 'true'}).should.have.length_of(1)
|
||||
conn.get_all_vpcs(filters={"isDefault": "true"}).should.have.length_of(1)
|
||||
|
||||
|
||||
@mock_ec2_deprecated
|
||||
def test_multiple_vpcs_default_filter():
|
||||
conn = boto.connect_vpc('the_key', 'the_secret')
|
||||
conn = boto.connect_vpc("the_key", "the_secret")
|
||||
conn.create_vpc("10.8.0.0/16")
|
||||
conn.create_vpc("10.0.0.0/16")
|
||||
conn.create_vpc("192.168.0.0/16")
|
||||
conn.get_all_vpcs().should.have.length_of(4)
|
||||
vpc = conn.get_all_vpcs(filters={'isDefault': 'true'})
|
||||
vpc = conn.get_all_vpcs(filters={"isDefault": "true"})
|
||||
vpc.should.have.length_of(1)
|
||||
vpc[0].cidr_block.should.equal('172.31.0.0/16')
|
||||
vpc[0].cidr_block.should.equal("172.31.0.0/16")
|
||||
|
||||
|
||||
@mock_ec2_deprecated
|
||||
def test_vpc_state_available_filter():
|
||||
conn = boto.connect_vpc('the_key', 'the_secret')
|
||||
conn = boto.connect_vpc("the_key", "the_secret")
|
||||
vpc = conn.create_vpc("10.0.0.0/16")
|
||||
conn.create_vpc("10.1.0.0/16")
|
||||
conn.get_all_vpcs(filters={'state': 'available'}).should.have.length_of(3)
|
||||
conn.get_all_vpcs(filters={"state": "available"}).should.have.length_of(3)
|
||||
vpc.delete()
|
||||
conn.get_all_vpcs(filters={'state': 'available'}).should.have.length_of(2)
|
||||
conn.get_all_vpcs(filters={"state": "available"}).should.have.length_of(2)
|
||||
|
||||
|
||||
@mock_ec2_deprecated
|
||||
|
|
@ -116,8 +115,8 @@ def test_vpc_get_by_id():
|
|||
vpc2.id.should.be.within(vpc_ids)
|
||||
|
||||
with assert_raises(EC2ResponseError) as cm:
|
||||
conn.get_all_vpcs(vpc_ids=['vpc-does_not_exist'])
|
||||
cm.exception.code.should.equal('InvalidVpcID.NotFound')
|
||||
conn.get_all_vpcs(vpc_ids=["vpc-does_not_exist"])
|
||||
cm.exception.code.should.equal("InvalidVpcID.NotFound")
|
||||
cm.exception.status.should.equal(400)
|
||||
cm.exception.request_id.should_not.be.none
|
||||
|
||||
|
|
@ -129,7 +128,7 @@ def test_vpc_get_by_cidr_block():
|
|||
vpc2 = conn.create_vpc("10.0.0.0/16")
|
||||
conn.create_vpc("10.0.0.0/24")
|
||||
|
||||
vpcs = conn.get_all_vpcs(filters={'cidr': '10.0.0.0/16'})
|
||||
vpcs = conn.get_all_vpcs(filters={"cidr": "10.0.0.0/16"})
|
||||
vpcs.should.have.length_of(2)
|
||||
vpc_ids = tuple(map(lambda v: v.id, vpcs))
|
||||
vpc1.id.should.be.within(vpc_ids)
|
||||
|
|
@ -139,8 +138,7 @@ def test_vpc_get_by_cidr_block():
|
|||
@mock_ec2_deprecated
|
||||
def test_vpc_get_by_dhcp_options_id():
|
||||
conn = boto.connect_vpc()
|
||||
dhcp_options = conn.create_dhcp_options(
|
||||
SAMPLE_DOMAIN_NAME, SAMPLE_NAME_SERVERS)
|
||||
dhcp_options = conn.create_dhcp_options(SAMPLE_DOMAIN_NAME, SAMPLE_NAME_SERVERS)
|
||||
vpc1 = conn.create_vpc("10.0.0.0/16")
|
||||
vpc2 = conn.create_vpc("10.0.0.0/16")
|
||||
conn.create_vpc("10.0.0.0/24")
|
||||
|
|
@ -148,7 +146,7 @@ def test_vpc_get_by_dhcp_options_id():
|
|||
conn.associate_dhcp_options(dhcp_options.id, vpc1.id)
|
||||
conn.associate_dhcp_options(dhcp_options.id, vpc2.id)
|
||||
|
||||
vpcs = conn.get_all_vpcs(filters={'dhcp-options-id': dhcp_options.id})
|
||||
vpcs = conn.get_all_vpcs(filters={"dhcp-options-id": dhcp_options.id})
|
||||
vpcs.should.have.length_of(2)
|
||||
vpc_ids = tuple(map(lambda v: v.id, vpcs))
|
||||
vpc1.id.should.be.within(vpc_ids)
|
||||
|
|
@ -162,11 +160,11 @@ def test_vpc_get_by_tag():
|
|||
vpc2 = conn.create_vpc("10.0.0.0/16")
|
||||
vpc3 = conn.create_vpc("10.0.0.0/24")
|
||||
|
||||
vpc1.add_tag('Name', 'TestVPC')
|
||||
vpc2.add_tag('Name', 'TestVPC')
|
||||
vpc3.add_tag('Name', 'TestVPC2')
|
||||
vpc1.add_tag("Name", "TestVPC")
|
||||
vpc2.add_tag("Name", "TestVPC")
|
||||
vpc3.add_tag("Name", "TestVPC2")
|
||||
|
||||
vpcs = conn.get_all_vpcs(filters={'tag:Name': 'TestVPC'})
|
||||
vpcs = conn.get_all_vpcs(filters={"tag:Name": "TestVPC"})
|
||||
vpcs.should.have.length_of(2)
|
||||
vpc_ids = tuple(map(lambda v: v.id, vpcs))
|
||||
vpc1.id.should.be.within(vpc_ids)
|
||||
|
|
@ -180,13 +178,13 @@ def test_vpc_get_by_tag_key_superset():
|
|||
vpc2 = conn.create_vpc("10.0.0.0/16")
|
||||
vpc3 = conn.create_vpc("10.0.0.0/24")
|
||||
|
||||
vpc1.add_tag('Name', 'TestVPC')
|
||||
vpc1.add_tag('Key', 'TestVPC2')
|
||||
vpc2.add_tag('Name', 'TestVPC')
|
||||
vpc2.add_tag('Key', 'TestVPC2')
|
||||
vpc3.add_tag('Key', 'TestVPC2')
|
||||
vpc1.add_tag("Name", "TestVPC")
|
||||
vpc1.add_tag("Key", "TestVPC2")
|
||||
vpc2.add_tag("Name", "TestVPC")
|
||||
vpc2.add_tag("Key", "TestVPC2")
|
||||
vpc3.add_tag("Key", "TestVPC2")
|
||||
|
||||
vpcs = conn.get_all_vpcs(filters={'tag-key': 'Name'})
|
||||
vpcs = conn.get_all_vpcs(filters={"tag-key": "Name"})
|
||||
vpcs.should.have.length_of(2)
|
||||
vpc_ids = tuple(map(lambda v: v.id, vpcs))
|
||||
vpc1.id.should.be.within(vpc_ids)
|
||||
|
|
@ -200,13 +198,13 @@ def test_vpc_get_by_tag_key_subset():
|
|||
vpc2 = conn.create_vpc("10.0.0.0/16")
|
||||
vpc3 = conn.create_vpc("10.0.0.0/24")
|
||||
|
||||
vpc1.add_tag('Name', 'TestVPC')
|
||||
vpc1.add_tag('Key', 'TestVPC2')
|
||||
vpc2.add_tag('Name', 'TestVPC')
|
||||
vpc2.add_tag('Key', 'TestVPC2')
|
||||
vpc3.add_tag('Test', 'TestVPC2')
|
||||
vpc1.add_tag("Name", "TestVPC")
|
||||
vpc1.add_tag("Key", "TestVPC2")
|
||||
vpc2.add_tag("Name", "TestVPC")
|
||||
vpc2.add_tag("Key", "TestVPC2")
|
||||
vpc3.add_tag("Test", "TestVPC2")
|
||||
|
||||
vpcs = conn.get_all_vpcs(filters={'tag-key': ['Name', 'Key']})
|
||||
vpcs = conn.get_all_vpcs(filters={"tag-key": ["Name", "Key"]})
|
||||
vpcs.should.have.length_of(2)
|
||||
vpc_ids = tuple(map(lambda v: v.id, vpcs))
|
||||
vpc1.id.should.be.within(vpc_ids)
|
||||
|
|
@ -220,13 +218,13 @@ def test_vpc_get_by_tag_value_superset():
|
|||
vpc2 = conn.create_vpc("10.0.0.0/16")
|
||||
vpc3 = conn.create_vpc("10.0.0.0/24")
|
||||
|
||||
vpc1.add_tag('Name', 'TestVPC')
|
||||
vpc1.add_tag('Key', 'TestVPC2')
|
||||
vpc2.add_tag('Name', 'TestVPC')
|
||||
vpc2.add_tag('Key', 'TestVPC2')
|
||||
vpc3.add_tag('Key', 'TestVPC2')
|
||||
vpc1.add_tag("Name", "TestVPC")
|
||||
vpc1.add_tag("Key", "TestVPC2")
|
||||
vpc2.add_tag("Name", "TestVPC")
|
||||
vpc2.add_tag("Key", "TestVPC2")
|
||||
vpc3.add_tag("Key", "TestVPC2")
|
||||
|
||||
vpcs = conn.get_all_vpcs(filters={'tag-value': 'TestVPC'})
|
||||
vpcs = conn.get_all_vpcs(filters={"tag-value": "TestVPC"})
|
||||
vpcs.should.have.length_of(2)
|
||||
vpc_ids = tuple(map(lambda v: v.id, vpcs))
|
||||
vpc1.id.should.be.within(vpc_ids)
|
||||
|
|
@ -240,12 +238,12 @@ def test_vpc_get_by_tag_value_subset():
|
|||
vpc2 = conn.create_vpc("10.0.0.0/16")
|
||||
conn.create_vpc("10.0.0.0/24")
|
||||
|
||||
vpc1.add_tag('Name', 'TestVPC')
|
||||
vpc1.add_tag('Key', 'TestVPC2')
|
||||
vpc2.add_tag('Name', 'TestVPC')
|
||||
vpc2.add_tag('Key', 'TestVPC2')
|
||||
vpc1.add_tag("Name", "TestVPC")
|
||||
vpc1.add_tag("Key", "TestVPC2")
|
||||
vpc2.add_tag("Name", "TestVPC")
|
||||
vpc2.add_tag("Key", "TestVPC2")
|
||||
|
||||
vpcs = conn.get_all_vpcs(filters={'tag-value': ['TestVPC', 'TestVPC2']})
|
||||
vpcs = conn.get_all_vpcs(filters={"tag-value": ["TestVPC", "TestVPC2"]})
|
||||
vpcs.should.have.length_of(2)
|
||||
vpc_ids = tuple(map(lambda v: v.id, vpcs))
|
||||
vpc1.id.should.be.within(vpc_ids)
|
||||
|
|
@ -254,117 +252,116 @@ def test_vpc_get_by_tag_value_subset():
|
|||
|
||||
@mock_ec2
|
||||
def test_default_vpc():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
|
||||
# Create the default VPC
|
||||
default_vpc = list(ec2.vpcs.all())[0]
|
||||
default_vpc.cidr_block.should.equal('172.31.0.0/16')
|
||||
default_vpc.instance_tenancy.should.equal('default')
|
||||
default_vpc.cidr_block.should.equal("172.31.0.0/16")
|
||||
default_vpc.instance_tenancy.should.equal("default")
|
||||
default_vpc.reload()
|
||||
default_vpc.is_default.should.be.ok
|
||||
|
||||
# Test default values for VPC attributes
|
||||
response = default_vpc.describe_attribute(Attribute='enableDnsSupport')
|
||||
attr = response.get('EnableDnsSupport')
|
||||
attr.get('Value').should.be.ok
|
||||
response = default_vpc.describe_attribute(Attribute="enableDnsSupport")
|
||||
attr = response.get("EnableDnsSupport")
|
||||
attr.get("Value").should.be.ok
|
||||
|
||||
response = default_vpc.describe_attribute(Attribute='enableDnsHostnames')
|
||||
attr = response.get('EnableDnsHostnames')
|
||||
attr.get('Value').should.be.ok
|
||||
response = default_vpc.describe_attribute(Attribute="enableDnsHostnames")
|
||||
attr = response.get("EnableDnsHostnames")
|
||||
attr.get("Value").should.be.ok
|
||||
|
||||
|
||||
@mock_ec2
|
||||
def test_non_default_vpc():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
|
||||
# Create the default VPC - this already exists when backend instantiated!
|
||||
#ec2.create_vpc(CidrBlock='172.31.0.0/16')
|
||||
# ec2.create_vpc(CidrBlock='172.31.0.0/16')
|
||||
|
||||
# Create the non default VPC
|
||||
vpc = ec2.create_vpc(CidrBlock='10.0.0.0/16')
|
||||
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
||||
vpc.reload()
|
||||
vpc.is_default.shouldnt.be.ok
|
||||
|
||||
# Test default instance_tenancy
|
||||
vpc.instance_tenancy.should.equal('default')
|
||||
vpc.instance_tenancy.should.equal("default")
|
||||
|
||||
# Test default values for VPC attributes
|
||||
response = vpc.describe_attribute(Attribute='enableDnsSupport')
|
||||
attr = response.get('EnableDnsSupport')
|
||||
attr.get('Value').should.be.ok
|
||||
response = vpc.describe_attribute(Attribute="enableDnsSupport")
|
||||
attr = response.get("EnableDnsSupport")
|
||||
attr.get("Value").should.be.ok
|
||||
|
||||
response = vpc.describe_attribute(Attribute='enableDnsHostnames')
|
||||
attr = response.get('EnableDnsHostnames')
|
||||
attr.get('Value').shouldnt.be.ok
|
||||
response = vpc.describe_attribute(Attribute="enableDnsHostnames")
|
||||
attr = response.get("EnableDnsHostnames")
|
||||
attr.get("Value").shouldnt.be.ok
|
||||
|
||||
# Check Primary CIDR Block Associations
|
||||
cidr_block_association_set = next(iter(vpc.cidr_block_association_set), None)
|
||||
cidr_block_association_set['CidrBlockState']['State'].should.equal('associated')
|
||||
cidr_block_association_set['CidrBlock'].should.equal(vpc.cidr_block)
|
||||
cidr_block_association_set['AssociationId'].should.contain('vpc-cidr-assoc')
|
||||
cidr_block_association_set["CidrBlockState"]["State"].should.equal("associated")
|
||||
cidr_block_association_set["CidrBlock"].should.equal(vpc.cidr_block)
|
||||
cidr_block_association_set["AssociationId"].should.contain("vpc-cidr-assoc")
|
||||
|
||||
|
||||
@mock_ec2
|
||||
def test_vpc_dedicated_tenancy():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
|
||||
# Create the default VPC
|
||||
ec2.create_vpc(CidrBlock='172.31.0.0/16')
|
||||
ec2.create_vpc(CidrBlock="172.31.0.0/16")
|
||||
|
||||
# Create the non default VPC
|
||||
vpc = ec2.create_vpc(CidrBlock='10.0.0.0/16', InstanceTenancy='dedicated')
|
||||
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16", InstanceTenancy="dedicated")
|
||||
vpc.reload()
|
||||
vpc.is_default.shouldnt.be.ok
|
||||
|
||||
vpc.instance_tenancy.should.equal('dedicated')
|
||||
vpc.instance_tenancy.should.equal("dedicated")
|
||||
|
||||
|
||||
@mock_ec2
|
||||
def test_vpc_modify_enable_dns_support():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
|
||||
# Create the default VPC
|
||||
ec2.create_vpc(CidrBlock='172.31.0.0/16')
|
||||
ec2.create_vpc(CidrBlock="172.31.0.0/16")
|
||||
|
||||
vpc = ec2.create_vpc(CidrBlock='10.0.0.0/16')
|
||||
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
||||
|
||||
# Test default values for VPC attributes
|
||||
response = vpc.describe_attribute(Attribute='enableDnsSupport')
|
||||
attr = response.get('EnableDnsSupport')
|
||||
attr.get('Value').should.be.ok
|
||||
response = vpc.describe_attribute(Attribute="enableDnsSupport")
|
||||
attr = response.get("EnableDnsSupport")
|
||||
attr.get("Value").should.be.ok
|
||||
|
||||
vpc.modify_attribute(EnableDnsSupport={'Value': False})
|
||||
vpc.modify_attribute(EnableDnsSupport={"Value": False})
|
||||
|
||||
response = vpc.describe_attribute(Attribute='enableDnsSupport')
|
||||
attr = response.get('EnableDnsSupport')
|
||||
attr.get('Value').shouldnt.be.ok
|
||||
response = vpc.describe_attribute(Attribute="enableDnsSupport")
|
||||
attr = response.get("EnableDnsSupport")
|
||||
attr.get("Value").shouldnt.be.ok
|
||||
|
||||
|
||||
@mock_ec2
|
||||
def test_vpc_modify_enable_dns_hostnames():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
|
||||
# Create the default VPC
|
||||
ec2.create_vpc(CidrBlock='172.31.0.0/16')
|
||||
ec2.create_vpc(CidrBlock="172.31.0.0/16")
|
||||
|
||||
vpc = ec2.create_vpc(CidrBlock='10.0.0.0/16')
|
||||
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
||||
# Test default values for VPC attributes
|
||||
response = vpc.describe_attribute(Attribute='enableDnsHostnames')
|
||||
attr = response.get('EnableDnsHostnames')
|
||||
attr.get('Value').shouldnt.be.ok
|
||||
response = vpc.describe_attribute(Attribute="enableDnsHostnames")
|
||||
attr = response.get("EnableDnsHostnames")
|
||||
attr.get("Value").shouldnt.be.ok
|
||||
|
||||
vpc.modify_attribute(EnableDnsHostnames={'Value': True})
|
||||
vpc.modify_attribute(EnableDnsHostnames={"Value": True})
|
||||
|
||||
response = vpc.describe_attribute(Attribute='enableDnsHostnames')
|
||||
attr = response.get('EnableDnsHostnames')
|
||||
attr.get('Value').should.be.ok
|
||||
response = vpc.describe_attribute(Attribute="enableDnsHostnames")
|
||||
attr = response.get("EnableDnsHostnames")
|
||||
attr.get("Value").should.be.ok
|
||||
|
||||
|
||||
@mock_ec2_deprecated
|
||||
def test_vpc_associate_dhcp_options():
|
||||
conn = boto.connect_vpc()
|
||||
dhcp_options = conn.create_dhcp_options(
|
||||
SAMPLE_DOMAIN_NAME, SAMPLE_NAME_SERVERS)
|
||||
dhcp_options = conn.create_dhcp_options(SAMPLE_DOMAIN_NAME, SAMPLE_NAME_SERVERS)
|
||||
vpc = conn.create_vpc("10.0.0.0/16")
|
||||
|
||||
conn.associate_dhcp_options(dhcp_options.id, vpc.id)
|
||||
|
|
@ -375,117 +372,206 @@ def test_vpc_associate_dhcp_options():
|
|||
|
||||
@mock_ec2
|
||||
def test_associate_vpc_ipv4_cidr_block():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
|
||||
vpc = ec2.create_vpc(CidrBlock='10.10.42.0/24')
|
||||
vpc = ec2.create_vpc(CidrBlock="10.10.42.0/24")
|
||||
|
||||
# Associate/Extend vpc CIDR range up to 5 ciders
|
||||
for i in range(43, 47):
|
||||
response = ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc.id, CidrBlock='10.10.{}.0/24'.format(i))
|
||||
response['CidrBlockAssociation']['CidrBlockState']['State'].should.equal('associating')
|
||||
response['CidrBlockAssociation']['CidrBlock'].should.equal('10.10.{}.0/24'.format(i))
|
||||
response['CidrBlockAssociation']['AssociationId'].should.contain('vpc-cidr-assoc')
|
||||
response = ec2.meta.client.associate_vpc_cidr_block(
|
||||
VpcId=vpc.id, CidrBlock="10.10.{}.0/24".format(i)
|
||||
)
|
||||
response["CidrBlockAssociation"]["CidrBlockState"]["State"].should.equal(
|
||||
"associating"
|
||||
)
|
||||
response["CidrBlockAssociation"]["CidrBlock"].should.equal(
|
||||
"10.10.{}.0/24".format(i)
|
||||
)
|
||||
response["CidrBlockAssociation"]["AssociationId"].should.contain(
|
||||
"vpc-cidr-assoc"
|
||||
)
|
||||
|
||||
# Check all associations exist
|
||||
vpc = ec2.Vpc(vpc.id)
|
||||
vpc.cidr_block_association_set.should.have.length_of(5)
|
||||
vpc.cidr_block_association_set[2]['CidrBlockState']['State'].should.equal('associated')
|
||||
vpc.cidr_block_association_set[4]['CidrBlockState']['State'].should.equal('associated')
|
||||
vpc.cidr_block_association_set[2]["CidrBlockState"]["State"].should.equal(
|
||||
"associated"
|
||||
)
|
||||
vpc.cidr_block_association_set[4]["CidrBlockState"]["State"].should.equal(
|
||||
"associated"
|
||||
)
|
||||
|
||||
# Check error on adding 6th association.
|
||||
with assert_raises(ClientError) as ex:
|
||||
response = ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc.id, CidrBlock='10.10.50.0/22')
|
||||
response = ec2.meta.client.associate_vpc_cidr_block(
|
||||
VpcId=vpc.id, CidrBlock="10.10.50.0/22"
|
||||
)
|
||||
str(ex.exception).should.equal(
|
||||
"An error occurred (CidrLimitExceeded) when calling the AssociateVpcCidrBlock "
|
||||
"operation: This network '{}' has met its maximum number of allowed CIDRs: 5".format(vpc.id))
|
||||
"operation: This network '{}' has met its maximum number of allowed CIDRs: 5".format(
|
||||
vpc.id
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
@mock_ec2
|
||||
def test_disassociate_vpc_ipv4_cidr_block():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
|
||||
vpc = ec2.create_vpc(CidrBlock='10.10.42.0/24')
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc.id, CidrBlock='10.10.43.0/24')
|
||||
vpc = ec2.create_vpc(CidrBlock="10.10.42.0/24")
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc.id, CidrBlock="10.10.43.0/24")
|
||||
|
||||
# Remove an extended cidr block
|
||||
vpc = ec2.Vpc(vpc.id)
|
||||
non_default_assoc_cidr_block = next(iter([x for x in vpc.cidr_block_association_set if vpc.cidr_block != x['CidrBlock']]), None)
|
||||
response = ec2.meta.client.disassociate_vpc_cidr_block(AssociationId=non_default_assoc_cidr_block['AssociationId'])
|
||||
response['CidrBlockAssociation']['CidrBlockState']['State'].should.equal('disassociating')
|
||||
response['CidrBlockAssociation']['CidrBlock'].should.equal(non_default_assoc_cidr_block['CidrBlock'])
|
||||
response['CidrBlockAssociation']['AssociationId'].should.equal(non_default_assoc_cidr_block['AssociationId'])
|
||||
non_default_assoc_cidr_block = next(
|
||||
iter(
|
||||
[
|
||||
x
|
||||
for x in vpc.cidr_block_association_set
|
||||
if vpc.cidr_block != x["CidrBlock"]
|
||||
]
|
||||
),
|
||||
None,
|
||||
)
|
||||
response = ec2.meta.client.disassociate_vpc_cidr_block(
|
||||
AssociationId=non_default_assoc_cidr_block["AssociationId"]
|
||||
)
|
||||
response["CidrBlockAssociation"]["CidrBlockState"]["State"].should.equal(
|
||||
"disassociating"
|
||||
)
|
||||
response["CidrBlockAssociation"]["CidrBlock"].should.equal(
|
||||
non_default_assoc_cidr_block["CidrBlock"]
|
||||
)
|
||||
response["CidrBlockAssociation"]["AssociationId"].should.equal(
|
||||
non_default_assoc_cidr_block["AssociationId"]
|
||||
)
|
||||
|
||||
# Error attempting to delete a non-existent CIDR_BLOCK association
|
||||
with assert_raises(ClientError) as ex:
|
||||
response = ec2.meta.client.disassociate_vpc_cidr_block(AssociationId='vpc-cidr-assoc-BORING123')
|
||||
response = ec2.meta.client.disassociate_vpc_cidr_block(
|
||||
AssociationId="vpc-cidr-assoc-BORING123"
|
||||
)
|
||||
str(ex.exception).should.equal(
|
||||
"An error occurred (InvalidVpcCidrBlockAssociationIdError.NotFound) when calling the "
|
||||
"DisassociateVpcCidrBlock operation: The vpc CIDR block association ID "
|
||||
"'vpc-cidr-assoc-BORING123' does not exist")
|
||||
"'vpc-cidr-assoc-BORING123' does not exist"
|
||||
)
|
||||
|
||||
# Error attempting to delete Primary CIDR BLOCK association
|
||||
vpc_base_cidr_assoc_id = next(iter([x for x in vpc.cidr_block_association_set
|
||||
if vpc.cidr_block == x['CidrBlock']]), {})['AssociationId']
|
||||
vpc_base_cidr_assoc_id = next(
|
||||
iter(
|
||||
[
|
||||
x
|
||||
for x in vpc.cidr_block_association_set
|
||||
if vpc.cidr_block == x["CidrBlock"]
|
||||
]
|
||||
),
|
||||
{},
|
||||
)["AssociationId"]
|
||||
|
||||
with assert_raises(ClientError) as ex:
|
||||
response = ec2.meta.client.disassociate_vpc_cidr_block(AssociationId=vpc_base_cidr_assoc_id)
|
||||
response = ec2.meta.client.disassociate_vpc_cidr_block(
|
||||
AssociationId=vpc_base_cidr_assoc_id
|
||||
)
|
||||
str(ex.exception).should.equal(
|
||||
"An error occurred (OperationNotPermitted) when calling the DisassociateVpcCidrBlock operation: "
|
||||
"The vpc CIDR block with association ID {} may not be disassociated. It is the primary "
|
||||
"IPv4 CIDR block of the VPC".format(vpc_base_cidr_assoc_id))
|
||||
"IPv4 CIDR block of the VPC".format(vpc_base_cidr_assoc_id)
|
||||
)
|
||||
|
||||
|
||||
@mock_ec2
|
||||
def test_cidr_block_association_filters():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
vpc1 = ec2.create_vpc(CidrBlock='10.90.0.0/16')
|
||||
vpc2 = ec2.create_vpc(CidrBlock='10.91.0.0/16')
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc2.id, CidrBlock='10.10.0.0/19')
|
||||
vpc3 = ec2.create_vpc(CidrBlock='10.92.0.0/24')
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc3.id, CidrBlock='10.92.1.0/24')
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc3.id, CidrBlock='10.92.2.0/24')
|
||||
vpc3_assoc_response = ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc3.id, CidrBlock='10.92.3.0/24')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
vpc1 = ec2.create_vpc(CidrBlock="10.90.0.0/16")
|
||||
vpc2 = ec2.create_vpc(CidrBlock="10.91.0.0/16")
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc2.id, CidrBlock="10.10.0.0/19")
|
||||
vpc3 = ec2.create_vpc(CidrBlock="10.92.0.0/24")
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc3.id, CidrBlock="10.92.1.0/24")
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc3.id, CidrBlock="10.92.2.0/24")
|
||||
vpc3_assoc_response = ec2.meta.client.associate_vpc_cidr_block(
|
||||
VpcId=vpc3.id, CidrBlock="10.92.3.0/24"
|
||||
)
|
||||
|
||||
# Test filters for a cidr-block in all VPCs cidr-block-associations
|
||||
filtered_vpcs = list(ec2.vpcs.filter(Filters=[{'Name': 'cidr-block-association.cidr-block',
|
||||
'Values': ['10.10.0.0/19']}]))
|
||||
filtered_vpcs = list(
|
||||
ec2.vpcs.filter(
|
||||
Filters=[
|
||||
{
|
||||
"Name": "cidr-block-association.cidr-block",
|
||||
"Values": ["10.10.0.0/19"],
|
||||
}
|
||||
]
|
||||
)
|
||||
)
|
||||
filtered_vpcs.should.be.length_of(1)
|
||||
filtered_vpcs[0].id.should.equal(vpc2.id)
|
||||
|
||||
# Test filter for association id in VPCs
|
||||
association_id = vpc3_assoc_response['CidrBlockAssociation']['AssociationId']
|
||||
filtered_vpcs = list(ec2.vpcs.filter(Filters=[{'Name': 'cidr-block-association.association-id',
|
||||
'Values': [association_id]}]))
|
||||
association_id = vpc3_assoc_response["CidrBlockAssociation"]["AssociationId"]
|
||||
filtered_vpcs = list(
|
||||
ec2.vpcs.filter(
|
||||
Filters=[
|
||||
{
|
||||
"Name": "cidr-block-association.association-id",
|
||||
"Values": [association_id],
|
||||
}
|
||||
]
|
||||
)
|
||||
)
|
||||
filtered_vpcs.should.be.length_of(1)
|
||||
filtered_vpcs[0].id.should.equal(vpc3.id)
|
||||
|
||||
# Test filter for association state in VPC - this will never show anything in this test
|
||||
filtered_vpcs = list(ec2.vpcs.filter(Filters=[{'Name': 'cidr-block-association.association-id',
|
||||
'Values': ['failing']}]))
|
||||
filtered_vpcs = list(
|
||||
ec2.vpcs.filter(
|
||||
Filters=[
|
||||
{"Name": "cidr-block-association.association-id", "Values": ["failing"]}
|
||||
]
|
||||
)
|
||||
)
|
||||
filtered_vpcs.should.be.length_of(0)
|
||||
|
||||
|
||||
@mock_ec2
|
||||
def test_vpc_associate_ipv6_cidr_block():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
|
||||
# Test create VPC with IPV6 cidr range
|
||||
vpc = ec2.create_vpc(CidrBlock='10.10.42.0/24', AmazonProvidedIpv6CidrBlock=True)
|
||||
ipv6_cidr_block_association_set = next(iter(vpc.ipv6_cidr_block_association_set), None)
|
||||
ipv6_cidr_block_association_set['Ipv6CidrBlockState']['State'].should.equal('associated')
|
||||
ipv6_cidr_block_association_set['Ipv6CidrBlock'].should.contain('::/56')
|
||||
ipv6_cidr_block_association_set['AssociationId'].should.contain('vpc-cidr-assoc')
|
||||
vpc = ec2.create_vpc(CidrBlock="10.10.42.0/24", AmazonProvidedIpv6CidrBlock=True)
|
||||
ipv6_cidr_block_association_set = next(
|
||||
iter(vpc.ipv6_cidr_block_association_set), None
|
||||
)
|
||||
ipv6_cidr_block_association_set["Ipv6CidrBlockState"]["State"].should.equal(
|
||||
"associated"
|
||||
)
|
||||
ipv6_cidr_block_association_set["Ipv6CidrBlock"].should.contain("::/56")
|
||||
ipv6_cidr_block_association_set["AssociationId"].should.contain("vpc-cidr-assoc")
|
||||
|
||||
# Test Fail on adding 2nd IPV6 association - AWS only allows 1 at this time!
|
||||
with assert_raises(ClientError) as ex:
|
||||
response = ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc.id, AmazonProvidedIpv6CidrBlock=True)
|
||||
response = ec2.meta.client.associate_vpc_cidr_block(
|
||||
VpcId=vpc.id, AmazonProvidedIpv6CidrBlock=True
|
||||
)
|
||||
str(ex.exception).should.equal(
|
||||
"An error occurred (CidrLimitExceeded) when calling the AssociateVpcCidrBlock "
|
||||
"operation: This network '{}' has met its maximum number of allowed CIDRs: 1".format(vpc.id))
|
||||
"operation: This network '{}' has met its maximum number of allowed CIDRs: 1".format(
|
||||
vpc.id
|
||||
)
|
||||
)
|
||||
|
||||
# Test associate ipv6 cidr block after vpc created
|
||||
vpc = ec2.create_vpc(CidrBlock='10.10.50.0/24')
|
||||
response = ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc.id, AmazonProvidedIpv6CidrBlock=True)
|
||||
response['Ipv6CidrBlockAssociation']['Ipv6CidrBlockState']['State'].should.equal('associating')
|
||||
response['Ipv6CidrBlockAssociation']['Ipv6CidrBlock'].should.contain('::/56')
|
||||
response['Ipv6CidrBlockAssociation']['AssociationId'].should.contain('vpc-cidr-assoc-')
|
||||
vpc = ec2.create_vpc(CidrBlock="10.10.50.0/24")
|
||||
response = ec2.meta.client.associate_vpc_cidr_block(
|
||||
VpcId=vpc.id, AmazonProvidedIpv6CidrBlock=True
|
||||
)
|
||||
response["Ipv6CidrBlockAssociation"]["Ipv6CidrBlockState"]["State"].should.equal(
|
||||
"associating"
|
||||
)
|
||||
response["Ipv6CidrBlockAssociation"]["Ipv6CidrBlock"].should.contain("::/56")
|
||||
response["Ipv6CidrBlockAssociation"]["AssociationId"].should.contain(
|
||||
"vpc-cidr-assoc-"
|
||||
)
|
||||
|
||||
# Check on describe vpc that has ipv6 cidr block association
|
||||
vpc = ec2.Vpc(vpc.id)
|
||||
|
|
@ -494,72 +580,101 @@ def test_vpc_associate_ipv6_cidr_block():
|
|||
|
||||
@mock_ec2
|
||||
def test_vpc_disassociate_ipv6_cidr_block():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
|
||||
# Test create VPC with IPV6 cidr range
|
||||
vpc = ec2.create_vpc(CidrBlock='10.10.42.0/24', AmazonProvidedIpv6CidrBlock=True)
|
||||
vpc = ec2.create_vpc(CidrBlock="10.10.42.0/24", AmazonProvidedIpv6CidrBlock=True)
|
||||
# Test disassociating the only IPV6
|
||||
assoc_id = vpc.ipv6_cidr_block_association_set[0]['AssociationId']
|
||||
assoc_id = vpc.ipv6_cidr_block_association_set[0]["AssociationId"]
|
||||
response = ec2.meta.client.disassociate_vpc_cidr_block(AssociationId=assoc_id)
|
||||
response['Ipv6CidrBlockAssociation']['Ipv6CidrBlockState']['State'].should.equal('disassociating')
|
||||
response['Ipv6CidrBlockAssociation']['Ipv6CidrBlock'].should.contain('::/56')
|
||||
response['Ipv6CidrBlockAssociation']['AssociationId'].should.equal(assoc_id)
|
||||
response["Ipv6CidrBlockAssociation"]["Ipv6CidrBlockState"]["State"].should.equal(
|
||||
"disassociating"
|
||||
)
|
||||
response["Ipv6CidrBlockAssociation"]["Ipv6CidrBlock"].should.contain("::/56")
|
||||
response["Ipv6CidrBlockAssociation"]["AssociationId"].should.equal(assoc_id)
|
||||
|
||||
|
||||
@mock_ec2
|
||||
def test_ipv6_cidr_block_association_filters():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
vpc1 = ec2.create_vpc(CidrBlock='10.90.0.0/16')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
vpc1 = ec2.create_vpc(CidrBlock="10.90.0.0/16")
|
||||
|
||||
vpc2 = ec2.create_vpc(CidrBlock='10.91.0.0/16', AmazonProvidedIpv6CidrBlock=True)
|
||||
vpc2_assoc_ipv6_assoc_id = vpc2.ipv6_cidr_block_association_set[0]['AssociationId']
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc2.id, CidrBlock='10.10.0.0/19')
|
||||
vpc2 = ec2.create_vpc(CidrBlock="10.91.0.0/16", AmazonProvidedIpv6CidrBlock=True)
|
||||
vpc2_assoc_ipv6_assoc_id = vpc2.ipv6_cidr_block_association_set[0]["AssociationId"]
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc2.id, CidrBlock="10.10.0.0/19")
|
||||
|
||||
vpc3 = ec2.create_vpc(CidrBlock='10.92.0.0/24')
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc3.id, CidrBlock='10.92.1.0/24')
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc3.id, CidrBlock='10.92.2.0/24')
|
||||
response = ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc3.id, AmazonProvidedIpv6CidrBlock=True)
|
||||
vpc3_ipv6_cidr_block = response['Ipv6CidrBlockAssociation']['Ipv6CidrBlock']
|
||||
vpc3 = ec2.create_vpc(CidrBlock="10.92.0.0/24")
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc3.id, CidrBlock="10.92.1.0/24")
|
||||
ec2.meta.client.associate_vpc_cidr_block(VpcId=vpc3.id, CidrBlock="10.92.2.0/24")
|
||||
response = ec2.meta.client.associate_vpc_cidr_block(
|
||||
VpcId=vpc3.id, AmazonProvidedIpv6CidrBlock=True
|
||||
)
|
||||
vpc3_ipv6_cidr_block = response["Ipv6CidrBlockAssociation"]["Ipv6CidrBlock"]
|
||||
|
||||
vpc4 = ec2.create_vpc(CidrBlock='10.95.0.0/16') # Here for its looks
|
||||
vpc4 = ec2.create_vpc(CidrBlock="10.95.0.0/16") # Here for its looks
|
||||
|
||||
# Test filters for an ipv6 cidr-block in all VPCs cidr-block-associations
|
||||
filtered_vpcs = list(ec2.vpcs.filter(Filters=[{'Name': 'ipv6-cidr-block-association.ipv6-cidr-block',
|
||||
'Values': [vpc3_ipv6_cidr_block]}]))
|
||||
filtered_vpcs = list(
|
||||
ec2.vpcs.filter(
|
||||
Filters=[
|
||||
{
|
||||
"Name": "ipv6-cidr-block-association.ipv6-cidr-block",
|
||||
"Values": [vpc3_ipv6_cidr_block],
|
||||
}
|
||||
]
|
||||
)
|
||||
)
|
||||
filtered_vpcs.should.be.length_of(1)
|
||||
filtered_vpcs[0].id.should.equal(vpc3.id)
|
||||
|
||||
# Test filter for association id in VPCs
|
||||
filtered_vpcs = list(ec2.vpcs.filter(Filters=[{'Name': 'ipv6-cidr-block-association.association-id',
|
||||
'Values': [vpc2_assoc_ipv6_assoc_id]}]))
|
||||
filtered_vpcs = list(
|
||||
ec2.vpcs.filter(
|
||||
Filters=[
|
||||
{
|
||||
"Name": "ipv6-cidr-block-association.association-id",
|
||||
"Values": [vpc2_assoc_ipv6_assoc_id],
|
||||
}
|
||||
]
|
||||
)
|
||||
)
|
||||
filtered_vpcs.should.be.length_of(1)
|
||||
filtered_vpcs[0].id.should.equal(vpc2.id)
|
||||
|
||||
# Test filter for association state in VPC - this will never show anything in this test
|
||||
filtered_vpcs = list(ec2.vpcs.filter(Filters=[{'Name': 'ipv6-cidr-block-association.state',
|
||||
'Values': ['associated']}]))
|
||||
filtered_vpcs.should.be.length_of(2) # 2 of 4 VPCs
|
||||
filtered_vpcs = list(
|
||||
ec2.vpcs.filter(
|
||||
Filters=[
|
||||
{"Name": "ipv6-cidr-block-association.state", "Values": ["associated"]}
|
||||
]
|
||||
)
|
||||
)
|
||||
filtered_vpcs.should.be.length_of(2) # 2 of 4 VPCs
|
||||
|
||||
|
||||
@mock_ec2
|
||||
def test_create_vpc_with_invalid_cidr_block_parameter():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
|
||||
vpc_cidr_block = '1000.1.0.0/20'
|
||||
vpc_cidr_block = "1000.1.0.0/20"
|
||||
with assert_raises(ClientError) as ex:
|
||||
vpc = ec2.create_vpc(CidrBlock=vpc_cidr_block)
|
||||
str(ex.exception).should.equal(
|
||||
"An error occurred (InvalidParameterValue) when calling the CreateVpc "
|
||||
"operation: Value ({}) for parameter cidrBlock is invalid. This is not a valid CIDR block.".format(vpc_cidr_block))
|
||||
"operation: Value ({}) for parameter cidrBlock is invalid. This is not a valid CIDR block.".format(
|
||||
vpc_cidr_block
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
@mock_ec2
|
||||
def test_create_vpc_with_invalid_cidr_range():
|
||||
ec2 = boto3.resource('ec2', region_name='us-west-1')
|
||||
ec2 = boto3.resource("ec2", region_name="us-west-1")
|
||||
|
||||
vpc_cidr_block = '10.1.0.0/29'
|
||||
vpc_cidr_block = "10.1.0.0/29"
|
||||
with assert_raises(ClientError) as ex:
|
||||
vpc = ec2.create_vpc(CidrBlock=vpc_cidr_block)
|
||||
str(ex.exception).should.equal(
|
||||
"An error occurred (InvalidVpc.Range) when calling the CreateVpc "
|
||||
"operation: The CIDR '{}' is invalid.".format(vpc_cidr_block))
|
||||
"operation: The CIDR '{}' is invalid.".format(vpc_cidr_block)
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue