mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 06:45:08 +00:00
128 lines
4.9 KiB
Python
128 lines
4.9 KiB
Python
from base64 import b64decode
|
|
|
|
from boto3 import client
|
|
from moto import mock_aws
|
|
|
|
from prowler.providers.aws.services.autoscaling.autoscaling_service import AutoScaling
|
|
from tests.providers.aws.audit_info_utils import (
|
|
AWS_ACCOUNT_NUMBER,
|
|
AWS_REGION_US_EAST_1,
|
|
set_mocked_aws_audit_info,
|
|
)
|
|
|
|
|
|
class Test_AutoScaling_Service:
|
|
# Test AutoScaling Service
|
|
@mock_aws
|
|
def test_service(self):
|
|
# AutoScaling client for this test class
|
|
audit_info = set_mocked_aws_audit_info([AWS_REGION_US_EAST_1])
|
|
autoscaling = AutoScaling(audit_info)
|
|
assert autoscaling.service == "autoscaling"
|
|
|
|
# Test AutoScaling Client
|
|
@mock_aws
|
|
def test_client(self):
|
|
# AutoScaling client for this test class
|
|
audit_info = set_mocked_aws_audit_info([AWS_REGION_US_EAST_1])
|
|
autoscaling = AutoScaling(audit_info)
|
|
for regional_client in autoscaling.regional_clients.values():
|
|
assert regional_client.__class__.__name__ == "AutoScaling"
|
|
|
|
# Test AutoScaling Session
|
|
@mock_aws
|
|
def test__get_session__(self):
|
|
# AutoScaling client for this test class
|
|
audit_info = set_mocked_aws_audit_info([AWS_REGION_US_EAST_1])
|
|
autoscaling = AutoScaling(audit_info)
|
|
assert autoscaling.session.__class__.__name__ == "Session"
|
|
|
|
# Test AutoScaling Session
|
|
@mock_aws
|
|
def test_audited_account(self):
|
|
# AutoScaling client for this test class
|
|
audit_info = set_mocked_aws_audit_info([AWS_REGION_US_EAST_1])
|
|
autoscaling = AutoScaling(audit_info)
|
|
assert autoscaling.audited_account == AWS_ACCOUNT_NUMBER
|
|
|
|
# Test AutoScaling Get APIs
|
|
@mock_aws
|
|
def test__describe_launch_configurations__(self):
|
|
# Generate AutoScaling Client
|
|
autoscaling_client = client("autoscaling", region_name=AWS_REGION_US_EAST_1)
|
|
# Create AutoScaling API
|
|
autoscaling_client.create_launch_configuration(
|
|
LaunchConfigurationName="tester1",
|
|
ImageId="ami-12c6146b",
|
|
InstanceType="t1.micro",
|
|
KeyName="the_keys",
|
|
SecurityGroups=["default", "default2"],
|
|
UserData="DB_PASSWORD=foobar123",
|
|
)
|
|
autoscaling_client.create_launch_configuration(
|
|
LaunchConfigurationName="tester2",
|
|
ImageId="ami-12c6146b",
|
|
InstanceType="t1.micro",
|
|
KeyName="the_keys",
|
|
SecurityGroups=["default", "default2"],
|
|
)
|
|
# AutoScaling client for this test class
|
|
audit_info = set_mocked_aws_audit_info([AWS_REGION_US_EAST_1])
|
|
autoscaling = AutoScaling(audit_info)
|
|
assert len(autoscaling.launch_configurations) == 2
|
|
assert autoscaling.launch_configurations[0].name == "tester1"
|
|
assert (
|
|
b64decode(autoscaling.launch_configurations[0].user_data).decode("utf-8")
|
|
== "DB_PASSWORD=foobar123"
|
|
)
|
|
assert autoscaling.launch_configurations[0].image_id == "ami-12c6146b"
|
|
assert autoscaling.launch_configurations[1].image_id == "ami-12c6146b"
|
|
assert autoscaling.launch_configurations[1].name == "tester2"
|
|
|
|
# Test Describe Auto Scaling Groups
|
|
@mock_aws
|
|
def test__describe_auto_scaling_groups__(self):
|
|
# Generate AutoScaling Client
|
|
autoscaling_client = client("autoscaling", region_name=AWS_REGION_US_EAST_1)
|
|
autoscaling_client.create_launch_configuration(
|
|
LaunchConfigurationName="test",
|
|
ImageId="ami-12c6146b",
|
|
InstanceType="t1.micro",
|
|
KeyName="the_keys",
|
|
SecurityGroups=["default", "default2"],
|
|
)
|
|
asg = autoscaling_client.create_auto_scaling_group(
|
|
AutoScalingGroupName="my-autoscaling-group",
|
|
LaunchConfigurationName="test",
|
|
MinSize=0,
|
|
MaxSize=0,
|
|
DesiredCapacity=0,
|
|
AvailabilityZones=["us-east-1a", "us-east-1b"],
|
|
Tags=[
|
|
{
|
|
"Key": "tag_test",
|
|
"Value": "value_test",
|
|
},
|
|
],
|
|
)
|
|
|
|
# AutoScaling client for this test class
|
|
audit_info = set_mocked_aws_audit_info([AWS_REGION_US_EAST_1])
|
|
autoscaling = AutoScaling(audit_info)
|
|
print("asg", asg)
|
|
assert len(autoscaling.groups) == 1
|
|
# create_auto_scaling_group doesn't return the ARN, can't check it
|
|
# assert autoscaling.groups[0].arn ==
|
|
assert autoscaling.groups[0].name == "my-autoscaling-group"
|
|
assert autoscaling.groups[0].region == AWS_REGION_US_EAST_1
|
|
assert autoscaling.groups[0].availability_zones == ["us-east-1a", "us-east-1b"]
|
|
assert autoscaling.groups[0].tags == [
|
|
{
|
|
"Key": "tag_test",
|
|
"PropagateAtLaunch": False,
|
|
"ResourceId": "my-autoscaling-group",
|
|
"ResourceType": "auto-scaling-group",
|
|
"Value": "value_test",
|
|
}
|
|
]
|