Best Python code snippet using localstack_python
test_instance_type_offerings.py
Source:test_instance_type_offerings.py
2import boto33import sure # noqa4from moto import mock_ec25@mock_ec26def test_describe_instance_type_offerings():7 client = boto3.client("ec2", "us-east-1")8 offerings = client.describe_instance_type_offerings()9 offerings.should.have.key("InstanceTypeOfferings")10 offerings["InstanceTypeOfferings"].should_not.be.empty11 offerings["InstanceTypeOfferings"][0].should.have.key("InstanceType")12 offerings["InstanceTypeOfferings"][0].should.have.key("Location")13 offerings["InstanceTypeOfferings"][0].should.have.key("LocationType")14@mock_ec215def test_describe_instance_type_offering_filter_by_type():16 client = boto3.client("ec2", "us-east-1")17 # Verify offerings of a specific instance type18 offerings = client.describe_instance_type_offerings(19 Filters=[{"Name": "instance-type", "Values": ["t2.nano"]}]20 )21 offerings.should.have.key("InstanceTypeOfferings")22 offerings["InstanceTypeOfferings"].should_not.be.empty23 offerings = offerings["InstanceTypeOfferings"]24 offerings.should.have.length_of(1)25 offerings[0]["InstanceType"].should.equal("t2.nano")26 offerings[0]["Location"].should.equal("us-east-1")27 # Verify offerings of that instance type per availibility zone28 offerings = client.describe_instance_type_offerings(29 LocationType="availability-zone",30 Filters=[{"Name": "instance-type", "Values": ["t2.nano"]}],31 )32 offerings.should.have.key("InstanceTypeOfferings")33 offerings = offerings["InstanceTypeOfferings"]34 offerings.should.have.length_of(6)35 for offering in offerings:36 offering["InstanceType"].should.equal("t2.nano")37 offering["LocationType"].should.equal("availability-zone")38 offering["Location"].should.match("us-east-1[a-f]")39@mock_ec240def test_describe_instance_type_offering_filter_by_zone():41 client = boto3.client("ec2", "us-east-1")42 offerings = client.describe_instance_type_offerings(43 LocationType="availability-zone",44 Filters=[{"Name": "location", "Values": ["us-east-1c"]}],45 )46 offerings.should.have.key("InstanceTypeOfferings")47 offerings = offerings["InstanceTypeOfferings"]48 offerings.should_not.be.empty49 offerings.should.have.length_of(353)50 assert all([o["LocationType"] == "availability-zone" for o in offerings])51 assert all([o["Location"] == "us-east-1c" for o in offerings])52 assert any([o["InstanceType"] == "a1.2xlarge" for o in offerings])53@mock_ec254def test_describe_instance_type_offering_filter_by_zone_id():55 client = boto3.client("ec2", "ca-central-1")56 offerings = client.describe_instance_type_offerings(57 LocationType="availability-zone-id",58 Filters=[59 {"Name": "location", "Values": ["cac1-az1"]},60 {"Name": "instance-type", "Values": ["c5.9xlarge"]},61 ],62 )63 offerings.should.have.key("InstanceTypeOfferings")64 offerings = offerings["InstanceTypeOfferings"]65 offerings.should_not.be.empty66 offerings.should.have.length_of(1)67 offerings[0]["LocationType"].should.equal("availability-zone-id")68 offerings[0]["InstanceType"].should.equal("c5.9xlarge")...
ec2_describer.py
Source:ec2_describer.py
...4class Ec2Describer:5 def __init__(self):6 self.session = boto3.session.Session()7 self.client = self.session.client("ec2")8 def describe_instance_type_offerings(self, itype):9 response = self.client.describe_instance_type_offerings(10 LocationType="availability-zone",11 # LocationType="availability-zone-id",12 Filters=[13 {14 "Name": "instance-type",15 "Values": [itype]16 }17 ]18 )...
__init__.py
Source:__init__.py
1"""2spotilyzer test mock paginators entry point3"""4# test imports5from .describe_instance_type_offerings \6 import MockDescribeInstanceTypeOfferingsPaginator7from .describe_spot_price_history import MockDescribeSpotPriceHistoryPaginator8from .describe_instance_types import MockDescribeInstanceTypesPaginator9# exports10paginators = {11 'describe_instance_type_offerings':12 MockDescribeInstanceTypeOfferingsPaginator(),13 'describe_spot_price_history': MockDescribeSpotPriceHistoryPaginator(),14 'describe_instance_types': MockDescribeInstanceTypesPaginator()...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!