| 
									
										
										
										
											2014-08-27 11:17:06 -04:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  | # Ensure 'assert_raises' context manager support for Python 2.6 | 
					
						
							|  |  |  | import tests.backport_assert_raises | 
					
						
							|  |  |  | from nose.tools import assert_raises | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 00:19:47 +02:00
										 |  |  | import boto3 | 
					
						
							| 
									
										
										
										
											2017-02-23 19:43:48 -05:00
										 |  |  | from botocore.exceptions import ClientError | 
					
						
							| 
									
										
										
										
											2013-02-21 23:13:01 -05:00
										 |  |  | import boto | 
					
						
							| 
									
										
										
										
											2014-11-15 13:50:58 -05:00
										 |  |  | import boto.cloudformation | 
					
						
							|  |  |  | import boto.ec2 | 
					
						
							| 
									
										
										
										
											2017-02-23 19:43:48 -05:00
										 |  |  | from boto.exception import EC2ResponseError | 
					
						
							| 
									
										
										
										
											2013-08-03 17:21:25 -04:00
										 |  |  | import sure  # noqa | 
					
						
							| 
									
										
										
										
											2013-02-21 23:13:01 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | from moto import mock_ec2, mock_cloudformation_deprecated, mock_ec2_deprecated | 
					
						
							| 
									
										
										
										
											2014-09-08 23:05:40 -07:00
										 |  |  | from tests.helpers import requires_boto_gte | 
					
						
							| 
									
										
										
										
											2014-11-03 14:24:22 -05:00
										 |  |  | from tests.test_cloudformation.fixtures import vpc_eni | 
					
						
							|  |  |  | import json | 
					
						
							| 
									
										
										
										
											2013-02-21 23:13:01 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_ec2_deprecated | 
					
						
							| 
									
										
										
										
											2013-02-21 23:13:01 -05:00
										 |  |  | def test_elastic_network_interfaces(): | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  |     conn = boto.connect_vpc('the_key', 'the_secret') | 
					
						
							|  |  |  |     vpc = conn.create_vpc("10.0.0.0/16") | 
					
						
							|  |  |  |     subnet = conn.create_subnet(vpc.id, "10.0.0.0/18") | 
					
						
							| 
									
										
										
										
											2016-10-15 23:08:44 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 19:43:48 -05:00
										 |  |  |     with assert_raises(EC2ResponseError) as ex: | 
					
						
							| 
									
										
										
										
											2016-10-15 23:08:44 +10:00
										 |  |  |         eni = conn.create_network_interface(subnet.id, dry_run=True) | 
					
						
							| 
									
										
										
										
											2017-02-23 19:43:48 -05:00
										 |  |  |     ex.exception.error_code.should.equal('DryRunOperation') | 
					
						
							| 
									
										
										
										
											2016-10-15 23:08:44 +10:00
										 |  |  |     ex.exception.status.should.equal(400) | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     ex.exception.message.should.equal( | 
					
						
							|  |  |  |         'An error occurred (DryRunOperation) when calling the CreateNetworkInterface operation: Request would have succeeded, but DryRun flag is set') | 
					
						
							| 
									
										
										
										
											2016-10-15 23:08:44 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  |     eni = conn.create_network_interface(subnet.id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     all_enis = conn.get_all_network_interfaces() | 
					
						
							|  |  |  |     all_enis.should.have.length_of(1) | 
					
						
							|  |  |  |     eni = all_enis[0] | 
					
						
							|  |  |  |     eni.groups.should.have.length_of(0) | 
					
						
							|  |  |  |     eni.private_ip_addresses.should.have.length_of(0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 19:43:48 -05:00
										 |  |  |     with assert_raises(EC2ResponseError) as ex: | 
					
						
							| 
									
										
										
										
											2016-10-15 23:08:44 +10:00
										 |  |  |         conn.delete_network_interface(eni.id, dry_run=True) | 
					
						
							| 
									
										
										
										
											2017-02-23 19:43:48 -05:00
										 |  |  |     ex.exception.error_code.should.equal('DryRunOperation') | 
					
						
							| 
									
										
										
										
											2016-10-15 23:08:44 +10:00
										 |  |  |     ex.exception.status.should.equal(400) | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     ex.exception.message.should.equal( | 
					
						
							|  |  |  |         'An error occurred (DryRunOperation) when calling the DeleteNetworkInterface operation: Request would have succeeded, but DryRun flag is set') | 
					
						
							| 
									
										
										
										
											2016-10-15 23:08:44 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  |     conn.delete_network_interface(eni.id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     all_enis = conn.get_all_network_interfaces() | 
					
						
							|  |  |  |     all_enis.should.have.length_of(0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with assert_raises(EC2ResponseError) as cm: | 
					
						
							|  |  |  |         conn.delete_network_interface(eni.id) | 
					
						
							| 
									
										
										
										
											2017-02-23 19:43:48 -05:00
										 |  |  |     cm.exception.error_code.should.equal('InvalidNetworkInterfaceID.NotFound') | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  |     cm.exception.status.should.equal(400) | 
					
						
							|  |  |  |     cm.exception.request_id.should_not.be.none | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_ec2_deprecated | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  | def test_elastic_network_interfaces_subnet_validation(): | 
					
						
							|  |  |  |     conn = boto.connect_vpc('the_key', 'the_secret') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with assert_raises(EC2ResponseError) as cm: | 
					
						
							|  |  |  |         conn.create_network_interface("subnet-abcd1234") | 
					
						
							| 
									
										
										
										
											2017-02-23 19:43:48 -05:00
										 |  |  |     cm.exception.error_code.should.equal('InvalidSubnetID.NotFound') | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  |     cm.exception.status.should.equal(400) | 
					
						
							|  |  |  |     cm.exception.request_id.should_not.be.none | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_ec2_deprecated | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  | def test_elastic_network_interfaces_with_private_ip(): | 
					
						
							|  |  |  |     conn = boto.connect_vpc('the_key', 'the_secret') | 
					
						
							|  |  |  |     vpc = conn.create_vpc("10.0.0.0/16") | 
					
						
							|  |  |  |     subnet = conn.create_subnet(vpc.id, "10.0.0.0/18") | 
					
						
							|  |  |  |     private_ip = "54.0.0.1" | 
					
						
							|  |  |  |     eni = conn.create_network_interface(subnet.id, private_ip) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     all_enis = conn.get_all_network_interfaces() | 
					
						
							|  |  |  |     all_enis.should.have.length_of(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     eni = all_enis[0] | 
					
						
							|  |  |  |     eni.groups.should.have.length_of(0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     eni.private_ip_addresses.should.have.length_of(1) | 
					
						
							|  |  |  |     eni.private_ip_addresses[0].private_ip_address.should.equal(private_ip) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_ec2_deprecated | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  | def test_elastic_network_interfaces_with_groups(): | 
					
						
							|  |  |  |     conn = boto.connect_vpc('the_key', 'the_secret') | 
					
						
							|  |  |  |     vpc = conn.create_vpc("10.0.0.0/16") | 
					
						
							|  |  |  |     subnet = conn.create_subnet(vpc.id, "10.0.0.0/18") | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     security_group1 = conn.create_security_group( | 
					
						
							|  |  |  |         'test security group #1', 'this is a test security group') | 
					
						
							|  |  |  |     security_group2 = conn.create_security_group( | 
					
						
							|  |  |  |         'test security group #2', 'this is a test security group') | 
					
						
							|  |  |  |     conn.create_network_interface( | 
					
						
							|  |  |  |         subnet.id, groups=[security_group1.id, security_group2.id]) | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     all_enis = conn.get_all_network_interfaces() | 
					
						
							|  |  |  |     all_enis.should.have.length_of(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     eni = all_enis[0] | 
					
						
							|  |  |  |     eni.groups.should.have.length_of(2) | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     set([group.id for group in eni.groups]).should.equal( | 
					
						
							|  |  |  |         set([security_group1.id, security_group2.id])) | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-08 23:05:40 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | @requires_boto_gte("2.12.0") | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_ec2_deprecated | 
					
						
							| 
									
										
										
										
											2014-09-08 23:05:40 -07:00
										 |  |  | def test_elastic_network_interfaces_modify_attribute(): | 
					
						
							|  |  |  |     conn = boto.connect_vpc('the_key', 'the_secret') | 
					
						
							|  |  |  |     vpc = conn.create_vpc("10.0.0.0/16") | 
					
						
							|  |  |  |     subnet = conn.create_subnet(vpc.id, "10.0.0.0/18") | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     security_group1 = conn.create_security_group( | 
					
						
							|  |  |  |         'test security group #1', 'this is a test security group') | 
					
						
							|  |  |  |     security_group2 = conn.create_security_group( | 
					
						
							|  |  |  |         'test security group #2', 'this is a test security group') | 
					
						
							| 
									
										
										
										
											2014-09-08 23:05:40 -07:00
										 |  |  |     conn.create_network_interface(subnet.id, groups=[security_group1.id]) | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     all_enis = conn.get_all_network_interfaces() | 
					
						
							|  |  |  |     all_enis.should.have.length_of(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     eni = all_enis[0] | 
					
						
							|  |  |  |     eni.groups.should.have.length_of(1) | 
					
						
							|  |  |  |     eni.groups[0].id.should.equal(security_group1.id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 19:43:48 -05:00
										 |  |  |     with assert_raises(EC2ResponseError) as ex: | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |         conn.modify_network_interface_attribute( | 
					
						
							|  |  |  |             eni.id, 'groupset', [security_group2.id], dry_run=True) | 
					
						
							| 
									
										
										
										
											2017-02-23 19:43:48 -05:00
										 |  |  |     ex.exception.error_code.should.equal('DryRunOperation') | 
					
						
							| 
									
										
										
										
											2016-10-15 23:08:44 +10:00
										 |  |  |     ex.exception.status.should.equal(400) | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     ex.exception.message.should.equal( | 
					
						
							|  |  |  |         'An error occurred (DryRunOperation) when calling the ModifyNetworkInterface operation: Request would have succeeded, but DryRun flag is set') | 
					
						
							| 
									
										
										
										
											2016-10-15 23:08:44 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     conn.modify_network_interface_attribute( | 
					
						
							|  |  |  |         eni.id, 'groupset', [security_group2.id]) | 
					
						
							| 
									
										
										
										
											2014-09-08 23:05:40 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     all_enis = conn.get_all_network_interfaces() | 
					
						
							|  |  |  |     all_enis.should.have.length_of(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     eni = all_enis[0] | 
					
						
							|  |  |  |     eni.groups.should.have.length_of(1) | 
					
						
							|  |  |  |     eni.groups[0].id.should.equal(security_group2.id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_ec2_deprecated | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  | def test_elastic_network_interfaces_filtering(): | 
					
						
							|  |  |  |     conn = boto.connect_vpc('the_key', 'the_secret') | 
					
						
							|  |  |  |     vpc = conn.create_vpc("10.0.0.0/16") | 
					
						
							|  |  |  |     subnet = conn.create_subnet(vpc.id, "10.0.0.0/18") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     security_group1 = conn.create_security_group( | 
					
						
							|  |  |  |         'test security group #1', 'this is a test security group') | 
					
						
							|  |  |  |     security_group2 = conn.create_security_group( | 
					
						
							|  |  |  |         'test security group #2', 'this is a test security group') | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     eni1 = conn.create_network_interface( | 
					
						
							|  |  |  |         subnet.id, groups=[security_group1.id, security_group2.id]) | 
					
						
							|  |  |  |     eni2 = conn.create_network_interface( | 
					
						
							|  |  |  |         subnet.id, groups=[security_group1.id]) | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  |     eni3 = conn.create_network_interface(subnet.id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     all_enis = conn.get_all_network_interfaces() | 
					
						
							|  |  |  |     all_enis.should.have.length_of(3) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-14 14:42:20 -05:00
										 |  |  |     # Filter by NetworkInterfaceId | 
					
						
							|  |  |  |     enis_by_id = conn.get_all_network_interfaces([eni1.id]) | 
					
						
							|  |  |  |     enis_by_id.should.have.length_of(1) | 
					
						
							|  |  |  |     set([eni.id for eni in enis_by_id]).should.equal(set([eni1.id])) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  |     # Filter by ENI ID | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     enis_by_id = conn.get_all_network_interfaces( | 
					
						
							|  |  |  |         filters={'network-interface-id': eni1.id}) | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  |     enis_by_id.should.have.length_of(1) | 
					
						
							|  |  |  |     set([eni.id for eni in enis_by_id]).should.equal(set([eni1.id])) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Filter by Security Group | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     enis_by_group = conn.get_all_network_interfaces( | 
					
						
							|  |  |  |         filters={'group-id': security_group1.id}) | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  |     enis_by_group.should.have.length_of(2) | 
					
						
							| 
									
										
										
										
											2015-02-14 14:42:20 -05:00
										 |  |  |     set([eni.id for eni in enis_by_group]).should.equal(set([eni1.id, eni2.id])) | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Filter by ENI ID and Security Group | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     enis_by_group = conn.get_all_network_interfaces( | 
					
						
							|  |  |  |         filters={'network-interface-id': eni1.id, 'group-id': security_group1.id}) | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  |     enis_by_group.should.have.length_of(1) | 
					
						
							|  |  |  |     set([eni.id for eni in enis_by_group]).should.equal(set([eni1.id])) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Unsupported filter | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     conn.get_all_network_interfaces.when.called_with( | 
					
						
							|  |  |  |         filters={'not-implemented-filter': 'foobar'}).should.throw(NotImplementedError) | 
					
						
							| 
									
										
										
										
											2014-09-08 16:50:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 14:24:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 00:19:47 +02:00
										 |  |  | @mock_ec2 | 
					
						
							|  |  |  | def test_elastic_network_interfaces_get_by_tag_name(): | 
					
						
							|  |  |  |     ec2 = boto3.resource('ec2', region_name='us-west-2') | 
					
						
							|  |  |  |     ec2_client = boto3.client('ec2', region_name='us-west-2') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     vpc = ec2.create_vpc(CidrBlock='10.0.0.0/16') | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     subnet = ec2.create_subnet( | 
					
						
							|  |  |  |         VpcId=vpc.id, CidrBlock='10.0.0.0/24', AvailabilityZone='us-west-2a') | 
					
						
							| 
									
										
										
										
											2016-05-08 00:19:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     eni1 = ec2.create_network_interface( | 
					
						
							|  |  |  |         SubnetId=subnet.id, PrivateIpAddress='10.0.10.5') | 
					
						
							| 
									
										
										
										
											2016-10-15 23:08:44 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 19:43:48 -05:00
										 |  |  |     with assert_raises(ClientError) as ex: | 
					
						
							| 
									
										
										
										
											2016-10-15 23:08:44 +10:00
										 |  |  |         eni1.create_tags(Tags=[{'Key': 'Name', 'Value': 'eni1'}], DryRun=True) | 
					
						
							| 
									
										
										
										
											2017-02-23 19:43:48 -05:00
										 |  |  |     ex.exception.response['Error']['Code'].should.equal('DryRunOperation') | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     ex.exception.response['ResponseMetadata'][ | 
					
						
							|  |  |  |         'HTTPStatusCode'].should.equal(400) | 
					
						
							|  |  |  |     ex.exception.response['Error']['Message'].should.equal( | 
					
						
							|  |  |  |         'An error occurred (DryRunOperation) when calling the CreateTags operation: Request would have succeeded, but DryRun flag is set') | 
					
						
							| 
									
										
										
										
											2016-10-15 23:08:44 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 00:19:47 +02:00
										 |  |  |     eni1.create_tags(Tags=[{'Key': 'Name', 'Value': 'eni1'}]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # The status of the new interface should be 'available' | 
					
						
							|  |  |  |     waiter = ec2_client.get_waiter('network_interface_available') | 
					
						
							|  |  |  |     waiter.wait(NetworkInterfaceIds=[eni1.id]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filters = [{'Name': 'tag:Name', 'Values': ['eni1']}] | 
					
						
							|  |  |  |     enis = list(ec2.network_interfaces.filter(Filters=filters)) | 
					
						
							|  |  |  |     enis.should.have.length_of(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filters = [{'Name': 'tag:Name', 'Values': ['wrong-name']}] | 
					
						
							|  |  |  |     enis = list(ec2.network_interfaces.filter(Filters=filters)) | 
					
						
							|  |  |  |     enis.should.have.length_of(0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-22 14:33:19 +01:00
										 |  |  | @mock_ec2 | 
					
						
							|  |  |  | def test_elastic_network_interfaces_get_by_availability_zone(): | 
					
						
							|  |  |  |     ec2 = boto3.resource('ec2', region_name='us-west-2') | 
					
						
							|  |  |  |     ec2_client = boto3.client('ec2', region_name='us-west-2') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     vpc = ec2.create_vpc(CidrBlock='10.0.0.0/16') | 
					
						
							|  |  |  |     subnet1 = ec2.create_subnet( | 
					
						
							|  |  |  |         VpcId=vpc.id, CidrBlock='10.0.0.0/24', AvailabilityZone='us-west-2a') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     subnet2 = ec2.create_subnet( | 
					
						
							|  |  |  |         VpcId=vpc.id, CidrBlock='10.0.1.0/24', AvailabilityZone='us-west-2b') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     eni1 = ec2.create_network_interface( | 
					
						
							|  |  |  |         SubnetId=subnet1.id, PrivateIpAddress='10.0.0.15') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     eni2 = ec2.create_network_interface( | 
					
						
							|  |  |  |         SubnetId=subnet2.id, PrivateIpAddress='10.0.1.15') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # The status of the new interface should be 'available' | 
					
						
							|  |  |  |     waiter = ec2_client.get_waiter('network_interface_available') | 
					
						
							|  |  |  |     waiter.wait(NetworkInterfaceIds=[eni1.id, eni2.id]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filters = [{'Name': 'availability-zone', 'Values': ['us-west-2a']}] | 
					
						
							|  |  |  |     enis = list(ec2.network_interfaces.filter(Filters=filters)) | 
					
						
							|  |  |  |     enis.should.have.length_of(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filters = [{'Name': 'availability-zone', 'Values': ['us-west-2c']}] | 
					
						
							|  |  |  |     enis = list(ec2.network_interfaces.filter(Filters=filters)) | 
					
						
							|  |  |  |     enis.should.have.length_of(0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 00:19:47 +02:00
										 |  |  | @mock_ec2 | 
					
						
							|  |  |  | def test_elastic_network_interfaces_get_by_private_ip(): | 
					
						
							|  |  |  |     ec2 = boto3.resource('ec2', region_name='us-west-2') | 
					
						
							|  |  |  |     ec2_client = boto3.client('ec2', region_name='us-west-2') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     vpc = ec2.create_vpc(CidrBlock='10.0.0.0/16') | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     subnet = ec2.create_subnet( | 
					
						
							|  |  |  |         VpcId=vpc.id, CidrBlock='10.0.0.0/24', AvailabilityZone='us-west-2a') | 
					
						
							| 
									
										
										
										
											2016-05-08 00:19:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     eni1 = ec2.create_network_interface( | 
					
						
							|  |  |  |         SubnetId=subnet.id, PrivateIpAddress='10.0.10.5') | 
					
						
							| 
									
										
										
										
											2016-05-08 00:19:47 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # The status of the new interface should be 'available' | 
					
						
							|  |  |  |     waiter = ec2_client.get_waiter('network_interface_available') | 
					
						
							|  |  |  |     waiter.wait(NetworkInterfaceIds=[eni1.id]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filters = [{'Name': 'private-ip-address', 'Values': ['10.0.10.5']}] | 
					
						
							|  |  |  |     enis = list(ec2.network_interfaces.filter(Filters=filters)) | 
					
						
							|  |  |  |     enis.should.have.length_of(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filters = [{'Name': 'private-ip-address', 'Values': ['10.0.10.10']}] | 
					
						
							|  |  |  |     enis = list(ec2.network_interfaces.filter(Filters=filters)) | 
					
						
							|  |  |  |     enis.should.have.length_of(0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filters = [{'Name': 'addresses.private-ip-address', 'Values': ['10.0.10.5']}] | 
					
						
							|  |  |  |     enis = list(ec2.network_interfaces.filter(Filters=filters)) | 
					
						
							|  |  |  |     enis.should.have.length_of(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filters = [{'Name': 'addresses.private-ip-address', 'Values': ['10.0.10.10']}] | 
					
						
							|  |  |  |     enis = list(ec2.network_interfaces.filter(Filters=filters)) | 
					
						
							|  |  |  |     enis.should.have.length_of(0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @mock_ec2 | 
					
						
							|  |  |  | def test_elastic_network_interfaces_get_by_vpc_id(): | 
					
						
							|  |  |  |     ec2 = boto3.resource('ec2', region_name='us-west-2') | 
					
						
							|  |  |  |     ec2_client = boto3.client('ec2', region_name='us-west-2') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     vpc = ec2.create_vpc(CidrBlock='10.0.0.0/16') | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     subnet = ec2.create_subnet( | 
					
						
							|  |  |  |         VpcId=vpc.id, CidrBlock='10.0.0.0/24', AvailabilityZone='us-west-2a') | 
					
						
							| 
									
										
										
										
											2016-05-08 00:19:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     eni1 = ec2.create_network_interface( | 
					
						
							|  |  |  |         SubnetId=subnet.id, PrivateIpAddress='10.0.10.5') | 
					
						
							| 
									
										
										
										
											2016-05-08 00:19:47 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # The status of the new interface should be 'available' | 
					
						
							|  |  |  |     waiter = ec2_client.get_waiter('network_interface_available') | 
					
						
							|  |  |  |     waiter.wait(NetworkInterfaceIds=[eni1.id]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filters = [{'Name': 'vpc-id', 'Values': [subnet.vpc_id]}] | 
					
						
							|  |  |  |     enis = list(ec2.network_interfaces.filter(Filters=filters)) | 
					
						
							|  |  |  |     enis.should.have.length_of(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filters = [{'Name': 'vpc-id', 'Values': ['vpc-aaaa1111']}] | 
					
						
							|  |  |  |     enis = list(ec2.network_interfaces.filter(Filters=filters)) | 
					
						
							|  |  |  |     enis.should.have.length_of(0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @mock_ec2 | 
					
						
							|  |  |  | def test_elastic_network_interfaces_get_by_subnet_id(): | 
					
						
							|  |  |  |     ec2 = boto3.resource('ec2', region_name='us-west-2') | 
					
						
							|  |  |  |     ec2_client = boto3.client('ec2', region_name='us-west-2') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     vpc = ec2.create_vpc(CidrBlock='10.0.0.0/16') | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     subnet = ec2.create_subnet( | 
					
						
							|  |  |  |         VpcId=vpc.id, CidrBlock='10.0.0.0/24', AvailabilityZone='us-west-2a') | 
					
						
							| 
									
										
										
										
											2016-05-08 00:19:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     eni1 = ec2.create_network_interface( | 
					
						
							|  |  |  |         SubnetId=subnet.id, PrivateIpAddress='10.0.10.5') | 
					
						
							| 
									
										
										
										
											2016-05-08 00:19:47 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # The status of the new interface should be 'available' | 
					
						
							|  |  |  |     waiter = ec2_client.get_waiter('network_interface_available') | 
					
						
							|  |  |  |     waiter.wait(NetworkInterfaceIds=[eni1.id]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filters = [{'Name': 'subnet-id', 'Values': [subnet.id]}] | 
					
						
							|  |  |  |     enis = list(ec2.network_interfaces.filter(Filters=filters)) | 
					
						
							|  |  |  |     enis.should.have.length_of(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     filters = [{'Name': 'subnet-id', 'Values': ['subnet-aaaa1111']}] | 
					
						
							|  |  |  |     enis = list(ec2.network_interfaces.filter(Filters=filters)) | 
					
						
							|  |  |  |     enis.should.have.length_of(0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-15 22:35:45 -05:00
										 |  |  | @mock_ec2_deprecated | 
					
						
							|  |  |  | @mock_cloudformation_deprecated | 
					
						
							| 
									
										
										
										
											2014-11-03 14:24:22 -05:00
										 |  |  | def test_elastic_network_interfaces_cloudformation(): | 
					
						
							|  |  |  |     template = vpc_eni.template | 
					
						
							|  |  |  |     template_json = json.dumps(template) | 
					
						
							| 
									
										
										
										
											2014-11-15 13:50:58 -05:00
										 |  |  |     conn = boto.cloudformation.connect_to_region("us-west-1") | 
					
						
							| 
									
										
										
										
											2014-11-03 14:24:22 -05:00
										 |  |  |     conn.create_stack( | 
					
						
							|  |  |  |         "test_stack", | 
					
						
							|  |  |  |         template_body=template_json, | 
					
						
							| 
									
										
										
										
											2015-02-14 14:42:20 -05:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2014-11-15 13:50:58 -05:00
										 |  |  |     ec2_conn = boto.ec2.connect_to_region("us-west-1") | 
					
						
							| 
									
										
										
										
											2014-11-03 14:24:22 -05:00
										 |  |  |     eni = ec2_conn.get_all_network_interfaces()[0] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     stack = conn.describe_stacks()[0] | 
					
						
							|  |  |  |     resources = stack.describe_resources() | 
					
						
							| 
									
										
										
										
											2017-02-23 21:37:43 -05:00
										 |  |  |     cfn_eni = [resource for resource in resources if resource.resource_type == | 
					
						
							|  |  |  |                'AWS::EC2::NetworkInterface'][0] | 
					
						
							| 
									
										
										
										
											2014-11-03 14:24:22 -05:00
										 |  |  |     cfn_eni.physical_resource_id.should.equal(eni.id) |