1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
from uuid import uuid4
import boto3
from moto import mock_aws
@mock_aws
def test_allocate_hosts():
client = boto3.client("ec2", "us-west-1")
resp = client.allocate_hosts(
AvailabilityZone="us-west-1a",
InstanceType="a1.small",
HostRecovery="off",
AutoPlacement="on",
Quantity=3,
)
assert len(resp["HostIds"]) == 3
@mock_aws
def test_describe_hosts_with_instancefamily():
client = boto3.client("ec2", "us-west-1")
host_ids = client.allocate_hosts(
AvailabilityZone="us-west-1a", InstanceFamily="c5", Quantity=1
)["HostIds"]
host = client.describe_hosts(HostIds=host_ids)["Hosts"][0]
assert "AllocationTime" in host
assert host["HostProperties"]["InstanceFamily"] == "c5"
@mock_aws
def test_describe_hosts():
client = boto3.client("ec2", "us-west-1")
host_ids = client.allocate_hosts(
AvailabilityZone="us-west-1c",
InstanceType="a1.large",
HostRecovery="on",
AutoPlacement="off",
Quantity=2,
)["HostIds"]
hosts = client.describe_hosts(HostIds=host_ids)["Hosts"]
assert len(hosts) == 2
assert hosts[0]["State"] == "available"
assert hosts[0]["AvailabilityZone"] == "us-west-1c"
assert hosts[0]["HostRecovery"] == "on"
assert hosts[0]["HostProperties"]["InstanceType"] == "a1.large"
assert hosts[0]["AutoPlacement"] == "off"
@mock_aws
def test_describe_hosts_with_tags():
client = boto3.client("ec2", "us-west-1")
tagkey = str(uuid4())
host_ids = client.allocate_hosts(
AvailabilityZone="us-west-1b",
InstanceType="b1.large",
Quantity=1,
TagSpecifications=[
{"ResourceType": "dedicated-host", "Tags": [{"Key": tagkey, "Value": "v1"}]}
],
)["HostIds"]
host = client.describe_hosts(HostIds=host_ids)["Hosts"][0]
assert host["Tags"] == [{"Key": tagkey, "Value": "v1"}]
client.allocate_hosts(
AvailabilityZone="us-west-1a", InstanceType="b1.large", Quantity=1
)
hosts = client.describe_hosts(Filters=[{"Name": "tag-key", "Values": [tagkey]}])[
"Hosts"
]
assert len(hosts) == 1
@mock_aws
def test_describe_hosts_using_filters():
client = boto3.client("ec2", "us-west-1")
host_id1 = client.allocate_hosts(
AvailabilityZone="us-west-1a", InstanceType="b1.large", Quantity=1
)["HostIds"][0]
host_id2 = client.allocate_hosts(
AvailabilityZone="us-west-1b", InstanceType="b1.large", Quantity=1
)["HostIds"][0]
hosts = client.describe_hosts(
Filters=[{"Name": "availability-zone", "Values": ["us-west-1b"]}]
)["Hosts"]
assert host_id2 in [h["HostId"] for h in hosts]
hosts = client.describe_hosts(
Filters=[{"Name": "availability-zone", "Values": ["us-west-1d"]}]
)["Hosts"]
assert len(hosts) == 0
client.release_hosts(HostIds=[host_id1])
hosts = client.describe_hosts(Filters=[{"Name": "state", "Values": ["released"]}])[
"Hosts"
]
assert host_id1 in [h["HostId"] for h in hosts]
hosts = client.describe_hosts(
Filters=[{"Name": "state", "Values": ["under-assessment"]}]
)["Hosts"]
assert len(hosts) == 0
@mock_aws
def test_modify_hosts():
client = boto3.client("ec2", "us-west-1")
host_ids = client.allocate_hosts(
AvailabilityZone="us-west-1a", InstanceFamily="c5", Quantity=1
)["HostIds"]
client.modify_hosts(
HostIds=host_ids,
AutoPlacement="off",
HostRecovery="on",
InstanceType="c5.medium",
)
host = client.describe_hosts(HostIds=host_ids)["Hosts"][0]
assert host["AutoPlacement"] == "off"
assert host["HostRecovery"] == "on"
assert "InstanceFamily" not in host["HostProperties"]
assert host["HostProperties"]["InstanceType"] == "c5.medium"
@mock_aws
def test_release_hosts():
client = boto3.client("ec2", "us-west-1")
host_ids = client.allocate_hosts(
AvailabilityZone="us-west-1a",
InstanceType="a1.small",
HostRecovery="off",
AutoPlacement="on",
Quantity=2,
)["HostIds"]
resp = client.release_hosts(HostIds=[host_ids[0]])
assert resp["Successful"] == [host_ids[0]]
host = client.describe_hosts(HostIds=[host_ids[0]])["Hosts"][0]
assert host["State"] == "released"
@mock_aws
def test_add_tags_to_dedicated_hosts():
client = boto3.client("ec2", "us-west-1")
resp = client.allocate_hosts(
AvailabilityZone="us-west-1a", InstanceType="a1.small", Quantity=1
)
host_id = resp["HostIds"][0]
client.create_tags(Resources=[host_id], Tags=[{"Key": "k1", "Value": "v1"}])
host = client.describe_hosts(HostIds=[host_id])["Hosts"][0]
assert host["Tags"] == [{"Key": "k1", "Value": "v1"}]
|