-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest_regions.py
89 lines (66 loc) · 2.56 KB
/
test_regions.py
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import pytest
from boto3.session import Session
from botocove import cove
from tests.moto_mock_org.moto_models import SmallOrg
def test_when_region_is_unspecified_then_result_has_default_region_key(
mock_small_org: SmallOrg,
) -> None:
@cove()
def do_nothing(session: Session) -> None:
pass
output = do_nothing()
assert output["Results"]
for result in output["Results"]:
assert result["Region"] == "eu-west-1"
def test_when_region_is_unspecified_then_output_has_one_result_per_account(
mock_session: Session, mock_small_org: SmallOrg
) -> None:
@cove()
def do_nothing(session: Session) -> None:
pass
output = do_nothing()
assert len(output["Results"]) == _count_member_accounts(mock_session)
def test_when_region_is_str_then_raises_type_error(mock_small_org: SmallOrg) -> None:
@cove(regions="eu-central-1") # type: ignore[arg-type]
def do_nothing() -> None:
pass
with pytest.raises(
TypeError, match=r"regions must be a list of str\. Got str 'eu-central-1'\."
):
do_nothing()
def test_when_region_is_empty_then_raises_value_error(mock_small_org: SmallOrg) -> None:
@cove(regions=[])
def do_nothing() -> None:
pass
with pytest.raises(
ValueError, match=r"regions must have at least 1 element\. Got \[\]\."
):
do_nothing()
def test_when_any_region_is_passed_then_result_has_region_key(
mock_small_org: SmallOrg,
) -> None:
@cove(regions=["eu-central-1"])
def do_nothing(session: Session) -> None:
pass
output = do_nothing()
assert output["Results"]
for result in output["Results"]:
assert result["Region"] == "eu-central-1"
def test_when_two_regions_are_passed_then_output_has_one_result_per_account_per_region(
mock_session: Session, mock_small_org: SmallOrg
) -> None:
@cove(regions=["eu-central-1", "us-east-1"])
def do_nothing(session: Session) -> None:
pass
output = do_nothing()
number_of_member_accounts = _count_member_accounts(mock_session)
for region in ["eu-central-1", "us-east-1"]:
number_of_results_per_region = sum(
1 for result in output["Results"] if result["Region"] == region
)
assert number_of_results_per_region == number_of_member_accounts
def _count_member_accounts(session: Session) -> int:
client = session.client("organizations")
pages = client.get_paginator("list_accounts").paginate()
number_of_member_accounts = sum(1 for page in pages for _ in page["Accounts"]) - 1
return number_of_member_accounts