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
|
from tests.unit import AWSMockServiceTestCase
from boto.ec2.connection import EC2Connection
from boto.ec2.reservedinstance import ReservedInstance
class TestReservedInstancesSet(AWSMockServiceTestCase):
connection_class = EC2Connection
def default_body(self):
return b"""
<reservedInstancesSet>
<item>
<reservedInstancesId>ididididid</reservedInstancesId>
<instanceType>t1.micro</instanceType>
<start>2014-05-03T14:10:10.944Z</start>
<end>2014-05-03T14:10:11.000Z</end>
<duration>64800000</duration>
<fixedPrice>62.5</fixedPrice>
<usagePrice>0.0</usagePrice>
<instanceCount>5</instanceCount>
<productDescription>Linux/UNIX</productDescription>
<state>retired</state>
<instanceTenancy>default</instanceTenancy>
<currencyCode>USD</currencyCode>
<offeringType>Heavy Utilization</offeringType>
<recurringCharges>
<item>
<frequency>Hourly</frequency>
<amount>0.005</amount>
</item>
</recurringCharges>
</item>
</reservedInstancesSet>"""
def test_get_all_reserved_instaces(self):
self.set_http_response(status_code=200)
response = self.service_connection.get_all_reserved_instances()
self.assertEqual(len(response), 1)
self.assertTrue(isinstance(response[0], ReservedInstance))
self.assertEquals(response[0].id, 'ididididid')
self.assertEquals(response[0].instance_count, 5)
self.assertEquals(response[0].start, '2014-05-03T14:10:10.944Z')
self.assertEquals(response[0].end, '2014-05-03T14:10:11.000Z')
|