2020-10-06 05:54:49 +00:00
|
|
|
import pytest
|
2021-10-05 17:11:07 +00:00
|
|
|
import random
|
2014-09-08 23:50:18 +00:00
|
|
|
|
2016-05-07 22:19:47 +00:00
|
|
|
import boto3
|
2017-02-24 00:43:48 +00:00
|
|
|
from botocore.exceptions import ClientError
|
2021-10-18 19:44:29 +00:00
|
|
|
import sure # noqa # pylint: disable=unused-import
|
2013-02-22 04:13:01 +00:00
|
|
|
|
2022-01-18 15:18:57 +00:00
|
|
|
from moto import mock_ec2, settings
|
2021-11-11 11:50:51 +00:00
|
|
|
from moto.ec2.utils import random_private_ip
|
2021-11-23 22:59:35 +00:00
|
|
|
from tests import EXAMPLE_AMI_ID
|
2021-10-05 17:11:07 +00:00
|
|
|
from uuid import uuid4
|
2013-02-22 04:13:01 +00:00
|
|
|
|
|
|
|
|
2021-09-25 11:13:07 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_boto3():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(VpcId=vpc.id, CidrBlock="10.0.0.0/18")
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
ec2.create_network_interface(SubnetId=subnet.id, DryRun=True)
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(412)
|
|
|
|
ex.value.response["Error"]["Code"].should.equal("DryRunOperation")
|
|
|
|
ex.value.response["Error"]["Message"].should.equal(
|
|
|
|
"An error occurred (DryRunOperation) when calling the CreateNetworkInterface operation: Request would have succeeded, but DryRun flag is set"
|
|
|
|
)
|
|
|
|
|
|
|
|
eni_id = ec2.create_network_interface(SubnetId=subnet.id).id
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
my_enis = client.describe_network_interfaces(NetworkInterfaceIds=[eni_id])[
|
|
|
|
"NetworkInterfaces"
|
|
|
|
]
|
|
|
|
my_enis.should.have.length_of(1)
|
|
|
|
eni = my_enis[0]
|
2021-11-10 20:50:47 +00:00
|
|
|
eni["Groups"].should.have.length_of(1)
|
2021-09-25 11:13:07 +00:00
|
|
|
eni["PrivateIpAddresses"].should.have.length_of(1)
|
|
|
|
eni["PrivateIpAddresses"][0]["PrivateIpAddress"].startswith("10.").should.be.true
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.delete_network_interface(NetworkInterfaceId=eni_id, DryRun=True)
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(412)
|
|
|
|
ex.value.response["Error"]["Code"].should.equal("DryRunOperation")
|
|
|
|
ex.value.response["Error"]["Message"].should.equal(
|
|
|
|
"An error occurred (DryRunOperation) when calling the DeleteNetworkInterface operation: Request would have succeeded, but DryRun flag is set"
|
|
|
|
)
|
|
|
|
|
|
|
|
client.delete_network_interface(NetworkInterfaceId=eni_id)
|
|
|
|
|
|
|
|
all_enis = client.describe_network_interfaces()["NetworkInterfaces"]
|
2021-10-05 17:11:07 +00:00
|
|
|
[eni["NetworkInterfaceId"] for eni in all_enis].shouldnt.contain(eni_id)
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.describe_network_interfaces(NetworkInterfaceIds=[eni_id])
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
|
|
|
ex.value.response["ResponseMetadata"].should.have.key("RequestId")
|
|
|
|
ex.value.response["Error"]["Code"].should.equal(
|
|
|
|
"InvalidNetworkInterfaceID.NotFound"
|
|
|
|
)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.delete_network_interface(NetworkInterfaceId=eni_id)
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
|
|
|
ex.value.response["ResponseMetadata"].should.have.key("RequestId")
|
|
|
|
ex.value.response["Error"]["Code"].should.equal(
|
|
|
|
"InvalidNetworkInterfaceID.NotFound"
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_subnet_validation_boto3():
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.create_network_interface(SubnetId="subnet-abcd1234")
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
|
|
|
ex.value.response["ResponseMetadata"].should.have.key("RequestId")
|
|
|
|
ex.value.response["Error"]["Code"].should.equal("InvalidSubnetID.NotFound")
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_with_private_ip_boto3():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(VpcId=vpc.id, CidrBlock="10.0.0.0/18")
|
|
|
|
|
|
|
|
private_ip = "54.0.0.1"
|
2021-10-05 17:11:07 +00:00
|
|
|
eni = ec2.create_network_interface(SubnetId=subnet.id, PrivateIpAddress=private_ip)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
all_enis = client.describe_network_interfaces()["NetworkInterfaces"]
|
2021-10-05 17:11:07 +00:00
|
|
|
[eni["NetworkInterfaceId"] for eni in all_enis].should.contain(eni.id)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
my_enis = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])[
|
|
|
|
"NetworkInterfaces"
|
|
|
|
]
|
|
|
|
|
|
|
|
eni = my_enis[0]
|
2021-11-10 20:50:47 +00:00
|
|
|
eni["Groups"].should.have.length_of(1)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
eni["PrivateIpAddresses"].should.have.length_of(1)
|
|
|
|
eni["PrivateIpAddresses"][0]["PrivateIpAddress"].should.equal(private_ip)
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_with_groups_boto3():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(VpcId=vpc.id, CidrBlock="10.0.0.0/18")
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
sec_group1 = ec2.create_security_group(GroupName=str(uuid4()), Description="n/a")
|
|
|
|
sec_group2 = ec2.create_security_group(GroupName=str(uuid4()), Description="n/a")
|
|
|
|
my_eni = subnet.create_network_interface(Groups=[sec_group1.id, sec_group2.id])
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
all_enis = client.describe_network_interfaces()["NetworkInterfaces"]
|
2021-10-05 17:11:07 +00:00
|
|
|
[eni["NetworkInterfaceId"] for eni in all_enis].should.contain(my_eni.id)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
my_eni = [eni for eni in all_enis if eni["NetworkInterfaceId"] == my_eni.id][0]
|
|
|
|
my_eni["Groups"].should.have.length_of(2)
|
|
|
|
set([group["GroupId"] for group in my_eni["Groups"]]).should.equal(
|
2021-09-25 11:13:07 +00:00
|
|
|
set([sec_group1.id, sec_group2.id])
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-12-25 16:44:38 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_without_group():
|
|
|
|
# ENI should use the default SecurityGroup if not provided
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(VpcId=vpc.id, CidrBlock="10.0.0.0/18")
|
|
|
|
|
|
|
|
my_eni = subnet.create_network_interface()
|
|
|
|
|
|
|
|
all_enis = client.describe_network_interfaces()["NetworkInterfaces"]
|
|
|
|
[eni["NetworkInterfaceId"] for eni in all_enis].should.contain(my_eni.id)
|
|
|
|
|
|
|
|
my_eni = [eni for eni in all_enis if eni["NetworkInterfaceId"] == my_eni.id][0]
|
|
|
|
my_eni["Groups"].should.have.length_of(1)
|
|
|
|
my_eni["Groups"][0]["GroupName"].should.equal("default")
|
|
|
|
|
|
|
|
|
2021-09-25 11:13:07 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_modify_attribute_boto3():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(VpcId=vpc.id, CidrBlock="10.0.0.0/18")
|
2021-10-05 17:11:07 +00:00
|
|
|
sec_group1 = ec2.create_security_group(GroupName=str(uuid4()), Description="n/a")
|
|
|
|
sec_group2 = ec2.create_security_group(GroupName=str(uuid4()), Description="n/a")
|
2021-09-25 11:13:07 +00:00
|
|
|
eni_id = subnet.create_network_interface(Groups=[sec_group1.id]).id
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
my_eni = client.describe_network_interfaces(NetworkInterfaceIds=[eni_id])[
|
|
|
|
"NetworkInterfaces"
|
|
|
|
][0]
|
2021-09-25 11:13:07 +00:00
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
my_eni["Groups"].should.have.length_of(1)
|
|
|
|
my_eni["Groups"][0]["GroupId"].should.equal(sec_group1.id)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.modify_network_interface_attribute(
|
|
|
|
NetworkInterfaceId=eni_id, Groups=[sec_group2.id], DryRun=True
|
|
|
|
)
|
|
|
|
ex.value.response["Error"]["Code"].should.equal("DryRunOperation")
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(412)
|
|
|
|
ex.value.response["Error"]["Message"].should.equal(
|
|
|
|
"An error occurred (DryRunOperation) when calling the ModifyNetworkInterface operation: Request would have succeeded, but DryRun flag is set"
|
|
|
|
)
|
|
|
|
|
|
|
|
client.modify_network_interface_attribute(
|
|
|
|
NetworkInterfaceId=eni_id, Groups=[sec_group2.id]
|
|
|
|
)
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
my_eni = client.describe_network_interfaces(NetworkInterfaceIds=[eni_id])[
|
|
|
|
"NetworkInterfaces"
|
|
|
|
][0]
|
|
|
|
my_eni["Groups"].should.have.length_of(1)
|
|
|
|
my_eni["Groups"][0]["GroupId"].should.equal(sec_group2.id)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_filtering_boto3():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(VpcId=vpc.id, CidrBlock="10.0.0.0/18")
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
sec_group1 = ec2.create_security_group(GroupName=str(uuid4()), Description="n/a")
|
|
|
|
sec_group2 = ec2.create_security_group(GroupName=str(uuid4()), Description="n/a")
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
eni1 = subnet.create_network_interface(Groups=[sec_group1.id, sec_group2.id])
|
|
|
|
eni2 = subnet.create_network_interface(Groups=[sec_group1.id])
|
2021-10-05 17:11:07 +00:00
|
|
|
eni3 = subnet.create_network_interface(Description=str(uuid4()))
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
all_enis = client.describe_network_interfaces()["NetworkInterfaces"]
|
2021-10-05 17:11:07 +00:00
|
|
|
[eni["NetworkInterfaceId"] for eni in all_enis].should.contain(eni1.id)
|
|
|
|
[eni["NetworkInterfaceId"] for eni in all_enis].should.contain(eni2.id)
|
|
|
|
[eni["NetworkInterfaceId"] for eni in all_enis].should.contain(eni3.id)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
# Filter by NetworkInterfaceId
|
|
|
|
enis_by_id = client.describe_network_interfaces(NetworkInterfaceIds=[eni1.id])[
|
|
|
|
"NetworkInterfaces"
|
|
|
|
]
|
|
|
|
enis_by_id.should.have.length_of(1)
|
|
|
|
set([eni["NetworkInterfaceId"] for eni in enis_by_id]).should.equal(set([eni1.id]))
|
|
|
|
|
|
|
|
# Filter by ENI ID
|
|
|
|
enis_by_id = client.describe_network_interfaces(
|
|
|
|
Filters=[{"Name": "network-interface-id", "Values": [eni1.id]}]
|
|
|
|
)["NetworkInterfaces"]
|
|
|
|
enis_by_id.should.have.length_of(1)
|
|
|
|
set([eni["NetworkInterfaceId"] for eni in enis_by_id]).should.equal(set([eni1.id]))
|
|
|
|
|
|
|
|
# Filter by Security Group
|
|
|
|
enis_by_group = client.describe_network_interfaces(
|
|
|
|
Filters=[{"Name": "group-id", "Values": [sec_group1.id]}]
|
|
|
|
)["NetworkInterfaces"]
|
|
|
|
enis_by_group.should.have.length_of(2)
|
|
|
|
set([eni["NetworkInterfaceId"] for eni in enis_by_group]).should.equal(
|
|
|
|
set([eni1.id, eni2.id])
|
|
|
|
)
|
|
|
|
|
|
|
|
# Filter by ENI ID and Security Group
|
|
|
|
enis_by_group = client.describe_network_interfaces(
|
|
|
|
Filters=[
|
|
|
|
{"Name": "network-interface-id", "Values": [eni1.id]},
|
|
|
|
{"Name": "group-id", "Values": [sec_group1.id]},
|
|
|
|
]
|
|
|
|
)["NetworkInterfaces"]
|
|
|
|
enis_by_group.should.have.length_of(1)
|
|
|
|
set([eni["NetworkInterfaceId"] for eni in enis_by_group]).should.equal(
|
|
|
|
set([eni1.id])
|
|
|
|
)
|
|
|
|
|
|
|
|
# Filter by Description
|
|
|
|
enis_by_description = client.describe_network_interfaces(
|
|
|
|
Filters=[{"Name": "description", "Values": [eni3.description]}]
|
|
|
|
)["NetworkInterfaces"]
|
|
|
|
enis_by_description.should.have.length_of(1)
|
|
|
|
enis_by_description[0]["Description"].should.equal(eni3.description)
|
|
|
|
|
|
|
|
# Unsupported filter
|
|
|
|
if not settings.TEST_SERVER_MODE:
|
|
|
|
# ServerMode will just throw a generic 500
|
|
|
|
filters = [{"Name": "not-implemented-filter", "Values": ["foobar"]}]
|
|
|
|
client.describe_network_interfaces.when.called_with(
|
|
|
|
Filters=filters
|
|
|
|
).should.throw(NotImplementedError)
|
|
|
|
|
|
|
|
|
2016-05-07 22:19:47 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_get_by_tag_name():
|
2019-10-31 15:44:26 +00:00
|
|
|
ec2 = boto3.resource("ec2", region_name="us-west-2")
|
|
|
|
ec2_client = boto3.client("ec2", region_name="us-west-2")
|
2016-05-07 22:19:47 +00:00
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
2017-02-24 02:37:43 +00:00
|
|
|
subnet = ec2.create_subnet(
|
2019-10-31 15:44:26 +00:00
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/24", AvailabilityZone="us-west-2a"
|
|
|
|
)
|
2016-05-07 22:19:47 +00:00
|
|
|
|
2017-02-24 02:37:43 +00:00
|
|
|
eni1 = ec2.create_network_interface(
|
2019-10-31 15:44:26 +00:00
|
|
|
SubnetId=subnet.id, PrivateIpAddress="10.0.10.5"
|
|
|
|
)
|
2016-10-15 13:08:44 +00:00
|
|
|
|
2020-10-06 05:54:49 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
2019-10-31 15:44:26 +00:00
|
|
|
eni1.create_tags(Tags=[{"Key": "Name", "Value": "eni1"}], DryRun=True)
|
2020-10-06 06:04:09 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("DryRunOperation")
|
2021-09-07 16:10:01 +00:00
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(412)
|
2020-10-06 06:04:09 +00:00
|
|
|
ex.value.response["Error"]["Message"].should.equal(
|
2019-10-31 15:44:26 +00:00
|
|
|
"An error occurred (DryRunOperation) when calling the CreateTags operation: Request would have succeeded, but DryRun flag is set"
|
|
|
|
)
|
2016-10-15 13:08:44 +00:00
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
tag_value = str(uuid4())
|
|
|
|
eni1.create_tags(Tags=[{"Key": "Name", "Value": tag_value}])
|
2016-05-07 22:19:47 +00:00
|
|
|
|
|
|
|
# The status of the new interface should be 'available'
|
2019-10-31 15:44:26 +00:00
|
|
|
waiter = ec2_client.get_waiter("network_interface_available")
|
2016-05-07 22:19:47 +00:00
|
|
|
waiter.wait(NetworkInterfaceIds=[eni1.id])
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
filters = [{"Name": "tag:Name", "Values": [tag_value]}]
|
2016-05-07 22:19:47 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
|
|
|
enis.should.have.length_of(1)
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
filters = [{"Name": "tag:Name", "Values": ["wrong-name"]}]
|
2016-05-07 22:19:47 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
|
|
|
enis.should.have.length_of(0)
|
|
|
|
|
|
|
|
|
2017-03-22 13:33:19 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_get_by_availability_zone():
|
2019-10-31 15:44:26 +00:00
|
|
|
ec2 = boto3.resource("ec2", region_name="us-west-2")
|
|
|
|
ec2_client = boto3.client("ec2", region_name="us-west-2")
|
2017-03-22 13:33:19 +00:00
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
2017-03-22 13:33:19 +00:00
|
|
|
subnet1 = ec2.create_subnet(
|
2019-10-31 15:44:26 +00:00
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/24", AvailabilityZone="us-west-2a"
|
|
|
|
)
|
2017-03-22 13:33:19 +00:00
|
|
|
|
|
|
|
subnet2 = ec2.create_subnet(
|
2019-10-31 15:44:26 +00:00
|
|
|
VpcId=vpc.id, CidrBlock="10.0.1.0/24", AvailabilityZone="us-west-2b"
|
|
|
|
)
|
2017-03-22 13:33:19 +00:00
|
|
|
|
|
|
|
eni1 = ec2.create_network_interface(
|
2019-10-31 15:44:26 +00:00
|
|
|
SubnetId=subnet1.id, PrivateIpAddress="10.0.0.15"
|
|
|
|
)
|
2017-03-22 13:33:19 +00:00
|
|
|
|
|
|
|
eni2 = ec2.create_network_interface(
|
2019-10-31 15:44:26 +00:00
|
|
|
SubnetId=subnet2.id, PrivateIpAddress="10.0.1.15"
|
|
|
|
)
|
2017-03-22 13:33:19 +00:00
|
|
|
|
|
|
|
# The status of the new interface should be 'available'
|
2019-10-31 15:44:26 +00:00
|
|
|
waiter = ec2_client.get_waiter("network_interface_available")
|
2017-03-22 13:33:19 +00:00
|
|
|
waiter.wait(NetworkInterfaceIds=[eni1.id, eni2.id])
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
filters = [{"Name": "availability-zone", "Values": ["us-west-2a"]}]
|
2017-03-22 13:33:19 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
2021-10-05 17:11:07 +00:00
|
|
|
[eni.id for eni in enis].should.contain(eni1.id)
|
|
|
|
[eni.id for eni in enis].shouldnt.contain(eni2.id)
|
2017-03-22 13:33:19 +00:00
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
filters = [{"Name": "availability-zone", "Values": ["us-west-2c"]}]
|
2017-03-22 13:33:19 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
2021-10-05 17:11:07 +00:00
|
|
|
[eni.id for eni in enis].shouldnt.contain(eni1.id)
|
|
|
|
[eni.id for eni in enis].shouldnt.contain(eni2.id)
|
2017-03-22 13:33:19 +00:00
|
|
|
|
|
|
|
|
2016-05-07 22:19:47 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_get_by_private_ip():
|
2019-10-31 15:44:26 +00:00
|
|
|
ec2 = boto3.resource("ec2", region_name="us-west-2")
|
|
|
|
ec2_client = boto3.client("ec2", region_name="us-west-2")
|
2021-10-05 17:11:07 +00:00
|
|
|
random_ip = ".".join(map(str, (random.randint(0, 99) for _ in range(4))))
|
2016-05-07 22:19:47 +00:00
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
2017-02-24 02:37:43 +00:00
|
|
|
subnet = ec2.create_subnet(
|
2019-10-31 15:44:26 +00:00
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/24", AvailabilityZone="us-west-2a"
|
|
|
|
)
|
2016-05-07 22:19:47 +00:00
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
eni1 = ec2.create_network_interface(SubnetId=subnet.id, PrivateIpAddress=random_ip)
|
2016-05-07 22:19:47 +00:00
|
|
|
|
|
|
|
# The status of the new interface should be 'available'
|
2019-10-31 15:44:26 +00:00
|
|
|
waiter = ec2_client.get_waiter("network_interface_available")
|
2016-05-07 22:19:47 +00:00
|
|
|
waiter.wait(NetworkInterfaceIds=[eni1.id])
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
filters = [{"Name": "private-ip-address", "Values": [random_ip]}]
|
2016-05-07 22:19:47 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
|
|
|
enis.should.have.length_of(1)
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
filters = [{"Name": "private-ip-address", "Values": ["10.0.10.10"]}]
|
2016-05-07 22:19:47 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
|
|
|
enis.should.have.length_of(0)
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
filters = [{"Name": "addresses.private-ip-address", "Values": [random_ip]}]
|
2016-05-07 22:19:47 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
|
|
|
enis.should.have.length_of(1)
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
filters = [{"Name": "addresses.private-ip-address", "Values": ["10.0.10.10"]}]
|
2016-05-07 22:19:47 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
|
|
|
enis.should.have.length_of(0)
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_get_by_vpc_id():
|
2019-10-31 15:44:26 +00:00
|
|
|
ec2 = boto3.resource("ec2", region_name="us-west-2")
|
|
|
|
ec2_client = boto3.client("ec2", region_name="us-west-2")
|
2016-05-07 22:19:47 +00:00
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
2017-02-24 02:37:43 +00:00
|
|
|
subnet = ec2.create_subnet(
|
2019-10-31 15:44:26 +00:00
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/24", AvailabilityZone="us-west-2a"
|
|
|
|
)
|
2016-05-07 22:19:47 +00:00
|
|
|
|
2017-02-24 02:37:43 +00:00
|
|
|
eni1 = ec2.create_network_interface(
|
2019-10-31 15:44:26 +00:00
|
|
|
SubnetId=subnet.id, PrivateIpAddress="10.0.10.5"
|
|
|
|
)
|
2016-05-07 22:19:47 +00:00
|
|
|
|
|
|
|
# The status of the new interface should be 'available'
|
2019-10-31 15:44:26 +00:00
|
|
|
waiter = ec2_client.get_waiter("network_interface_available")
|
2016-05-07 22:19:47 +00:00
|
|
|
waiter.wait(NetworkInterfaceIds=[eni1.id])
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
filters = [{"Name": "vpc-id", "Values": [subnet.vpc_id]}]
|
2016-05-07 22:19:47 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
|
|
|
enis.should.have.length_of(1)
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
filters = [{"Name": "vpc-id", "Values": ["vpc-aaaa1111"]}]
|
2016-05-07 22:19:47 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
|
|
|
enis.should.have.length_of(0)
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_get_by_subnet_id():
|
2019-10-31 15:44:26 +00:00
|
|
|
ec2 = boto3.resource("ec2", region_name="us-west-2")
|
|
|
|
ec2_client = boto3.client("ec2", region_name="us-west-2")
|
2016-05-07 22:19:47 +00:00
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
2017-02-24 02:37:43 +00:00
|
|
|
subnet = ec2.create_subnet(
|
2019-10-31 15:44:26 +00:00
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/24", AvailabilityZone="us-west-2a"
|
|
|
|
)
|
2016-05-07 22:19:47 +00:00
|
|
|
|
2017-02-24 02:37:43 +00:00
|
|
|
eni1 = ec2.create_network_interface(
|
2019-10-31 15:44:26 +00:00
|
|
|
SubnetId=subnet.id, PrivateIpAddress="10.0.10.5"
|
|
|
|
)
|
2016-05-07 22:19:47 +00:00
|
|
|
|
|
|
|
# The status of the new interface should be 'available'
|
2019-10-31 15:44:26 +00:00
|
|
|
waiter = ec2_client.get_waiter("network_interface_available")
|
2016-05-07 22:19:47 +00:00
|
|
|
waiter.wait(NetworkInterfaceIds=[eni1.id])
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
filters = [{"Name": "subnet-id", "Values": [subnet.id]}]
|
2016-05-07 22:19:47 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
|
|
|
enis.should.have.length_of(1)
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
filters = [{"Name": "subnet-id", "Values": ["subnet-aaaa1111"]}]
|
2016-05-07 22:19:47 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
|
|
|
enis.should.have.length_of(0)
|
|
|
|
|
|
|
|
|
2019-07-14 22:01:37 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_get_by_description():
|
2019-10-31 15:44:26 +00:00
|
|
|
ec2 = boto3.resource("ec2", region_name="us-west-2")
|
|
|
|
ec2_client = boto3.client("ec2", region_name="us-west-2")
|
2019-07-14 22:01:37 +00:00
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
2019-07-14 22:01:37 +00:00
|
|
|
subnet = ec2.create_subnet(
|
2019-10-31 15:44:26 +00:00
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/24", AvailabilityZone="us-west-2a"
|
|
|
|
)
|
2019-07-14 22:01:37 +00:00
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
desc = str(uuid4())
|
2019-07-14 22:01:37 +00:00
|
|
|
eni1 = ec2.create_network_interface(
|
2021-10-05 17:11:07 +00:00
|
|
|
SubnetId=subnet.id, PrivateIpAddress="10.0.10.5", Description=desc
|
2019-10-31 15:44:26 +00:00
|
|
|
)
|
2019-07-14 22:01:37 +00:00
|
|
|
|
|
|
|
# The status of the new interface should be 'available'
|
2019-10-31 15:44:26 +00:00
|
|
|
waiter = ec2_client.get_waiter("network_interface_available")
|
2019-07-14 22:01:37 +00:00
|
|
|
waiter.wait(NetworkInterfaceIds=[eni1.id])
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
filters = [{"Name": "description", "Values": [eni1.description]}]
|
2019-07-14 22:01:37 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
|
|
|
enis.should.have.length_of(1)
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
filters = [{"Name": "description", "Values": ["bad description"]}]
|
2019-07-14 22:01:37 +00:00
|
|
|
enis = list(ec2.network_interfaces.filter(Filters=filters))
|
|
|
|
enis.should.have.length_of(0)
|
|
|
|
|
|
|
|
|
2021-11-23 22:59:35 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_get_by_attachment_instance_id():
|
|
|
|
ec2_resource = boto3.resource("ec2", region_name="us-west-2")
|
|
|
|
ec2_client = boto3.client("ec2", region_name="us-west-2")
|
|
|
|
|
|
|
|
vpc = ec2_resource.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2_resource.create_subnet(
|
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/24", AvailabilityZone="us-west-2a"
|
|
|
|
)
|
|
|
|
|
|
|
|
security_group1 = ec2_resource.create_security_group(
|
|
|
|
GroupName=str(uuid4()), Description="desc"
|
|
|
|
)
|
|
|
|
|
|
|
|
create_instances_result = ec2_resource.create_instances(
|
|
|
|
ImageId=EXAMPLE_AMI_ID, MinCount=1, MaxCount=1
|
|
|
|
)
|
|
|
|
instance = create_instances_result[0]
|
|
|
|
|
|
|
|
# we should have one ENI attached to our ec2 instance by default
|
|
|
|
filters = [{"Name": "attachment.instance-id", "Values": [instance.id]}]
|
|
|
|
enis = ec2_client.describe_network_interfaces(Filters=filters)
|
|
|
|
enis.get("NetworkInterfaces").should.have.length_of(1)
|
|
|
|
|
|
|
|
# attach another ENI to our existing instance, total should be 2
|
|
|
|
eni1 = ec2_resource.create_network_interface(
|
|
|
|
SubnetId=subnet.id, Groups=[security_group1.id]
|
|
|
|
)
|
|
|
|
ec2_client.attach_network_interface(
|
|
|
|
NetworkInterfaceId=eni1.id, InstanceId=instance.id, DeviceIndex=1
|
|
|
|
)
|
|
|
|
|
|
|
|
filters = [{"Name": "attachment.instance-id", "Values": [instance.id]}]
|
|
|
|
enis = ec2_client.describe_network_interfaces(Filters=filters)
|
|
|
|
enis.get("NetworkInterfaces").should.have.length_of(2)
|
|
|
|
|
|
|
|
# we shouldn't find any ENIs that are attached to this fake instance ID
|
|
|
|
filters = [{"Name": "attachment.instance-id", "Values": ["this-doesnt-match-lol"]}]
|
|
|
|
enis = ec2_client.describe_network_interfaces(Filters=filters)
|
|
|
|
enis.get("NetworkInterfaces").should.have.length_of(0)
|
|
|
|
|
|
|
|
|
2019-07-14 22:01:37 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_describe_network_interfaces_with_filter():
|
2019-10-31 15:44:26 +00:00
|
|
|
ec2 = boto3.resource("ec2", region_name="us-west-2")
|
|
|
|
ec2_client = boto3.client("ec2", region_name="us-west-2")
|
2019-07-14 22:01:37 +00:00
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
random_ip = ".".join(map(str, (random.randint(0, 99) for _ in range(4))))
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
2019-07-14 22:01:37 +00:00
|
|
|
subnet = ec2.create_subnet(
|
2019-10-31 15:44:26 +00:00
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/24", AvailabilityZone="us-west-2a"
|
|
|
|
)
|
2019-07-14 22:01:37 +00:00
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
sg = ec2_client.create_security_group(Description="test", GroupName=str(uuid4()))
|
2021-08-11 17:50:15 +00:00
|
|
|
sg_id = sg["GroupId"]
|
|
|
|
|
2019-07-14 22:01:37 +00:00
|
|
|
eni1 = ec2.create_network_interface(
|
2021-08-11 17:50:15 +00:00
|
|
|
SubnetId=subnet.id,
|
2021-10-05 17:11:07 +00:00
|
|
|
PrivateIpAddress=random_ip,
|
|
|
|
Description=str(uuid4()),
|
2021-08-11 17:50:15 +00:00
|
|
|
Groups=[sg_id],
|
2019-10-31 15:44:26 +00:00
|
|
|
)
|
2019-07-14 22:01:37 +00:00
|
|
|
|
|
|
|
# The status of the new interface should be 'available'
|
2019-10-31 15:44:26 +00:00
|
|
|
waiter = ec2_client.get_waiter("network_interface_available")
|
2019-07-14 22:01:37 +00:00
|
|
|
waiter.wait(NetworkInterfaceIds=[eni1.id])
|
|
|
|
|
|
|
|
# Filter by network-interface-id
|
|
|
|
response = ec2_client.describe_network_interfaces(
|
2019-10-31 15:44:26 +00:00
|
|
|
Filters=[{"Name": "network-interface-id", "Values": [eni1.id]}]
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"].should.have.length_of(1)
|
|
|
|
response["NetworkInterfaces"][0]["NetworkInterfaceId"].should.equal(eni1.id)
|
|
|
|
response["NetworkInterfaces"][0]["PrivateIpAddress"].should.equal(
|
|
|
|
eni1.private_ip_address
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"][0]["Description"].should.equal(eni1.description)
|
2019-07-14 22:01:37 +00:00
|
|
|
|
2021-08-11 17:50:15 +00:00
|
|
|
# Filter by network-interface-id
|
|
|
|
response = ec2_client.describe_network_interfaces(
|
|
|
|
Filters=[{"Name": "group-id", "Values": [sg_id]}]
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"].should.have.length_of(1)
|
|
|
|
response["NetworkInterfaces"][0]["NetworkInterfaceId"].should.equal(eni1.id)
|
|
|
|
|
2019-07-14 22:01:37 +00:00
|
|
|
response = ec2_client.describe_network_interfaces(
|
2019-10-31 15:44:26 +00:00
|
|
|
Filters=[{"Name": "network-interface-id", "Values": ["bad-id"]}]
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"].should.have.length_of(0)
|
2019-07-14 22:01:37 +00:00
|
|
|
|
|
|
|
# Filter by private-ip-address
|
|
|
|
response = ec2_client.describe_network_interfaces(
|
2019-10-31 15:44:26 +00:00
|
|
|
Filters=[{"Name": "private-ip-address", "Values": [eni1.private_ip_address]}]
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"].should.have.length_of(1)
|
|
|
|
response["NetworkInterfaces"][0]["NetworkInterfaceId"].should.equal(eni1.id)
|
|
|
|
response["NetworkInterfaces"][0]["PrivateIpAddress"].should.equal(
|
|
|
|
eni1.private_ip_address
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"][0]["Description"].should.equal(eni1.description)
|
2019-07-14 22:01:37 +00:00
|
|
|
|
|
|
|
response = ec2_client.describe_network_interfaces(
|
2019-10-31 15:44:26 +00:00
|
|
|
Filters=[{"Name": "private-ip-address", "Values": ["11.11.11.11"]}]
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"].should.have.length_of(0)
|
2019-07-14 22:01:37 +00:00
|
|
|
|
|
|
|
# Filter by sunet-id
|
|
|
|
response = ec2_client.describe_network_interfaces(
|
2019-10-31 15:44:26 +00:00
|
|
|
Filters=[{"Name": "subnet-id", "Values": [eni1.subnet.id]}]
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"].should.have.length_of(1)
|
|
|
|
response["NetworkInterfaces"][0]["NetworkInterfaceId"].should.equal(eni1.id)
|
|
|
|
response["NetworkInterfaces"][0]["PrivateIpAddress"].should.equal(
|
|
|
|
eni1.private_ip_address
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"][0]["Description"].should.equal(eni1.description)
|
2019-07-14 22:01:37 +00:00
|
|
|
|
|
|
|
response = ec2_client.describe_network_interfaces(
|
2019-10-31 15:44:26 +00:00
|
|
|
Filters=[{"Name": "subnet-id", "Values": ["sn-bad-id"]}]
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"].should.have.length_of(0)
|
2019-07-14 22:01:37 +00:00
|
|
|
|
|
|
|
# Filter by description
|
|
|
|
response = ec2_client.describe_network_interfaces(
|
2019-10-31 15:44:26 +00:00
|
|
|
Filters=[{"Name": "description", "Values": [eni1.description]}]
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"].should.have.length_of(1)
|
|
|
|
response["NetworkInterfaces"][0]["NetworkInterfaceId"].should.equal(eni1.id)
|
|
|
|
response["NetworkInterfaces"][0]["PrivateIpAddress"].should.equal(
|
|
|
|
eni1.private_ip_address
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"][0]["Description"].should.equal(eni1.description)
|
2019-07-14 22:01:37 +00:00
|
|
|
|
|
|
|
response = ec2_client.describe_network_interfaces(
|
2019-10-31 15:44:26 +00:00
|
|
|
Filters=[{"Name": "description", "Values": ["bad description"]}]
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"].should.have.length_of(0)
|
2019-07-14 22:01:37 +00:00
|
|
|
|
|
|
|
# Filter by multiple filters
|
|
|
|
response = ec2_client.describe_network_interfaces(
|
2019-10-31 15:44:26 +00:00
|
|
|
Filters=[
|
|
|
|
{"Name": "private-ip-address", "Values": [eni1.private_ip_address]},
|
|
|
|
{"Name": "network-interface-id", "Values": [eni1.id]},
|
|
|
|
{"Name": "subnet-id", "Values": [eni1.subnet.id]},
|
|
|
|
]
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"].should.have.length_of(1)
|
|
|
|
response["NetworkInterfaces"][0]["NetworkInterfaceId"].should.equal(eni1.id)
|
|
|
|
response["NetworkInterfaces"][0]["PrivateIpAddress"].should.equal(
|
|
|
|
eni1.private_ip_address
|
|
|
|
)
|
|
|
|
response["NetworkInterfaces"][0]["Description"].should.equal(eni1.description)
|
2021-07-04 06:44:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_filter_by_tag():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-west-2")
|
|
|
|
ec2_client = boto3.client("ec2", region_name="us-west-2")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(
|
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/24", AvailabilityZone="us-west-2a"
|
|
|
|
)
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
dev_env = f"dev-{str(uuid4())[0:4]}"
|
|
|
|
prod_env = f"prod-{str(uuid4())[0:4]}"
|
|
|
|
|
2021-07-04 06:44:58 +00:00
|
|
|
eni_dev = ec2.create_network_interface(
|
|
|
|
SubnetId=subnet.id,
|
|
|
|
PrivateIpAddress="10.0.10.5",
|
|
|
|
Description="dev interface",
|
|
|
|
TagSpecifications=[
|
|
|
|
{
|
|
|
|
"ResourceType": "network-interface",
|
2021-10-05 17:11:07 +00:00
|
|
|
"Tags": [{"Key": "environment", "Value": dev_env}],
|
2021-07-04 06:44:58 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
eni_prod = ec2.create_network_interface(
|
|
|
|
SubnetId=subnet.id,
|
|
|
|
PrivateIpAddress="10.0.10.6",
|
|
|
|
Description="prod interface",
|
|
|
|
TagSpecifications=[
|
|
|
|
{
|
|
|
|
"ResourceType": "network-interface",
|
2021-10-05 17:11:07 +00:00
|
|
|
"Tags": [{"Key": "environment", "Value": prod_env}],
|
2021-07-04 06:44:58 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
for eni in [eni_dev, eni_prod]:
|
|
|
|
waiter = ec2_client.get_waiter("network_interface_available")
|
|
|
|
waiter.wait(NetworkInterfaceIds=[eni.id])
|
|
|
|
|
|
|
|
resp = ec2_client.describe_network_interfaces(
|
|
|
|
Filters=[{"Name": "tag:environment", "Values": ["staging"]}]
|
|
|
|
)
|
|
|
|
resp["NetworkInterfaces"].should.have.length_of(0)
|
|
|
|
|
|
|
|
resp = ec2_client.describe_network_interfaces(
|
2021-10-05 17:11:07 +00:00
|
|
|
Filters=[{"Name": "tag:environment", "Values": [dev_env]}]
|
2021-07-04 06:44:58 +00:00
|
|
|
)
|
|
|
|
resp["NetworkInterfaces"].should.have.length_of(1)
|
|
|
|
resp["NetworkInterfaces"][0]["Description"].should.equal("dev interface")
|
|
|
|
|
|
|
|
resp = ec2_client.describe_network_interfaces(
|
2021-10-05 17:11:07 +00:00
|
|
|
Filters=[{"Name": "tag:environment", "Values": [prod_env]}]
|
2021-07-04 06:44:58 +00:00
|
|
|
)
|
|
|
|
resp["NetworkInterfaces"].should.have.length_of(1)
|
|
|
|
resp["NetworkInterfaces"][0]["Description"].should.equal("prod interface")
|
|
|
|
|
|
|
|
resp = ec2_client.describe_network_interfaces(
|
2021-10-05 17:11:07 +00:00
|
|
|
Filters=[{"Name": "tag:environment", "Values": [dev_env, prod_env]}]
|
2021-07-04 06:44:58 +00:00
|
|
|
)
|
|
|
|
resp["NetworkInterfaces"].should.have.length_of(2)
|
2021-08-11 17:50:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_elastic_network_interfaces_auto_create_securitygroup():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-west-2")
|
|
|
|
ec2_client = boto3.client("ec2", region_name="us-west-2")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(
|
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/24", AvailabilityZone="us-west-2a"
|
|
|
|
)
|
|
|
|
|
|
|
|
eni1 = ec2.create_network_interface(
|
|
|
|
SubnetId=subnet.id, PrivateIpAddress="10.0.10.5", Groups=["testgroup"]
|
|
|
|
)
|
|
|
|
|
|
|
|
# The status of the new interface should be 'available'
|
|
|
|
waiter = ec2_client.get_waiter("network_interface_available")
|
|
|
|
waiter.wait(NetworkInterfaceIds=[eni1.id])
|
|
|
|
|
|
|
|
sgs = ec2_client.describe_security_groups()["SecurityGroups"]
|
|
|
|
found_sg = [sg for sg in sgs if sg["GroupId"] == "testgroup"]
|
|
|
|
found_sg.should.have.length_of(1)
|
|
|
|
|
|
|
|
found_sg[0]["GroupName"].should.equal("testgroup")
|
|
|
|
found_sg[0]["Description"].should.equal("testgroup")
|
2021-11-11 11:50:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_assign_private_ip_addresses():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(VpcId=vpc.id, CidrBlock="10.0.0.0/18")
|
|
|
|
|
|
|
|
private_ip = "54.0.0.1"
|
|
|
|
eni = ec2.create_network_interface(SubnetId=subnet.id, PrivateIpAddress=private_ip)
|
|
|
|
|
|
|
|
resp = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])
|
|
|
|
my_eni = resp["NetworkInterfaces"][0]
|
|
|
|
my_eni.should.have.key("PrivateIpAddress").equals("54.0.0.1")
|
|
|
|
my_eni.should.have.key("PrivateIpAddresses").equals(
|
|
|
|
[{"Primary": True, "PrivateIpAddress": "54.0.0.1"}]
|
|
|
|
)
|
|
|
|
|
|
|
|
# Do not pass SecondaryPrivateIpAddressCount-parameter
|
|
|
|
client.assign_private_ip_addresses(NetworkInterfaceId=eni.id)
|
|
|
|
|
|
|
|
# Verify nothing changes
|
|
|
|
resp = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])
|
|
|
|
my_eni = resp["NetworkInterfaces"][0]
|
|
|
|
my_eni.should.have.key("PrivateIpAddress").equals("54.0.0.1")
|
|
|
|
my_eni.should.have.key("PrivateIpAddresses").equals(
|
|
|
|
[{"Primary": True, "PrivateIpAddress": "54.0.0.1"}]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_assign_private_ip_addresses__with_secondary_count():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(VpcId=vpc.id, CidrBlock="10.0.0.0/18")
|
|
|
|
|
|
|
|
private_ip = "54.0.0.1"
|
|
|
|
eni = ec2.create_network_interface(SubnetId=subnet.id, PrivateIpAddress=private_ip)
|
|
|
|
|
|
|
|
client.assign_private_ip_addresses(
|
|
|
|
NetworkInterfaceId=eni.id, SecondaryPrivateIpAddressCount=2
|
|
|
|
)
|
|
|
|
|
|
|
|
# Verify second ip's are added
|
|
|
|
resp = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])
|
|
|
|
my_eni = resp["NetworkInterfaces"][0]
|
|
|
|
|
|
|
|
my_eni.should.have.key("PrivateIpAddress").equals("54.0.0.1")
|
|
|
|
my_eni.should.have.key("PrivateIpAddresses").should.have.length_of(3)
|
|
|
|
my_eni.should.have.key("PrivateIpAddresses").contain(
|
|
|
|
{"Primary": True, "PrivateIpAddress": "54.0.0.1"}
|
|
|
|
)
|
|
|
|
|
|
|
|
# Not as ipv6 addresses though
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").equals([])
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_unassign_private_ip_addresses():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(VpcId=vpc.id, CidrBlock="10.0.0.0/18")
|
|
|
|
|
|
|
|
private_ip = "54.0.0.1"
|
|
|
|
eni = ec2.create_network_interface(SubnetId=subnet.id, PrivateIpAddress=private_ip)
|
|
|
|
|
|
|
|
client.assign_private_ip_addresses(
|
|
|
|
NetworkInterfaceId=eni.id, SecondaryPrivateIpAddressCount=2
|
|
|
|
)
|
|
|
|
resp = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])
|
|
|
|
my_eni = resp["NetworkInterfaces"][0]
|
|
|
|
ips_before = [addr["PrivateIpAddress"] for addr in my_eni["PrivateIpAddresses"]]
|
|
|
|
|
|
|
|
# Remove IP
|
|
|
|
resp = client.unassign_private_ip_addresses(
|
|
|
|
NetworkInterfaceId=eni.id, PrivateIpAddresses=[ips_before[1]]
|
|
|
|
)
|
|
|
|
|
|
|
|
# Verify it's gone
|
|
|
|
resp = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])
|
|
|
|
my_eni = resp["NetworkInterfaces"][0]
|
|
|
|
my_eni.should.have.key("PrivateIpAddresses").should.have.length_of(2)
|
|
|
|
my_eni.should.have.key("PrivateIpAddresses").contain(
|
|
|
|
{"Primary": True, "PrivateIpAddress": "54.0.0.1"}
|
|
|
|
)
|
|
|
|
my_eni.should.have.key("PrivateIpAddresses").contain(
|
|
|
|
{"Primary": False, "PrivateIpAddress": ips_before[2]}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_unassign_private_ip_addresses__multiple():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(VpcId=vpc.id, CidrBlock="10.0.0.0/18")
|
|
|
|
|
|
|
|
private_ip = "54.0.0.1"
|
|
|
|
eni = ec2.create_network_interface(SubnetId=subnet.id, PrivateIpAddress=private_ip)
|
|
|
|
|
|
|
|
client.assign_private_ip_addresses(
|
|
|
|
NetworkInterfaceId=eni.id, SecondaryPrivateIpAddressCount=5
|
|
|
|
)
|
|
|
|
resp = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])
|
|
|
|
my_eni = resp["NetworkInterfaces"][0]
|
|
|
|
ips_before = [addr["PrivateIpAddress"] for addr in my_eni["PrivateIpAddresses"]]
|
|
|
|
|
|
|
|
# Remove IP
|
|
|
|
resp = client.unassign_private_ip_addresses(
|
|
|
|
NetworkInterfaceId=eni.id, PrivateIpAddresses=[ips_before[1], ips_before[2]]
|
|
|
|
)
|
|
|
|
|
|
|
|
# Verify it's gone
|
|
|
|
resp = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])
|
|
|
|
my_eni = resp["NetworkInterfaces"][0]
|
|
|
|
my_eni.should.have.key("PrivateIpAddresses").should.have.length_of(4)
|
|
|
|
my_eni.should.have.key("PrivateIpAddresses").contain(
|
|
|
|
{"Primary": True, "PrivateIpAddress": "54.0.0.1"}
|
|
|
|
)
|
|
|
|
my_eni.should.have.key("PrivateIpAddresses").contain(
|
|
|
|
{"Primary": False, "PrivateIpAddress": ips_before[3]}
|
|
|
|
)
|
|
|
|
my_eni.should.have.key("PrivateIpAddresses").contain(
|
|
|
|
{"Primary": False, "PrivateIpAddress": ips_before[4]}
|
|
|
|
)
|
|
|
|
my_eni.should.have.key("PrivateIpAddresses").contain(
|
|
|
|
{"Primary": False, "PrivateIpAddress": ips_before[5]}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_assign_ipv6_addresses__by_address():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(VpcId=vpc.id, CidrBlock="10.0.0.0/18")
|
|
|
|
|
|
|
|
ipv6_orig = random_private_ip("2001:db8::/101", ipv6=True)
|
|
|
|
ipv6_2 = random_private_ip("2001:db8::/101", ipv6=True)
|
|
|
|
ipv6_3 = random_private_ip("2001:db8::/101", ipv6=True)
|
|
|
|
eni = ec2.create_network_interface(
|
|
|
|
SubnetId=subnet.id, Ipv6Addresses=[{"Ipv6Address": ipv6_orig}]
|
|
|
|
)
|
|
|
|
resp = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])
|
|
|
|
my_eni = resp["NetworkInterfaces"][0]
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").equals([{"Ipv6Address": ipv6_orig}])
|
|
|
|
|
|
|
|
client.assign_ipv6_addresses(
|
|
|
|
NetworkInterfaceId=eni.id, Ipv6Addresses=[ipv6_2, ipv6_3]
|
|
|
|
)
|
|
|
|
|
|
|
|
resp = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])
|
|
|
|
my_eni = resp["NetworkInterfaces"][0]
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").length_of(3)
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").should.contain({"Ipv6Address": ipv6_orig})
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").should.contain({"Ipv6Address": ipv6_2})
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").should.contain({"Ipv6Address": ipv6_3})
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_assign_ipv6_addresses__by_count():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(
|
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/18", Ipv6CidrBlock="2001:db8::/64"
|
|
|
|
)
|
|
|
|
|
|
|
|
ipv6_orig = random_private_ip("2001:db8::/101", ipv6=True)
|
|
|
|
eni = ec2.create_network_interface(
|
|
|
|
SubnetId=subnet.id, Ipv6Addresses=[{"Ipv6Address": ipv6_orig}]
|
|
|
|
)
|
|
|
|
|
|
|
|
client.assign_ipv6_addresses(NetworkInterfaceId=eni.id, Ipv6AddressCount=3)
|
|
|
|
|
|
|
|
resp = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])
|
|
|
|
my_eni = resp["NetworkInterfaces"][0]
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").length_of(4)
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").should.contain({"Ipv6Address": ipv6_orig})
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_assign_ipv6_addresses__by_address_and_count():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(
|
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/18", Ipv6CidrBlock="2001:db8::/64"
|
|
|
|
)
|
|
|
|
|
|
|
|
ipv6_orig = random_private_ip("2001:db8::/101", ipv6=True)
|
|
|
|
ipv6_2 = random_private_ip("2001:db8::/101", ipv6=True)
|
|
|
|
ipv6_3 = random_private_ip("2001:db8::/101", ipv6=True)
|
|
|
|
eni = ec2.create_network_interface(
|
|
|
|
SubnetId=subnet.id, Ipv6Addresses=[{"Ipv6Address": ipv6_orig}]
|
|
|
|
)
|
|
|
|
|
|
|
|
client.assign_ipv6_addresses(
|
|
|
|
NetworkInterfaceId=eni.id, Ipv6Addresses=[ipv6_2, ipv6_3]
|
|
|
|
)
|
|
|
|
client.assign_ipv6_addresses(NetworkInterfaceId=eni.id, Ipv6AddressCount=2)
|
|
|
|
|
|
|
|
resp = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])
|
|
|
|
my_eni = resp["NetworkInterfaces"][0]
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").length_of(5)
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").should.contain({"Ipv6Address": ipv6_orig})
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").should.contain({"Ipv6Address": ipv6_2})
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").should.contain({"Ipv6Address": ipv6_3})
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_unassign_ipv6_addresses():
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
client = boto3.client("ec2", "us-east-1")
|
|
|
|
|
|
|
|
vpc = ec2.create_vpc(CidrBlock="10.0.0.0/16")
|
|
|
|
subnet = ec2.create_subnet(
|
|
|
|
VpcId=vpc.id, CidrBlock="10.0.0.0/18", Ipv6CidrBlock="2001:db8::/64"
|
|
|
|
)
|
|
|
|
|
|
|
|
ipv6_orig = random_private_ip("2001:db8::/101", ipv6=True)
|
|
|
|
ipv6_2 = random_private_ip("2001:db8::/101", ipv6=True)
|
|
|
|
ipv6_3 = random_private_ip("2001:db8::/101", ipv6=True)
|
|
|
|
eni = ec2.create_network_interface(
|
|
|
|
SubnetId=subnet.id, Ipv6Addresses=[{"Ipv6Address": ipv6_orig}]
|
|
|
|
)
|
|
|
|
|
|
|
|
client.assign_ipv6_addresses(
|
|
|
|
NetworkInterfaceId=eni.id, Ipv6Addresses=[ipv6_2, ipv6_3]
|
|
|
|
)
|
|
|
|
|
|
|
|
client.unassign_ipv6_addresses(NetworkInterfaceId=eni.id, Ipv6Addresses=[ipv6_2])
|
|
|
|
|
|
|
|
resp = client.describe_network_interfaces(NetworkInterfaceIds=[eni.id])
|
|
|
|
my_eni = resp["NetworkInterfaces"][0]
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").length_of(2)
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").should.contain({"Ipv6Address": ipv6_orig})
|
|
|
|
my_eni.should.have.key("Ipv6Addresses").should.contain({"Ipv6Address": ipv6_3})
|