2020-10-06 05:54:49 +00:00
|
|
|
import pytest
|
2014-08-25 22:09:38 +00:00
|
|
|
|
2016-10-13 02:02:06 +00:00
|
|
|
import boto3
|
2021-09-25 11:13:07 +00:00
|
|
|
from botocore.exceptions import ClientError
|
2021-10-05 17:11:07 +00:00
|
|
|
from uuid import uuid4
|
2013-09-04 01:47:16 +00:00
|
|
|
|
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
|
2021-01-13 09:02:11 +00:00
|
|
|
from tests import EXAMPLE_AMI_ID
|
2013-02-22 04:13:01 +00:00
|
|
|
|
2013-09-04 01:47:16 +00:00
|
|
|
|
2021-09-25 11:13:07 +00:00
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_allocate_classic():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""Allocate/release Classic EIP"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.allocate_address(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 AllocateAddress operation: Request would have succeeded, but DryRun flag is set"
|
|
|
|
)
|
|
|
|
|
2022-12-05 21:20:03 +00:00
|
|
|
standard = client.allocate_address(Domain="standard")
|
2021-09-25 11:13:07 +00:00
|
|
|
standard.should.have.key("PublicIp")
|
|
|
|
standard.should.have.key("Domain").equal("standard")
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
public_ip = standard["PublicIp"]
|
|
|
|
|
|
|
|
standard = ec2.ClassicAddress(public_ip)
|
2021-09-25 11:13:07 +00:00
|
|
|
standard.load()
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
standard.release(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 ReleaseAddress operation: Request would have succeeded, but DryRun flag is set"
|
|
|
|
)
|
|
|
|
|
|
|
|
standard.release()
|
2021-10-05 17:11:07 +00:00
|
|
|
|
|
|
|
all_addresses = client.describe_addresses()["Addresses"]
|
|
|
|
[a["PublicIp"] for a in all_addresses].shouldnt.contain(public_ip)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
|
2021-10-15 22:43:00 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_describe_addresses_dryrun():
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.describe_addresses(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 DescribeAddresses operation: Request would have succeeded, but DryRun flag is set"
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-09-25 11:13:07 +00:00
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_allocate_vpc():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""Allocate/release VPC EIP"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.allocate_address(Domain="vpc", 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 AllocateAddress operation: Request would have succeeded, but DryRun flag is set"
|
|
|
|
)
|
|
|
|
|
|
|
|
vpc = client.allocate_address(Domain="vpc")
|
|
|
|
vpc.should.have.key("AllocationId")
|
|
|
|
vpc.should.have.key("Domain").equal("vpc")
|
|
|
|
|
2022-12-05 21:20:03 +00:00
|
|
|
# Ensure that correct fallback is used for the optional attribute `Domain` contains an empty or invalid value
|
|
|
|
vpc2 = client.allocate_address(Domain="")
|
|
|
|
vpc3 = client.allocate_address(Domain="xyz")
|
|
|
|
|
|
|
|
vpc2.should.have.key("Domain").equal("vpc")
|
|
|
|
vpc3.should.have.key("Domain").equal("vpc")
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
allocation_id = vpc["AllocationId"]
|
2022-12-05 21:20:03 +00:00
|
|
|
allocation_id2 = vpc["AllocationId"]
|
|
|
|
allocation_id3 = vpc["AllocationId"]
|
2021-10-05 17:11:07 +00:00
|
|
|
|
|
|
|
all_addresses = client.describe_addresses()["Addresses"]
|
2022-12-05 21:20:03 +00:00
|
|
|
allocation_ids = [a["AllocationId"] for a in all_addresses if "AllocationId" in a]
|
|
|
|
allocation_ids.should.contain(allocation_id)
|
|
|
|
allocation_ids.should.contain(allocation_id2)
|
|
|
|
allocation_ids.should.contain(allocation_id3)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
vpc = ec2.VpcAddress(allocation_id)
|
2021-09-25 11:13:07 +00:00
|
|
|
vpc.release()
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
all_addresses = client.describe_addresses()["Addresses"]
|
|
|
|
[a["AllocationId"] for a in all_addresses if "AllocationId" in a].shouldnt.contain(
|
|
|
|
allocation_id
|
|
|
|
)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
|
2018-05-11 06:39:19 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_specific_eip_allocate_vpc():
|
|
|
|
"""Allocate VPC EIP with specific address"""
|
|
|
|
client = boto3.client("ec2", region_name="us-west-1")
|
|
|
|
|
|
|
|
vpc = client.allocate_address(Domain="vpc", Address="127.38.43.222")
|
|
|
|
vpc["Domain"].should.be.equal("vpc")
|
|
|
|
vpc["PublicIp"].should.be.equal("127.38.43.222")
|
|
|
|
|
2013-09-04 01:47:16 +00:00
|
|
|
|
2021-09-25 11:13:07 +00:00
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_associate_classic():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""Associate/Disassociate EIP to classic instance"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
reservation = client.run_instances(ImageId=EXAMPLE_AMI_ID, MinCount=1, MaxCount=1)
|
|
|
|
instance = ec2.Instance(reservation["Instances"][0]["InstanceId"])
|
|
|
|
|
|
|
|
eip = client.allocate_address()
|
|
|
|
eip = ec2.ClassicAddress(eip["PublicIp"])
|
2022-04-18 20:44:56 +00:00
|
|
|
eip.instance_id.should.equal("")
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.associate_address(PublicIp=eip.public_ip)
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
2022-04-18 20:44:56 +00:00
|
|
|
ex.value.response["ResponseMetadata"]["RequestId"].shouldnt.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("MissingParameter")
|
|
|
|
ex.value.response["Error"]["Message"].should.equal(
|
|
|
|
"Invalid request, expect InstanceId/NetworkId parameter."
|
|
|
|
)
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.associate_address(
|
|
|
|
InstanceId=instance.id, PublicIp=eip.public_ip, 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 AssociateAddress operation: Request would have succeeded, but DryRun flag is set"
|
|
|
|
)
|
|
|
|
|
|
|
|
client.associate_address(InstanceId=instance.id, PublicIp=eip.public_ip)
|
|
|
|
eip.reload()
|
|
|
|
eip.instance_id.should.be.equal(instance.id)
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.disassociate_address(PublicIp=eip.public_ip, 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(
|
2023-02-14 13:43:28 +00:00
|
|
|
"An error occurred (DryRunOperation) when calling the DisassociateAddress operation: Request would have succeeded, but DryRun flag is set"
|
2021-09-25 11:13:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
client.disassociate_address(PublicIp=eip.public_ip)
|
|
|
|
eip.reload()
|
|
|
|
eip.instance_id.should.be.equal("")
|
|
|
|
eip.release()
|
2021-10-05 17:11:07 +00:00
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.describe_addresses(PublicIps=[eip.public_ip])
|
|
|
|
err = ex.value.response["Error"]
|
|
|
|
err["Code"].should.equal("InvalidAddress.NotFound")
|
|
|
|
err["Message"].should.equal("Address '{'" + eip.public_ip + "'}' not found.")
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
instance.terminate()
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_associate_vpc():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""Associate/Disassociate EIP to VPC instance"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
reservation = client.run_instances(ImageId=EXAMPLE_AMI_ID, MinCount=1, MaxCount=1)
|
|
|
|
instance = ec2.Instance(reservation["Instances"][0]["InstanceId"])
|
|
|
|
|
|
|
|
eip = client.allocate_address(Domain="vpc")
|
|
|
|
eip.shouldnt.have.key("InstanceId")
|
|
|
|
eip = ec2.VpcAddress(eip["AllocationId"])
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.associate_address(AllocationId=eip.allocation_id)
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
2022-04-18 20:44:56 +00:00
|
|
|
ex.value.response["ResponseMetadata"]["RequestId"].shouldnt.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("MissingParameter")
|
|
|
|
ex.value.response["Error"]["Message"].should.equal(
|
|
|
|
"Invalid request, expect InstanceId/NetworkId parameter."
|
|
|
|
)
|
|
|
|
|
|
|
|
client.associate_address(InstanceId=instance.id, AllocationId=eip.allocation_id)
|
|
|
|
|
|
|
|
eip.reload()
|
|
|
|
eip.instance_id.should.be.equal(instance.id)
|
|
|
|
client.disassociate_address(AssociationId=eip.association_id)
|
|
|
|
|
|
|
|
eip.reload()
|
|
|
|
eip.instance_id.should.be.equal("")
|
2022-04-18 20:44:56 +00:00
|
|
|
eip.association_id.should.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
eip.release(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 ReleaseAddress operation: Request would have succeeded, but DryRun flag is set"
|
|
|
|
)
|
|
|
|
|
|
|
|
eip.release()
|
|
|
|
instance.terminate()
|
|
|
|
|
|
|
|
|
2016-10-13 02:02:06 +00:00
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_vpc_association():
|
2016-10-13 02:02:06 +00:00
|
|
|
"""Associate EIP to VPC instance in a new subnet with boto3"""
|
2017-02-24 00:43:48 +00:00
|
|
|
service = boto3.resource("ec2", region_name="us-west-1")
|
|
|
|
client = boto3.client("ec2", region_name="us-west-1")
|
2016-10-13 02:02:06 +00:00
|
|
|
vpc_res = client.create_vpc(CidrBlock="10.0.0.0/24")
|
|
|
|
subnet_res = client.create_subnet(
|
2017-02-24 02:37:43 +00:00
|
|
|
VpcId=vpc_res["Vpc"]["VpcId"], CidrBlock="10.0.0.0/24"
|
|
|
|
)
|
2016-10-13 02:02:06 +00:00
|
|
|
instance = service.create_instances(
|
|
|
|
**{
|
|
|
|
"InstanceType": "t2.micro",
|
2021-01-13 09:02:11 +00:00
|
|
|
"ImageId": EXAMPLE_AMI_ID,
|
2016-10-13 02:02:06 +00:00
|
|
|
"MinCount": 1,
|
|
|
|
"MaxCount": 1,
|
|
|
|
"SubnetId": subnet_res["Subnet"]["SubnetId"],
|
|
|
|
}
|
|
|
|
)[0]
|
|
|
|
allocation_id = client.allocate_address(Domain="vpc")["AllocationId"]
|
2017-09-16 06:56:43 +00:00
|
|
|
address = service.VpcAddress(allocation_id)
|
|
|
|
address.load()
|
2022-04-18 20:44:56 +00:00
|
|
|
address.association_id.should.equal(None)
|
|
|
|
address.instance_id.should.equal("")
|
|
|
|
address.network_interface_id.should.equal("")
|
2021-07-26 14:21:17 +00:00
|
|
|
client.associate_address(
|
2016-10-13 02:02:06 +00:00
|
|
|
InstanceId=instance.id, AllocationId=allocation_id, AllowReassociation=False
|
|
|
|
)
|
|
|
|
instance.load()
|
2017-09-16 06:56:43 +00:00
|
|
|
address.reload()
|
2022-04-18 20:44:56 +00:00
|
|
|
address.association_id.should_not.equal(None)
|
|
|
|
instance.public_ip_address.should_not.equal(None)
|
|
|
|
instance.public_dns_name.should_not.equal(None)
|
2017-09-16 06:56:43 +00:00
|
|
|
address.network_interface_id.should.equal(
|
|
|
|
instance.network_interfaces_attribute[0].get("NetworkInterfaceId")
|
2019-10-31 15:44:26 +00:00
|
|
|
)
|
2017-09-16 06:56:43 +00:00
|
|
|
address.public_ip.should.equal(instance.public_ip_address)
|
|
|
|
address.instance_id.should.equal(instance.id)
|
|
|
|
|
|
|
|
client.disassociate_address(AssociationId=address.association_id)
|
|
|
|
instance.reload()
|
|
|
|
address.reload()
|
2022-04-18 20:44:56 +00:00
|
|
|
instance.public_ip_address.should.equal(None)
|
|
|
|
address.network_interface_id.should.equal("")
|
|
|
|
address.association_id.should.equal(None)
|
|
|
|
address.instance_id.should.equal("")
|
2016-10-13 02:02:06 +00:00
|
|
|
|
|
|
|
|
2021-09-25 11:13:07 +00:00
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_associate_network_interface():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""Associate/Disassociate EIP to NIC"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
ec2 = boto3.resource("ec2", region_name="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")
|
|
|
|
eni = ec2.create_network_interface(SubnetId=subnet.id)
|
|
|
|
|
|
|
|
eip = client.allocate_address(Domain="vpc")
|
|
|
|
eip = ec2.ClassicAddress(eip["PublicIp"])
|
2022-04-18 20:44:56 +00:00
|
|
|
eip.network_interface_id.should.equal("")
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.associate_address(NetworkInterfaceId=eni.id)
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
2022-04-18 20:44:56 +00:00
|
|
|
ex.value.response["ResponseMetadata"]["RequestId"].shouldnt.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("MissingParameter")
|
|
|
|
ex.value.response["Error"]["Message"].should.equal(
|
|
|
|
"Invalid request, expect PublicIp/AllocationId parameter."
|
|
|
|
)
|
|
|
|
|
|
|
|
client.associate_address(NetworkInterfaceId=eni.id, AllocationId=eip.allocation_id)
|
|
|
|
|
|
|
|
eip.reload()
|
|
|
|
eip.network_interface_id.should.be.equal(eni.id)
|
|
|
|
|
|
|
|
client.disassociate_address(AssociationId=eip.association_id)
|
|
|
|
|
|
|
|
eip.reload()
|
2022-04-18 20:44:56 +00:00
|
|
|
eip.network_interface_id.should.equal("")
|
|
|
|
eip.association_id.should.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
eip.release()
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_reassociate():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""reassociate EIP"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
reservation = client.run_instances(ImageId=EXAMPLE_AMI_ID, MinCount=2, MaxCount=2)
|
|
|
|
instance1 = ec2.Instance(reservation["Instances"][0]["InstanceId"])
|
|
|
|
instance2 = ec2.Instance(reservation["Instances"][1]["InstanceId"])
|
|
|
|
|
|
|
|
eip = client.allocate_address()
|
|
|
|
eip = ec2.ClassicAddress(eip["PublicIp"])
|
|
|
|
client.associate_address(InstanceId=instance1.id, PublicIp=eip.public_ip)
|
|
|
|
|
|
|
|
# Same ID is idempotent
|
|
|
|
client.associate_address(InstanceId=instance1.id, PublicIp=eip.public_ip)
|
|
|
|
|
|
|
|
eip.reload()
|
|
|
|
eip.instance_id.should.equal(instance1.id)
|
|
|
|
|
|
|
|
# Different ID detects resource association
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.associate_address(
|
|
|
|
InstanceId=instance2.id, PublicIp=eip.public_ip, AllowReassociation=False
|
|
|
|
)
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
2022-04-18 20:44:56 +00:00
|
|
|
ex.value.response["ResponseMetadata"]["RequestId"].shouldnt.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("Resource.AlreadyAssociated")
|
|
|
|
|
|
|
|
client.associate_address(
|
|
|
|
InstanceId=instance2.id, PublicIp=eip.public_ip, AllowReassociation=True
|
|
|
|
)
|
|
|
|
|
|
|
|
eip.reload()
|
|
|
|
eip.instance_id.should.equal(instance2.id)
|
|
|
|
|
|
|
|
eip.release()
|
|
|
|
instance1.terminate()
|
|
|
|
instance2.terminate()
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_reassociate_nic():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""reassociate EIP"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
vpc = client.create_vpc(CidrBlock="10.0.0.0/16")["Vpc"]
|
|
|
|
subnet = client.create_subnet(VpcId=vpc["VpcId"], CidrBlock="10.0.0.0/18")["Subnet"]
|
|
|
|
eni1 = ec2.create_network_interface(SubnetId=subnet["SubnetId"])
|
|
|
|
eni2 = ec2.create_network_interface(SubnetId=subnet["SubnetId"])
|
|
|
|
|
|
|
|
eip = ec2.ClassicAddress(client.allocate_address()["PublicIp"])
|
|
|
|
client.associate_address(NetworkInterfaceId=eni1.id, PublicIp=eip.public_ip)
|
|
|
|
|
|
|
|
# Same ID is idempotent
|
|
|
|
client.associate_address(NetworkInterfaceId=eni1.id, PublicIp=eip.public_ip)
|
|
|
|
|
|
|
|
eip.reload()
|
|
|
|
eip.network_interface_id.should.equal(eni1.id)
|
|
|
|
|
|
|
|
# Different ID detects resource association
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.associate_address(NetworkInterfaceId=eni2.id, PublicIp=eip.public_ip)
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
2022-04-18 20:44:56 +00:00
|
|
|
ex.value.response["ResponseMetadata"]["RequestId"].shouldnt.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("Resource.AlreadyAssociated")
|
|
|
|
|
|
|
|
client.associate_address(
|
|
|
|
NetworkInterfaceId=eni2.id, PublicIp=eip.public_ip, AllowReassociation=True
|
|
|
|
)
|
|
|
|
|
|
|
|
eip.reload()
|
|
|
|
eip.network_interface_id.should.equal(eni2.id)
|
|
|
|
|
|
|
|
eip.release()
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_associate_invalid_args():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""Associate EIP, invalid args"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
reservation = client.run_instances(ImageId=EXAMPLE_AMI_ID, MinCount=1, MaxCount=1)
|
|
|
|
instance = ec2.Instance(reservation["Instances"][0]["InstanceId"])
|
|
|
|
|
|
|
|
client.allocate_address()
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.associate_address(InstanceId=instance.id)
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
2022-04-18 20:44:56 +00:00
|
|
|
ex.value.response["ResponseMetadata"]["RequestId"].shouldnt.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("MissingParameter")
|
|
|
|
|
|
|
|
instance.terminate()
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_disassociate_bogus_association():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""Disassociate bogus EIP"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.disassociate_address(AssociationId="bogus")
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
2022-04-18 20:44:56 +00:00
|
|
|
ex.value.response["ResponseMetadata"]["RequestId"].shouldnt.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("InvalidAssociationID.NotFound")
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_release_bogus_eip():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""Release bogus EIP"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.release_address(AllocationId="bogus")
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
2022-04-18 20:44:56 +00:00
|
|
|
ex.value.response["ResponseMetadata"]["RequestId"].shouldnt.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("InvalidAllocationID.NotFound")
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_disassociate_arg_error():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""Invalid arguments disassociate address"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.disassociate_address()
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
2022-04-18 20:44:56 +00:00
|
|
|
ex.value.response["ResponseMetadata"]["RequestId"].shouldnt.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("MissingParameter")
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_release_arg_error():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""Invalid arguments release address"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.release_address()
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
2022-04-18 20:44:56 +00:00
|
|
|
ex.value.response["ResponseMetadata"]["RequestId"].shouldnt.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("MissingParameter")
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_describe():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""Listing of allocated Elastic IP Addresses."""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
ec2 = boto3.resource("ec2", region_name="us-east-1")
|
|
|
|
eips = []
|
|
|
|
number_of_classic_ips = 2
|
|
|
|
number_of_vpc_ips = 2
|
|
|
|
|
|
|
|
# allocate some IPs
|
|
|
|
for _ in range(number_of_classic_ips):
|
|
|
|
eips.append(ec2.ClassicAddress(client.allocate_address()["PublicIp"]))
|
|
|
|
for _ in range(number_of_vpc_ips):
|
|
|
|
eip_id = client.allocate_address(Domain="vpc")["AllocationId"]
|
|
|
|
eips.append(ec2.VpcAddress(eip_id))
|
|
|
|
eips.should.have.length_of(number_of_classic_ips + number_of_vpc_ips)
|
|
|
|
|
|
|
|
# Can we find each one individually?
|
|
|
|
for eip in eips:
|
|
|
|
if eip.allocation_id:
|
|
|
|
lookup_addresses = client.describe_addresses(
|
|
|
|
AllocationIds=[eip.allocation_id]
|
|
|
|
)["Addresses"]
|
|
|
|
else:
|
|
|
|
lookup_addresses = client.describe_addresses(PublicIps=[eip.public_ip])[
|
|
|
|
"Addresses"
|
|
|
|
]
|
|
|
|
len(lookup_addresses).should.be.equal(1)
|
|
|
|
lookup_addresses[0]["PublicIp"].should.be.equal(eip.public_ip)
|
|
|
|
|
|
|
|
# Can we find first two when we search for them?
|
|
|
|
lookup_addresses = client.describe_addresses(
|
|
|
|
PublicIps=[eips[0].public_ip, eips[1].public_ip]
|
|
|
|
)["Addresses"]
|
|
|
|
lookup_addresses.should.have.length_of(2)
|
|
|
|
lookup_addresses[0]["PublicIp"].should.be.equal(eips[0].public_ip)
|
|
|
|
lookup_addresses[1]["PublicIp"].should.be.equal(eips[1].public_ip)
|
|
|
|
|
|
|
|
# Release all IPs
|
|
|
|
for eip in eips:
|
|
|
|
eip.release()
|
2021-10-05 17:11:07 +00:00
|
|
|
all_addresses = client.describe_addresses()["Addresses"]
|
|
|
|
[a["PublicIp"] for a in all_addresses].shouldnt.contain(eips[0].public_ip)
|
|
|
|
[a["PublicIp"] for a in all_addresses].shouldnt.contain(eips[1].public_ip)
|
2021-09-25 11:13:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
2022-04-18 20:44:56 +00:00
|
|
|
def test_eip_describe_none():
|
2021-09-25 11:13:07 +00:00
|
|
|
"""Error when search for bogus IP"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.describe_addresses(PublicIps=["256.256.256.256"])
|
|
|
|
ex.value.response["ResponseMetadata"]["HTTPStatusCode"].should.equal(400)
|
2022-04-18 20:44:56 +00:00
|
|
|
ex.value.response["ResponseMetadata"]["RequestId"].shouldnt.equal(None)
|
2021-09-25 11:13:07 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("InvalidAddress.NotFound")
|
|
|
|
|
|
|
|
|
2017-09-15 20:19:57 +00:00
|
|
|
@mock_ec2
|
|
|
|
def test_eip_filters():
|
|
|
|
service = boto3.resource("ec2", region_name="us-west-1")
|
|
|
|
client = boto3.client("ec2", region_name="us-west-1")
|
|
|
|
vpc_res = client.create_vpc(CidrBlock="10.0.0.0/24")
|
|
|
|
subnet_res = client.create_subnet(
|
|
|
|
VpcId=vpc_res["Vpc"]["VpcId"], CidrBlock="10.0.0.0/24"
|
|
|
|
)
|
|
|
|
|
|
|
|
def create_inst_with_eip():
|
|
|
|
instance = service.create_instances(
|
|
|
|
**{
|
|
|
|
"InstanceType": "t2.micro",
|
2021-01-13 09:02:11 +00:00
|
|
|
"ImageId": EXAMPLE_AMI_ID,
|
2017-09-15 20:19:57 +00:00
|
|
|
"MinCount": 1,
|
|
|
|
"MaxCount": 1,
|
|
|
|
"SubnetId": subnet_res["Subnet"]["SubnetId"],
|
|
|
|
}
|
|
|
|
)[0]
|
|
|
|
allocation_id = client.allocate_address(Domain="vpc")["AllocationId"]
|
|
|
|
_ = client.associate_address(
|
|
|
|
InstanceId=instance.id, AllocationId=allocation_id, AllowReassociation=False
|
|
|
|
)
|
|
|
|
instance.load()
|
|
|
|
address = service.VpcAddress(allocation_id)
|
|
|
|
address.load()
|
|
|
|
return instance, address
|
|
|
|
|
|
|
|
inst1, eip1 = create_inst_with_eip()
|
|
|
|
inst2, eip2 = create_inst_with_eip()
|
|
|
|
inst3, eip3 = create_inst_with_eip()
|
|
|
|
|
|
|
|
# Param search by AllocationId
|
|
|
|
addresses = list(service.vpc_addresses.filter(AllocationIds=[eip2.allocation_id]))
|
|
|
|
len(addresses).should.be.equal(1)
|
|
|
|
addresses[0].public_ip.should.equal(eip2.public_ip)
|
|
|
|
inst2.public_ip_address.should.equal(addresses[0].public_ip)
|
|
|
|
|
|
|
|
# Param search by PublicIp
|
|
|
|
addresses = list(service.vpc_addresses.filter(PublicIps=[eip3.public_ip]))
|
|
|
|
len(addresses).should.be.equal(1)
|
|
|
|
addresses[0].public_ip.should.equal(eip3.public_ip)
|
|
|
|
inst3.public_ip_address.should.equal(addresses[0].public_ip)
|
|
|
|
|
|
|
|
# Param search by Filter
|
2021-10-05 17:11:07 +00:00
|
|
|
def check_vpc_filter_valid(filter_name, filter_values, all_values=True):
|
2017-09-15 20:19:57 +00:00
|
|
|
addresses = list(
|
|
|
|
service.vpc_addresses.filter(
|
|
|
|
Filters=[{"Name": filter_name, "Values": filter_values}]
|
|
|
|
)
|
2019-10-31 15:44:26 +00:00
|
|
|
)
|
2021-10-05 17:11:07 +00:00
|
|
|
if all_values:
|
|
|
|
len(addresses).should.equal(2)
|
|
|
|
ips = [addr.public_ip for addr in addresses]
|
|
|
|
set(ips).should.equal(set([eip1.public_ip, eip2.public_ip]))
|
|
|
|
ips.should.contain(inst1.public_ip_address)
|
|
|
|
else:
|
|
|
|
ips = [addr.public_ip for addr in addresses]
|
|
|
|
ips.should.contain(eip1.public_ip)
|
|
|
|
ips.should.contain(eip2.public_ip)
|
2017-09-15 20:19:57 +00:00
|
|
|
|
|
|
|
def check_vpc_filter_invalid(filter_name):
|
|
|
|
addresses = list(
|
|
|
|
service.vpc_addresses.filter(
|
|
|
|
Filters=[{"Name": filter_name, "Values": ["dummy1", "dummy2"]}]
|
|
|
|
)
|
2019-10-31 15:44:26 +00:00
|
|
|
)
|
2017-09-15 20:19:57 +00:00
|
|
|
len(addresses).should.equal(0)
|
|
|
|
|
2021-10-05 17:11:07 +00:00
|
|
|
def check_vpc_filter(filter_name, filter_values, all_values=True):
|
|
|
|
check_vpc_filter_valid(filter_name, filter_values, all_values)
|
2017-09-15 20:19:57 +00:00
|
|
|
check_vpc_filter_invalid(filter_name)
|
|
|
|
|
|
|
|
check_vpc_filter("allocation-id", [eip1.allocation_id, eip2.allocation_id])
|
|
|
|
check_vpc_filter("association-id", [eip1.association_id, eip2.association_id])
|
|
|
|
check_vpc_filter("instance-id", [inst1.id, inst2.id])
|
|
|
|
check_vpc_filter(
|
|
|
|
"network-interface-id",
|
|
|
|
[
|
|
|
|
inst1.network_interfaces_attribute[0].get("NetworkInterfaceId"),
|
|
|
|
inst2.network_interfaces_attribute[0].get("NetworkInterfaceId"),
|
2019-10-31 15:44:26 +00:00
|
|
|
],
|
2017-09-15 20:19:57 +00:00
|
|
|
)
|
|
|
|
check_vpc_filter(
|
|
|
|
"private-ip-address",
|
|
|
|
[
|
|
|
|
inst1.network_interfaces_attribute[0].get("PrivateIpAddress"),
|
|
|
|
inst2.network_interfaces_attribute[0].get("PrivateIpAddress"),
|
2019-10-31 15:44:26 +00:00
|
|
|
],
|
2021-10-05 17:11:07 +00:00
|
|
|
all_values=False, # Other ENI's may have the same ip address
|
2017-09-15 20:19:57 +00:00
|
|
|
)
|
|
|
|
check_vpc_filter("public-ip", [inst1.public_ip_address, inst2.public_ip_address])
|
|
|
|
|
|
|
|
# all the ips are in a VPC
|
|
|
|
addresses = list(
|
|
|
|
service.vpc_addresses.filter(Filters=[{"Name": "domain", "Values": ["vpc"]}])
|
2019-10-31 15:44:26 +00:00
|
|
|
)
|
2021-10-05 17:11:07 +00:00
|
|
|
public_ips = [a.public_ip for a in addresses]
|
|
|
|
public_ips.should.contain(eip1.public_ip)
|
|
|
|
public_ips.should.contain(eip1.public_ip)
|
|
|
|
public_ips.should.contain(inst1.public_ip_address)
|
2020-09-25 14:25:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_eip_tags():
|
|
|
|
service = boto3.resource("ec2", region_name="us-west-1")
|
|
|
|
client = boto3.client("ec2", region_name="us-west-1")
|
|
|
|
|
|
|
|
# Allocate one address without tags
|
2021-10-05 17:11:07 +00:00
|
|
|
no_tags = client.allocate_address(Domain="vpc")
|
|
|
|
|
2020-09-25 14:25:30 +00:00
|
|
|
# Allocate one address and add tags
|
|
|
|
alloc_tags = client.allocate_address(Domain="vpc")
|
2021-10-05 17:11:07 +00:00
|
|
|
managed_by = str(uuid4())
|
2021-10-18 19:44:29 +00:00
|
|
|
client.create_tags(
|
2020-09-25 14:25:30 +00:00
|
|
|
Resources=[alloc_tags["AllocationId"]],
|
2021-10-05 17:11:07 +00:00
|
|
|
Tags=[{"Key": "ManagedBy", "Value": managed_by}],
|
2020-09-25 14:25:30 +00:00
|
|
|
)
|
|
|
|
addresses_with_tags = client.describe_addresses(
|
|
|
|
Filters=[
|
|
|
|
{"Name": "domain", "Values": ["vpc"]},
|
2021-10-05 17:11:07 +00:00
|
|
|
{"Name": "tag:ManagedBy", "Values": [managed_by]},
|
2020-09-25 14:25:30 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
len(addresses_with_tags["Addresses"]).should.equal(1)
|
|
|
|
addresses_with_tags = list(
|
|
|
|
service.vpc_addresses.filter(
|
|
|
|
Filters=[
|
|
|
|
{"Name": "domain", "Values": ["vpc"]},
|
2021-10-05 17:11:07 +00:00
|
|
|
{"Name": "tag:ManagedBy", "Values": [managed_by]},
|
2020-09-25 14:25:30 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
len(addresses_with_tags).should.equal(1)
|
|
|
|
addresses_with_tags = list(
|
|
|
|
service.vpc_addresses.filter(
|
|
|
|
Filters=[
|
|
|
|
{"Name": "domain", "Values": ["vpc"]},
|
|
|
|
{"Name": "tag:ManagedBy", "Values": ["SomethingOther"]},
|
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
len(addresses_with_tags).should.equal(0)
|
|
|
|
addresses = list(
|
|
|
|
service.vpc_addresses.filter(Filters=[{"Name": "domain", "Values": ["vpc"]}])
|
|
|
|
)
|
2021-10-05 17:11:07 +00:00
|
|
|
# Expected at least 2, one with and one without tags
|
|
|
|
assert len(addresses) >= 2, "Should find our two created addresses"
|
|
|
|
[a.allocation_id for a in addresses].should.contain(no_tags["AllocationId"])
|
|
|
|
[a.allocation_id for a in addresses].should.contain(alloc_tags["AllocationId"])
|
2020-12-06 00:04:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_describe_addresses_tags():
|
|
|
|
client = boto3.client("ec2", region_name="us-west-1")
|
|
|
|
|
|
|
|
alloc_tags = client.allocate_address(Domain="vpc")
|
|
|
|
client.create_tags(
|
|
|
|
Resources=[alloc_tags["AllocationId"]],
|
|
|
|
Tags=[{"Key": "ManagedBy", "Value": "MyCode"}],
|
|
|
|
)
|
2021-10-05 17:11:07 +00:00
|
|
|
|
|
|
|
addresses_with_tags = client.describe_addresses(
|
|
|
|
AllocationIds=[alloc_tags["AllocationId"]]
|
|
|
|
)
|
2020-12-06 00:04:46 +00:00
|
|
|
assert addresses_with_tags.get("Addresses")[0].get("Tags") == [
|
|
|
|
{"Key": "ManagedBy", "Value": "MyCode"}
|
|
|
|
]
|
2022-07-26 23:39:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ec2
|
|
|
|
def test_describe_addresses_with_vpc_associated_eni():
|
|
|
|
"""Extra attributes for EIP associated with a ENI inside a VPC"""
|
|
|
|
client = boto3.client("ec2", region_name="us-east-1")
|
|
|
|
ec2 = boto3.resource("ec2", region_name="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")
|
|
|
|
eni = ec2.create_network_interface(SubnetId=subnet.id)
|
|
|
|
|
|
|
|
eip = client.allocate_address(Domain="vpc")
|
|
|
|
association_id = client.associate_address(
|
|
|
|
NetworkInterfaceId=eni.id, PublicIp=eip["PublicIp"]
|
|
|
|
)["AssociationId"]
|
|
|
|
|
|
|
|
result = client.describe_addresses(
|
|
|
|
Filters=[{"Name": "association-id", "Values": [association_id]}]
|
|
|
|
)
|
|
|
|
|
|
|
|
result["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
|
|
result["Addresses"].should.have.length_of(1)
|
|
|
|
|
|
|
|
address = result["Addresses"][0]
|
|
|
|
|
|
|
|
address["NetworkInterfaceId"].should.be.equal(eni.id)
|
|
|
|
address["PrivateIpAddress"].should.be.equal(eni.private_ip_address)
|
|
|
|
address["AssociationId"].should.be.equal(association_id)
|
|
|
|
address["NetworkInterfaceOwnerId"].should.be.equal(eni.owner_id)
|