Run black and fix tests
This commit is contained in:
parent
f23ad29810
commit
c658cfea0d
4 changed files with 32 additions and 20 deletions
|
|
@ -22,37 +22,41 @@ def test_describe_instance_type_offerings():
|
|||
def test_describe_instance_type_offering_filter_by_type():
|
||||
client = boto3.client("ec2", "us-east-1")
|
||||
offerings = client.describe_instance_type_offerings(
|
||||
Filters=[{"Name": "instance-type", "Values": ["t2.nano"]}])
|
||||
Filters=[{"Name": "instance-type", "Values": ["t2.nano"]}]
|
||||
)
|
||||
|
||||
offerings.should.have.key("InstanceTypeOfferings")
|
||||
offerings["InstanceTypeOfferings"].should_not.be.empty
|
||||
offerings["InstanceTypeOfferings"].should.have.length_of(2)
|
||||
offerings["InstanceTypeOfferings"][0]['InstanceType'].should.equal('t2.nano')
|
||||
offerings["InstanceTypeOfferings"][-1]['InstanceType'].should.equal('t2.nano')
|
||||
offerings["InstanceTypeOfferings"][0]['Location'].should.equal('us-east-1a')
|
||||
offerings["InstanceTypeOfferings"][0]["InstanceType"].should.equal("t2.nano")
|
||||
offerings["InstanceTypeOfferings"][-1]["InstanceType"].should.equal("t2.nano")
|
||||
offerings["InstanceTypeOfferings"][0]["Location"].should.equal("us-east-1a")
|
||||
|
||||
|
||||
@mock_ec2
|
||||
def test_describe_instance_type_offering_filter_by_zone():
|
||||
client = boto3.client("ec2", "us-east-1")
|
||||
offerings = client.describe_instance_type_offerings(
|
||||
Filters=[{"Name": "location", "Values": ["us-east-1c"]}])
|
||||
LocationType="availability-zone",
|
||||
Filters=[{"Name": "location", "Values": ["us-east-1c"]}],
|
||||
)
|
||||
|
||||
offerings.should.have.key("InstanceTypeOfferings")
|
||||
offerings["InstanceTypeOfferings"].should_not.be.empty
|
||||
offerings["InstanceTypeOfferings"].should.have.length_of(1)
|
||||
offerings["InstanceTypeOfferings"][0]['InstanceType'].should.equal('a1.2xlarge')
|
||||
offerings["InstanceTypeOfferings"][0]['Location'].should.equal('us-east-1c')
|
||||
offerings["InstanceTypeOfferings"][0]["InstanceType"].should.equal("a1.2xlarge")
|
||||
offerings["InstanceTypeOfferings"][0]["Location"].should.equal("us-east-1c")
|
||||
|
||||
|
||||
@mock_ec2
|
||||
def test_describe_instance_type_offering_filter_by_region():
|
||||
client = boto3.client("ec2", "us-east-1")
|
||||
offerings = client.describe_instance_type_offerings(
|
||||
LocationType="region", Filters=[{"Name": "location", "Values": ["us-west-1"]}])
|
||||
LocationType="region", Filters=[{"Name": "location", "Values": ["us-west-1"]}]
|
||||
)
|
||||
|
||||
offerings.should.have.key("InstanceTypeOfferings")
|
||||
offerings["InstanceTypeOfferings"].should_not.be.empty
|
||||
offerings["InstanceTypeOfferings"].should.have.length_of(2)
|
||||
offerings["InstanceTypeOfferings"][0]['InstanceType'].should.equal('a1.4xlarge')
|
||||
offerings["InstanceTypeOfferings"][0]['Location'].should.equal('us-west-1a')
|
||||
offerings["InstanceTypeOfferings"][0]["InstanceType"].should.equal("a1.4xlarge")
|
||||
offerings["InstanceTypeOfferings"][0]["Location"].should.equal("us-west-1a")
|
||||
|
|
|
|||
|
|
@ -24,13 +24,19 @@ def test_describe_instance_types():
|
|||
@mock_ec2
|
||||
def test_describe_instance_types_filter_by_type():
|
||||
client = boto3.client("ec2", "us-east-1")
|
||||
instance_types = client.describe_instance_types(InstanceTypes=['t1.micro', 't2.nano'])
|
||||
instance_types = client.describe_instance_types(
|
||||
InstanceTypes=["t1.micro", "t2.nano"]
|
||||
)
|
||||
|
||||
instance_types.should.have.key("InstanceTypes")
|
||||
instance_types["InstanceTypes"].should_not.be.empty
|
||||
instance_types["InstanceTypes"].should.have.length_of(2)
|
||||
instance_types["InstanceTypes"][0]['InstanceType'].should.equal('t1.micro')
|
||||
instance_types["InstanceTypes"][1]['InstanceType'].should.equal('t2.nano')
|
||||
instance_types["InstanceTypes"][0]["InstanceType"].should.be.within(
|
||||
["t1.micro", "t2.nano"]
|
||||
)
|
||||
instance_types["InstanceTypes"][1]["InstanceType"].should.be.within(
|
||||
["t1.micro", "t2.nano"]
|
||||
)
|
||||
|
||||
|
||||
@mock_ec2
|
||||
|
|
@ -38,7 +44,7 @@ def test_describe_instance_types_unknown_type():
|
|||
client = boto3.client("ec2", "us-east-1")
|
||||
|
||||
with pytest.raises(ClientError) as err:
|
||||
client.describe_instance_types(InstanceTypes=['t1.non_existent'])
|
||||
client.describe_instance_types(InstanceTypes=["t1.non_existent"])
|
||||
err.response["Error"]["Code"].should.equal("ValidationException")
|
||||
err.response["Error"]["Message"].split(":")[0].should.look_like(
|
||||
"The instance type '{'t1.non_existent'}' does not exist"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue