Skip to content

Commit

Permalink
Add some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong committed Aug 27, 2024
1 parent e9b7498 commit 42e8ad7
Showing 1 changed file with 162 additions and 0 deletions.
162 changes: 162 additions & 0 deletions test/unit/module/template/transforms/test_language_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,168 @@ def test_bad_mapping(self):
)


class TestTransformValues(TestCase):
def setUp(self) -> None:
self.template_obj = convert_dict(
{
"Transform": ["AWS::LanguageExtensions"],
"Mappings": {
"111111111111": {
"A": {"AppName": "appa-dev"},
"B": {"AppName": "appb-dev"},
},
"222222222222": {
"A": {"AppName": "appa-qa"},
"B": {"AppName": "appb-qa"},
},
},
"Resources": {
"Fn::ForEach::Regions": [
"Region",
["A"],
{
"${Region}Role": {
"Type": "AWS::IAM::Role",
"Properties": {
"RoleName": {
"Fn::Sub": [
"${appname}",
{
"appname": {
"Fn::FindInMap": [
{"Ref": "AWS::AccountId"},
{"Ref": "Region"},
"AppName",
]
}
},
]
},
"AssumeRolePolicyDocument": {
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": ["ec2.amazonaws.com"]
},
"Action": ["sts:AssumeRole"],
}
],
},
"Path": "/",
},
}
},
],
"Fn::ForEach::NewRegions": [
"Region",
["B"],
{
"${Region}Role": {
"Type": "AWS::IAM::Role",
"Properties": {
"RoleName": {
"Fn::Sub": [
"${appname}",
{
"appname": {
"Fn::FindInMap": [
{"Ref": "AWS::AccountId"},
{"Ref": "Region"},
"AppName",
]
}
},
]
},
"AssumeRolePolicyDocument": {
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": ["ec2.amazonaws.com"]
},
"Action": ["sts:AssumeRole"],
}
],
},
"Path": "/",
},
}
},
],
},
}
)

self.result = {
"Mappings": {
"111111111111": {
"A": {"AppName": "appa-dev"},
"B": {"AppName": "appb-dev"},
},
"222222222222": {
"A": {"AppName": "appa-qa"},
"B": {"AppName": "appb-qa"},
},
},
"Resources": {
"ARole": {
"Properties": {
"AssumeRolePolicyDocument": {
"Statement": [
{
"Action": ["sts:AssumeRole"],
"Effect": "Allow",
"Principal": {"Service": ["ec2.amazonaws.com"]},
}
],
"Version": "2012-10-17",
},
"Path": "/",
"RoleName": {
"Fn::Sub": ["${appname}", {"appname": "appa-dev"}]
},
},
"Type": "AWS::IAM::Role",
},
"BRole": {
"Properties": {
"AssumeRolePolicyDocument": {
"Statement": [
{
"Action": ["sts:AssumeRole"],
"Effect": "Allow",
"Principal": {"Service": ["ec2.amazonaws.com"]},
}
],
"Version": "2012-10-17",
},
"Path": "/",
"RoleName": {
"Fn::Sub": ["${appname}", {"appname": "appb-dev"}]
},
},
"Type": "AWS::IAM::Role",
},
},
"Transform": ["AWS::LanguageExtensions"],
}

def test_transform(self):
self.maxDiff = None
cfn = Template(filename="", template=self.template_obj, regions=["us-east-1"])
matches, template = language_extension(cfn)
self.assertListEqual(matches, [])
self.assertDictEqual(
template,
self.result,
template,
)


def nested_set(dic, keys, value):
for key in keys[:-1]:
if isinstance(key, str):
Expand Down

0 comments on commit 42e8ad7

Please sign in to comment.