Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port #49746 to master #57139

Merged
merged 3 commits into from
Dec 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog/57139.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix boto_route53 issue with (multiple) VPCs.
7 changes: 5 additions & 2 deletions salt/states/boto_route53.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,8 +526,11 @@ def hosted_zone_present(
create = True
else:
if private_zone:
for v, d in deets.get("VPCs", {}).items():
if d["VPCId"] == vpc_id and d["VPCRegion"] == vpc_region:
vpcs = deets.get("VPCs", [])
if isinstance(vpcs, dict):
vpcs = vpcs.values()
for vpc in vpcs:
if vpc["VPCId"] == vpc_id and vpc["VPCRegion"] == vpc_region:
create = False
break
else:
Expand Down
57 changes: 56 additions & 1 deletion tests/pytests/unit/states/test_boto_route53.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,56 @@
"""
import pytest

import salt.modules.boto_route53 as boto53mod
import salt.modules.boto_vpc as botovpcmod
import salt.states.boto_route53 as boto_route53
from tests.support.mock import MagicMock, patch
from tests.support.mock import MagicMock, create_autospec, patch


@pytest.fixture
def configure_loader_modules():
return {boto_route53: {}}


@pytest.fixture
def patch_botomod_hosted_zones():
with patch.dict(
boto_route53.__salt__,
{
"boto_route53.describe_hosted_zones": create_autospec(
boto53mod.describe_hosted_zones
),
"boto_vpc.describe_vpcs": create_autospec(botovpcmod.describe_vpcs),
},
):
yield


@pytest.fixture
def fake_single_vpc(patch_botomod_hosted_zones):
boto_route53.__salt__["boto_vpc.describe_vpcs"].return_value = {
"vpcs": [{"region": "fnordland", "id": "fnord"}],
}
boto_route53.__salt__["boto_route53.describe_hosted_zones"].return_value = {
"HostedZone": {"Config": {"PrivateZone": "true"}},
"VPCs": {"VPC": {"VPCId": "fnord", "VPCRegion": "fnordland"}},
}


@pytest.fixture
def fake_multiple_vpcs(patch_botomod_hosted_zones):
boto_route53.__salt__["boto_vpc.describe_vpcs"].return_value = {
"vpcs": [{"region": "fnordland", "id": "fnord"}],
}
boto_route53.__salt__["boto_route53.describe_hosted_zones"].return_value = {
"HostedZone": {"Config": {"PrivateZone": "true"}},
"VPCs": [
{"VPCId": "fnord", "VPCRegion": "fnordland"},
{"VPCId": "fnord part 2", "VPCRegion": "fnordlandia"},
],
}


def test_present():
"""
Test to ensure the Route53 record is present.
Expand Down Expand Up @@ -67,3 +108,17 @@ def test_absent():
comt = "Route53 record {} set to be deleted.".format(name)
ret.update({"comment": comt, "result": None})
assert boto_route53.absent(name, zone, record_type) == ret


def test_hosted_zone_present_should_not_fail_when_one_vpc_in_deets(fake_single_vpc):
boto_route53.hosted_zone_present(
name="fnord", private_zone=True, vpc_region="fnordland", vpc_name="fnord"
)


def test_hosted_zone_present_should_not_fail_with_multiple_vpcs_in_deets(
fake_multiple_vpcs,
):
boto_route53.hosted_zone_present(
name="fnord", private_zone=True, vpc_region="fnordland", vpc_name="fnord"
)