mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 06:45:08 +00:00
94 lines
3.1 KiB
Python
94 lines
3.1 KiB
Python
from unittest.mock import patch
|
|
from uuid import uuid4
|
|
|
|
import botocore
|
|
from boto3 import session
|
|
|
|
from providers.aws.lib.audit_info.models import AWS_Audit_Info
|
|
from providers.aws.services.workspaces.workspaces_service import WorkSpaces
|
|
|
|
AWS_ACCOUNT_NUMBER = 123456789012
|
|
AWS_REGION = "eu-west-1"
|
|
|
|
|
|
workspace_id = str(uuid4())
|
|
|
|
make_api_call = botocore.client.BaseClient._make_api_call
|
|
|
|
|
|
def mock_make_api_call(self, operation_name, kwarg):
|
|
if operation_name == "DescribeWorkspaces":
|
|
return {
|
|
"Workspaces": [
|
|
{
|
|
"WorkspaceId": workspace_id,
|
|
"UserVolumeEncryptionEnabled": True,
|
|
"RootVolumeEncryptionEnabled": True,
|
|
},
|
|
],
|
|
}
|
|
return make_api_call(self, operation_name, kwarg)
|
|
|
|
|
|
def mock_generate_regional_clients(service, audit_info):
|
|
regional_client = audit_info.audit_session.client(service, region_name=AWS_REGION)
|
|
regional_client.region = AWS_REGION
|
|
return {AWS_REGION: regional_client}
|
|
|
|
|
|
@patch("botocore.client.BaseClient._make_api_call", new=mock_make_api_call)
|
|
@patch(
|
|
"providers.aws.services.workspaces.workspaces_service.generate_regional_clients",
|
|
new=mock_generate_regional_clients,
|
|
)
|
|
class Test_WorkSpaces_Service:
|
|
# Mocked Audit Info
|
|
def set_mocked_audit_info(self):
|
|
audit_info = AWS_Audit_Info(
|
|
original_session=None,
|
|
audit_session=session.Session(
|
|
profile_name=None,
|
|
botocore_session=None,
|
|
),
|
|
audited_account=AWS_ACCOUNT_NUMBER,
|
|
audited_user_id=None,
|
|
audited_partition="aws",
|
|
audited_identity_arn=None,
|
|
profile=None,
|
|
profile_region=None,
|
|
credentials=None,
|
|
assumed_role_info=None,
|
|
audited_regions=None,
|
|
organizations_metadata=None,
|
|
)
|
|
return audit_info
|
|
|
|
# Test WorkSpaces Service
|
|
def test_service(self):
|
|
audit_info = self.set_mocked_audit_info()
|
|
workspaces = WorkSpaces(audit_info)
|
|
assert workspaces.service == "workspaces"
|
|
|
|
# Test WorkSpaces client
|
|
def test_client(self):
|
|
audit_info = self.set_mocked_audit_info()
|
|
workspaces = WorkSpaces(audit_info)
|
|
for reg_client in workspaces.regional_clients.values():
|
|
assert reg_client.__class__.__name__ == "WorkSpaces"
|
|
|
|
# Test WorkSpaces session
|
|
def test__get_session__(self):
|
|
audit_info = self.set_mocked_audit_info()
|
|
workspaces = WorkSpaces(audit_info)
|
|
assert workspaces.session.__class__.__name__ == "Session"
|
|
|
|
# Test WorkSpaces describe workspaces
|
|
def test__describe_workspaces__(self):
|
|
audit_info = self.set_mocked_audit_info()
|
|
workspaces = WorkSpaces(audit_info)
|
|
assert len(workspaces.workspaces) == 1
|
|
assert workspaces.workspaces[0].id == workspace_id
|
|
assert workspaces.workspaces[0].region == AWS_REGION
|
|
assert workspaces.workspaces[0].user_volume_encryption_enabled
|
|
assert workspaces.workspaces[0].root_volume_encryption_enabled
|