-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest_assuming_session.py
54 lines (40 loc) · 1.95 KB
/
test_assuming_session.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
import pytest
from boto3.session import Session
from botocore.exceptions import NoRegionError
from moto import mock_ec2
from botocove import cove
# Query the region with different configurations of assuming session and
# environment variables. To make the assertions easier all `cove` calls set
# `raise_exception`. If set the assuming session region and the default region
# are always distinct to be able to assert the source of the query result.
def _query_region(session: Session) -> str:
with mock_ec2():
response = session.client("ec2").describe_availability_zones()
return response["AvailabilityZones"][0]["RegionName"]
@pytest.fixture(autouse=True)
def _org_with_one_member(mock_session: Session) -> None:
org_client = mock_session.client("organizations")
org_client.create_organization(FeatureSet="ALL")
org_client.create_account(Email="[email protected]", AccountName="Account 1")
@pytest.mark.usefixtures("_no_default_region")
def test_when_no_assuming_session_and_no_default_region_then_cove_raises_error() -> None: # noqa: 501
with pytest.raises(NoRegionError, match=r"^You must specify a region\.$"):
cove(_query_region, raise_exception=True)()
def test_when_no_assuming_session_then_cove_uses_default_region() -> None:
output = cove(_query_region, raise_exception=True)()
assert output["Results"][0]["Result"] == "eu-west-1"
@pytest.mark.usefixtures("_no_default_region")
def test_when_no_default_region_then_cove_uses_assuming_session_region() -> None:
output = cove(
_query_region,
assuming_session=Session(region_name="eu-central-1"),
raise_exception=True,
)()
assert output["Results"][0]["Result"] == "eu-central-1"
def test_cove_prefers_assuming_session_region() -> None:
output = cove(
_query_region,
assuming_session=Session(region_name="eu-central-1"),
raise_exception=True,
)()
assert output["Results"][0]["Result"] == "eu-central-1"