Set the right dhcp_options id in the response

If the vpc has a dhcp_options associated with it the response should
include the right association.
This commit is contained in:
Rene Martin 2016-10-08 10:34:55 +01:00
commit b06d439a81
2 changed files with 13 additions and 2 deletions

View file

@ -321,3 +321,14 @@ def test_vpc_modify_enable_dns_hostnames():
response = vpc.describe_attribute(Attribute='enableDnsHostnames')
attr = response.get('EnableDnsHostnames')
attr.get('Value').should.be.ok
@mock_ec2
def test_vpc_associate_dhcp_options():
conn = boto.connect_vpc()
dhcp_options = conn.create_dhcp_options(SAMPLE_DOMAIN_NAME, SAMPLE_NAME_SERVERS)
vpc = conn.create_vpc("10.0.0.0/16")
conn.associate_dhcp_options(dhcp_options.id, vpc.id)
vpc.update()
dhcp_options.id.should.equal(vpc.dhcp_options_id)