Ejemplo n.º 1
0
 def test_gateway_in_subnet_exists_without_allocation_id(self):
     client = boto3.client('ec2', region_name=aws_region)
     gws, err_msg = (ng.gateway_in_subnet_exists(client,
                                                 'subnet-123456789',
                                                 check_mode=True))
     should_return = ng.DRY_RUN_GATEWAYS
     self.assertEqual(gws, should_return)
Ejemplo n.º 2
0
 def test_gateway_in_subnet_exists_with_allocation_id_does_not_exist(self):
     client = boto3.client('ec2', region_name=aws_region)
     gws, err_msg = (ng.gateway_in_subnet_exists(client,
                                                 'subnet-123456789',
                                                 'eipalloc-123',
                                                 check_mode=True))
     should_return = list()
     self.assertEqual(gws, should_return)
 def test_gateway_in_subnet_exists_without_allocation_id(self):
     client = boto3.client('ec2', region_name=aws_region)
     gws, err_msg = (
         ng.gateway_in_subnet_exists(
             client, 'subnet-123456789', check_mode=True
         )
     )
     should_return = ng.DRY_RUN_GATEWAYS
     self.assertEqual(gws, should_return)
 def test_gateway_in_subnet_exists_with_allocation_id_does_not_exist(self):
     client = boto3.client('ec2', region_name=aws_region)
     gws, err_msg = (
         ng.gateway_in_subnet_exists(
             client, 'subnet-123456789', 'eipalloc-123', check_mode=True
         )
     )
     should_return = list()
     self.assertEqual(gws, should_return)