From fa21336ff259696ac78110f3f8631853ae54c87d Mon Sep 17 00:00:00 2001 From: Shreya Date: Fri, 16 Apr 2021 12:53:51 +0530 Subject: [PATCH] Move all unit test files to a separate directory --- monkey/{ => tests}/common/cloud/aws/test_aws_instance.py | 0 monkey/{ => tests}/common/cloud/aws/test_aws_service.py | 0 monkey/{ => tests}/common/cloud/azure/test_azure_instance.py | 0 monkey/{ => tests}/common/cloud/gcp/test_gcp_instance.py | 0 monkey/{ => tests}/common/network/test_network_utils.py | 0 monkey/{ => tests}/common/network/test_segmentation_utils.py | 0 monkey/{ => tests}/common/utils/test_shellcode_obfuscator.py | 0 .../{ => tests}/infection_monkey/exploit/tests/test_zerologon.py | 0 .../exploit/tests/zerologon_utils/test_vuln_assessment.py | 0 monkey/{ => tests}/infection_monkey/exploit/tools/test_helpers.py | 0 monkey/{ => tests}/infection_monkey/exploit/tools/test_payload.py | 0 .../infection_monkey/model/test_victim_host_generator.py | 0 .../infection_monkey/network/test_postgresql_finger.py | 0 .../post_breach/tests/actions/test_users_custom_pba.py | 0 .../system_info/windows_cred_collector/test_pypykatz_handler.py | 0 .../infection_monkey/telemetry/tests/attack/test_attack_telem.py | 0 .../infection_monkey/telemetry/tests/attack/test_t1005_telem.py | 0 .../infection_monkey/telemetry/tests/attack/test_t1035_telem.py | 0 .../infection_monkey/telemetry/tests/attack/test_t1064_telem.py | 0 .../infection_monkey/telemetry/tests/attack/test_t1105_telem.py | 0 .../infection_monkey/telemetry/tests/attack/test_t1106_telem.py | 0 .../infection_monkey/telemetry/tests/attack/test_t1107_telem.py | 0 .../infection_monkey/telemetry/tests/attack/test_t1129_telem.py | 0 .../infection_monkey/telemetry/tests/attack/test_t1197_telem.py | 0 .../infection_monkey/telemetry/tests/attack/test_t1222_telem.py | 0 .../infection_monkey/telemetry/tests/attack/test_usage_telem.py | 0 .../telemetry/tests/attack/test_victim_host_telem.py | 0 .../infection_monkey/telemetry/tests/test_exploit_telem.py | 0 .../infection_monkey/telemetry/tests/test_post_breach_telem.py | 0 .../infection_monkey/telemetry/tests/test_scan_telem.py | 0 .../infection_monkey/telemetry/tests/test_state_telem.py | 0 .../infection_monkey/telemetry/tests/test_system_info_telem.py | 0 .../infection_monkey/telemetry/tests/test_trace_telem.py | 0 .../infection_monkey/telemetry/tests/test_tunnel_telem.py | 0 monkey/{ => tests}/infection_monkey/utils/linux/test_users.py | 0 monkey/{ => tests}/infection_monkey/utils/plugins/test_plugin.py | 0 .../infection_monkey/utils/test_auto_new_user_factory.py | 0 .../{ => tests}/monkey_island/cc/environment/test_environment.py | 0 .../monkey_island/cc/environment/test_environment_config.py | 0 .../{ => tests}/monkey_island/cc/environment/test_user_creds.py | 0 monkey/{ => tests}/monkey_island/cc/models/test_monkey.py | 0 monkey/{ => tests}/monkey_island/cc/models/test_telem.py | 0 .../{ => tests}/monkey_island/cc/models/zero_trust/test_event.py | 0 .../monkey_island/cc/models/zero_trust/test_monkey_finding.py | 0 .../monkey_island/cc/models/zero_trust/test_scoutsuite_finding.py | 0 monkey/{ => tests}/monkey_island/cc/resources/test_bootloader.py | 0 .../monkey_island/cc/server_utils/test_island_logger.py | 0 .../monkey_island/cc/services/attack/test_mitre_api_interface.py | 0 .../monkey_island/cc/services/edge/test_displayed_edge_service.py | 0 .../monkey_island/cc/services/edge/test_edge_service.py | 0 .../monkey_island/cc/services/reporting/test_report.py | 0 .../test_environment_telemetry_processing.py | 0 .../test_system_info_telemetry_dispatcher.py | 0 .../cc/services/telemetry/processing/test_post_breach.py | 0 .../telemetry/zero_trust_checks/test_segmentation_checks.py | 0 .../monkey_island/cc/services/test_bootloader_service.py | 0 .../{ => tests}/monkey_island/cc/services/test_representations.py | 0 .../monkey_island/cc/services/tests/reporting/test_report.py | 0 monkey/{ => tests}/monkey_island/cc/services/tests/test_config.py | 0 .../monkey_island/cc/services/utils/test_node_states.py | 0 .../zero_trust/monkey_findings/test_monkey_zt_details_service.py | 0 .../zero_trust/monkey_findings/test_monkey_zt_finding_service.py | 0 .../zero_trust/scoutsuite/data_parsing/test_rule_parser.py | 0 .../zero_trust/scoutsuite/test_scoutsuite_auth_service.py | 0 .../zero_trust/scoutsuite/test_scoutsuite_rule_service.py | 0 .../zero_trust/scoutsuite/test_scoutsuite_zt_finding_service.py | 0 .../services/zero_trust/zero_trust_report/test_finding_service.py | 0 .../services/zero_trust/zero_trust_report/test_pillar_service.py | 0 .../zero_trust/zero_trust_report/test_principle_service.py | 0 monkey/{ => tests}/monkey_island/cc/test_consts.py | 0 monkey/{ => tests}/monkey_island/cc/test_encryptor.py | 0 71 files changed, 0 insertions(+), 0 deletions(-) rename monkey/{ => tests}/common/cloud/aws/test_aws_instance.py (100%) rename monkey/{ => tests}/common/cloud/aws/test_aws_service.py (100%) rename monkey/{ => tests}/common/cloud/azure/test_azure_instance.py (100%) rename monkey/{ => tests}/common/cloud/gcp/test_gcp_instance.py (100%) rename monkey/{ => tests}/common/network/test_network_utils.py (100%) rename monkey/{ => tests}/common/network/test_segmentation_utils.py (100%) rename monkey/{ => tests}/common/utils/test_shellcode_obfuscator.py (100%) rename monkey/{ => tests}/infection_monkey/exploit/tests/test_zerologon.py (100%) rename monkey/{ => tests}/infection_monkey/exploit/tests/zerologon_utils/test_vuln_assessment.py (100%) rename monkey/{ => tests}/infection_monkey/exploit/tools/test_helpers.py (100%) rename monkey/{ => tests}/infection_monkey/exploit/tools/test_payload.py (100%) rename monkey/{ => tests}/infection_monkey/model/test_victim_host_generator.py (100%) rename monkey/{ => tests}/infection_monkey/network/test_postgresql_finger.py (100%) rename monkey/{ => tests}/infection_monkey/post_breach/tests/actions/test_users_custom_pba.py (100%) rename monkey/{ => tests}/infection_monkey/system_info/windows_cred_collector/test_pypykatz_handler.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/attack/test_attack_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/attack/test_t1005_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/attack/test_t1035_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/attack/test_t1064_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/attack/test_t1105_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/attack/test_t1106_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/attack/test_t1107_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/attack/test_t1129_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/attack/test_t1197_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/attack/test_t1222_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/attack/test_usage_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/attack/test_victim_host_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/test_exploit_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/test_post_breach_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/test_scan_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/test_state_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/test_system_info_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/test_trace_telem.py (100%) rename monkey/{ => tests}/infection_monkey/telemetry/tests/test_tunnel_telem.py (100%) rename monkey/{ => tests}/infection_monkey/utils/linux/test_users.py (100%) rename monkey/{ => tests}/infection_monkey/utils/plugins/test_plugin.py (100%) rename monkey/{ => tests}/infection_monkey/utils/test_auto_new_user_factory.py (100%) rename monkey/{ => tests}/monkey_island/cc/environment/test_environment.py (100%) rename monkey/{ => tests}/monkey_island/cc/environment/test_environment_config.py (100%) rename monkey/{ => tests}/monkey_island/cc/environment/test_user_creds.py (100%) rename monkey/{ => tests}/monkey_island/cc/models/test_monkey.py (100%) rename monkey/{ => tests}/monkey_island/cc/models/test_telem.py (100%) rename monkey/{ => tests}/monkey_island/cc/models/zero_trust/test_event.py (100%) rename monkey/{ => tests}/monkey_island/cc/models/zero_trust/test_monkey_finding.py (100%) rename monkey/{ => tests}/monkey_island/cc/models/zero_trust/test_scoutsuite_finding.py (100%) rename monkey/{ => tests}/monkey_island/cc/resources/test_bootloader.py (100%) rename monkey/{ => tests}/monkey_island/cc/server_utils/test_island_logger.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/attack/test_mitre_api_interface.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/edge/test_displayed_edge_service.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/edge/test_edge_service.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/reporting/test_report.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/telemetry/processing/system_info_collectors/test_environment_telemetry_processing.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/telemetry/processing/system_info_collectors/test_system_info_telemetry_dispatcher.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/telemetry/processing/test_post_breach.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/telemetry/zero_trust_checks/test_segmentation_checks.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/test_bootloader_service.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/test_representations.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/tests/reporting/test_report.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/tests/test_config.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/utils/test_node_states.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/zero_trust/monkey_findings/test_monkey_zt_details_service.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/zero_trust/monkey_findings/test_monkey_zt_finding_service.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/zero_trust/scoutsuite/data_parsing/test_rule_parser.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_auth_service.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_rule_service.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_zt_finding_service.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/zero_trust/zero_trust_report/test_finding_service.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/zero_trust/zero_trust_report/test_pillar_service.py (100%) rename monkey/{ => tests}/monkey_island/cc/services/zero_trust/zero_trust_report/test_principle_service.py (100%) rename monkey/{ => tests}/monkey_island/cc/test_consts.py (100%) rename monkey/{ => tests}/monkey_island/cc/test_encryptor.py (100%) diff --git a/monkey/common/cloud/aws/test_aws_instance.py b/monkey/tests/common/cloud/aws/test_aws_instance.py similarity index 100% rename from monkey/common/cloud/aws/test_aws_instance.py rename to monkey/tests/common/cloud/aws/test_aws_instance.py diff --git a/monkey/common/cloud/aws/test_aws_service.py b/monkey/tests/common/cloud/aws/test_aws_service.py similarity index 100% rename from monkey/common/cloud/aws/test_aws_service.py rename to monkey/tests/common/cloud/aws/test_aws_service.py diff --git a/monkey/common/cloud/azure/test_azure_instance.py b/monkey/tests/common/cloud/azure/test_azure_instance.py similarity index 100% rename from monkey/common/cloud/azure/test_azure_instance.py rename to monkey/tests/common/cloud/azure/test_azure_instance.py diff --git a/monkey/common/cloud/gcp/test_gcp_instance.py b/monkey/tests/common/cloud/gcp/test_gcp_instance.py similarity index 100% rename from monkey/common/cloud/gcp/test_gcp_instance.py rename to monkey/tests/common/cloud/gcp/test_gcp_instance.py diff --git a/monkey/common/network/test_network_utils.py b/monkey/tests/common/network/test_network_utils.py similarity index 100% rename from monkey/common/network/test_network_utils.py rename to monkey/tests/common/network/test_network_utils.py diff --git a/monkey/common/network/test_segmentation_utils.py b/monkey/tests/common/network/test_segmentation_utils.py similarity index 100% rename from monkey/common/network/test_segmentation_utils.py rename to monkey/tests/common/network/test_segmentation_utils.py diff --git a/monkey/common/utils/test_shellcode_obfuscator.py b/monkey/tests/common/utils/test_shellcode_obfuscator.py similarity index 100% rename from monkey/common/utils/test_shellcode_obfuscator.py rename to monkey/tests/common/utils/test_shellcode_obfuscator.py diff --git a/monkey/infection_monkey/exploit/tests/test_zerologon.py b/monkey/tests/infection_monkey/exploit/tests/test_zerologon.py similarity index 100% rename from monkey/infection_monkey/exploit/tests/test_zerologon.py rename to monkey/tests/infection_monkey/exploit/tests/test_zerologon.py diff --git a/monkey/infection_monkey/exploit/tests/zerologon_utils/test_vuln_assessment.py b/monkey/tests/infection_monkey/exploit/tests/zerologon_utils/test_vuln_assessment.py similarity index 100% rename from monkey/infection_monkey/exploit/tests/zerologon_utils/test_vuln_assessment.py rename to monkey/tests/infection_monkey/exploit/tests/zerologon_utils/test_vuln_assessment.py diff --git a/monkey/infection_monkey/exploit/tools/test_helpers.py b/monkey/tests/infection_monkey/exploit/tools/test_helpers.py similarity index 100% rename from monkey/infection_monkey/exploit/tools/test_helpers.py rename to monkey/tests/infection_monkey/exploit/tools/test_helpers.py diff --git a/monkey/infection_monkey/exploit/tools/test_payload.py b/monkey/tests/infection_monkey/exploit/tools/test_payload.py similarity index 100% rename from monkey/infection_monkey/exploit/tools/test_payload.py rename to monkey/tests/infection_monkey/exploit/tools/test_payload.py diff --git a/monkey/infection_monkey/model/test_victim_host_generator.py b/monkey/tests/infection_monkey/model/test_victim_host_generator.py similarity index 100% rename from monkey/infection_monkey/model/test_victim_host_generator.py rename to monkey/tests/infection_monkey/model/test_victim_host_generator.py diff --git a/monkey/infection_monkey/network/test_postgresql_finger.py b/monkey/tests/infection_monkey/network/test_postgresql_finger.py similarity index 100% rename from monkey/infection_monkey/network/test_postgresql_finger.py rename to monkey/tests/infection_monkey/network/test_postgresql_finger.py diff --git a/monkey/infection_monkey/post_breach/tests/actions/test_users_custom_pba.py b/monkey/tests/infection_monkey/post_breach/tests/actions/test_users_custom_pba.py similarity index 100% rename from monkey/infection_monkey/post_breach/tests/actions/test_users_custom_pba.py rename to monkey/tests/infection_monkey/post_breach/tests/actions/test_users_custom_pba.py diff --git a/monkey/infection_monkey/system_info/windows_cred_collector/test_pypykatz_handler.py b/monkey/tests/infection_monkey/system_info/windows_cred_collector/test_pypykatz_handler.py similarity index 100% rename from monkey/infection_monkey/system_info/windows_cred_collector/test_pypykatz_handler.py rename to monkey/tests/infection_monkey/system_info/windows_cred_collector/test_pypykatz_handler.py diff --git a/monkey/infection_monkey/telemetry/tests/attack/test_attack_telem.py b/monkey/tests/infection_monkey/telemetry/tests/attack/test_attack_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/attack/test_attack_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/attack/test_attack_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/attack/test_t1005_telem.py b/monkey/tests/infection_monkey/telemetry/tests/attack/test_t1005_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/attack/test_t1005_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/attack/test_t1005_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/attack/test_t1035_telem.py b/monkey/tests/infection_monkey/telemetry/tests/attack/test_t1035_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/attack/test_t1035_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/attack/test_t1035_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/attack/test_t1064_telem.py b/monkey/tests/infection_monkey/telemetry/tests/attack/test_t1064_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/attack/test_t1064_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/attack/test_t1064_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/attack/test_t1105_telem.py b/monkey/tests/infection_monkey/telemetry/tests/attack/test_t1105_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/attack/test_t1105_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/attack/test_t1105_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/attack/test_t1106_telem.py b/monkey/tests/infection_monkey/telemetry/tests/attack/test_t1106_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/attack/test_t1106_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/attack/test_t1106_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/attack/test_t1107_telem.py b/monkey/tests/infection_monkey/telemetry/tests/attack/test_t1107_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/attack/test_t1107_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/attack/test_t1107_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/attack/test_t1129_telem.py b/monkey/tests/infection_monkey/telemetry/tests/attack/test_t1129_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/attack/test_t1129_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/attack/test_t1129_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/attack/test_t1197_telem.py b/monkey/tests/infection_monkey/telemetry/tests/attack/test_t1197_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/attack/test_t1197_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/attack/test_t1197_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/attack/test_t1222_telem.py b/monkey/tests/infection_monkey/telemetry/tests/attack/test_t1222_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/attack/test_t1222_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/attack/test_t1222_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/attack/test_usage_telem.py b/monkey/tests/infection_monkey/telemetry/tests/attack/test_usage_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/attack/test_usage_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/attack/test_usage_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/attack/test_victim_host_telem.py b/monkey/tests/infection_monkey/telemetry/tests/attack/test_victim_host_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/attack/test_victim_host_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/attack/test_victim_host_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/test_exploit_telem.py b/monkey/tests/infection_monkey/telemetry/tests/test_exploit_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/test_exploit_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/test_exploit_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/test_post_breach_telem.py b/monkey/tests/infection_monkey/telemetry/tests/test_post_breach_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/test_post_breach_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/test_post_breach_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/test_scan_telem.py b/monkey/tests/infection_monkey/telemetry/tests/test_scan_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/test_scan_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/test_scan_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/test_state_telem.py b/monkey/tests/infection_monkey/telemetry/tests/test_state_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/test_state_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/test_state_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/test_system_info_telem.py b/monkey/tests/infection_monkey/telemetry/tests/test_system_info_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/test_system_info_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/test_system_info_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/test_trace_telem.py b/monkey/tests/infection_monkey/telemetry/tests/test_trace_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/test_trace_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/test_trace_telem.py diff --git a/monkey/infection_monkey/telemetry/tests/test_tunnel_telem.py b/monkey/tests/infection_monkey/telemetry/tests/test_tunnel_telem.py similarity index 100% rename from monkey/infection_monkey/telemetry/tests/test_tunnel_telem.py rename to monkey/tests/infection_monkey/telemetry/tests/test_tunnel_telem.py diff --git a/monkey/infection_monkey/utils/linux/test_users.py b/monkey/tests/infection_monkey/utils/linux/test_users.py similarity index 100% rename from monkey/infection_monkey/utils/linux/test_users.py rename to monkey/tests/infection_monkey/utils/linux/test_users.py diff --git a/monkey/infection_monkey/utils/plugins/test_plugin.py b/monkey/tests/infection_monkey/utils/plugins/test_plugin.py similarity index 100% rename from monkey/infection_monkey/utils/plugins/test_plugin.py rename to monkey/tests/infection_monkey/utils/plugins/test_plugin.py diff --git a/monkey/infection_monkey/utils/test_auto_new_user_factory.py b/monkey/tests/infection_monkey/utils/test_auto_new_user_factory.py similarity index 100% rename from monkey/infection_monkey/utils/test_auto_new_user_factory.py rename to monkey/tests/infection_monkey/utils/test_auto_new_user_factory.py diff --git a/monkey/monkey_island/cc/environment/test_environment.py b/monkey/tests/monkey_island/cc/environment/test_environment.py similarity index 100% rename from monkey/monkey_island/cc/environment/test_environment.py rename to monkey/tests/monkey_island/cc/environment/test_environment.py diff --git a/monkey/monkey_island/cc/environment/test_environment_config.py b/monkey/tests/monkey_island/cc/environment/test_environment_config.py similarity index 100% rename from monkey/monkey_island/cc/environment/test_environment_config.py rename to monkey/tests/monkey_island/cc/environment/test_environment_config.py diff --git a/monkey/monkey_island/cc/environment/test_user_creds.py b/monkey/tests/monkey_island/cc/environment/test_user_creds.py similarity index 100% rename from monkey/monkey_island/cc/environment/test_user_creds.py rename to monkey/tests/monkey_island/cc/environment/test_user_creds.py diff --git a/monkey/monkey_island/cc/models/test_monkey.py b/monkey/tests/monkey_island/cc/models/test_monkey.py similarity index 100% rename from monkey/monkey_island/cc/models/test_monkey.py rename to monkey/tests/monkey_island/cc/models/test_monkey.py diff --git a/monkey/monkey_island/cc/models/test_telem.py b/monkey/tests/monkey_island/cc/models/test_telem.py similarity index 100% rename from monkey/monkey_island/cc/models/test_telem.py rename to monkey/tests/monkey_island/cc/models/test_telem.py diff --git a/monkey/monkey_island/cc/models/zero_trust/test_event.py b/monkey/tests/monkey_island/cc/models/zero_trust/test_event.py similarity index 100% rename from monkey/monkey_island/cc/models/zero_trust/test_event.py rename to monkey/tests/monkey_island/cc/models/zero_trust/test_event.py diff --git a/monkey/monkey_island/cc/models/zero_trust/test_monkey_finding.py b/monkey/tests/monkey_island/cc/models/zero_trust/test_monkey_finding.py similarity index 100% rename from monkey/monkey_island/cc/models/zero_trust/test_monkey_finding.py rename to monkey/tests/monkey_island/cc/models/zero_trust/test_monkey_finding.py diff --git a/monkey/monkey_island/cc/models/zero_trust/test_scoutsuite_finding.py b/monkey/tests/monkey_island/cc/models/zero_trust/test_scoutsuite_finding.py similarity index 100% rename from monkey/monkey_island/cc/models/zero_trust/test_scoutsuite_finding.py rename to monkey/tests/monkey_island/cc/models/zero_trust/test_scoutsuite_finding.py diff --git a/monkey/monkey_island/cc/resources/test_bootloader.py b/monkey/tests/monkey_island/cc/resources/test_bootloader.py similarity index 100% rename from monkey/monkey_island/cc/resources/test_bootloader.py rename to monkey/tests/monkey_island/cc/resources/test_bootloader.py diff --git a/monkey/monkey_island/cc/server_utils/test_island_logger.py b/monkey/tests/monkey_island/cc/server_utils/test_island_logger.py similarity index 100% rename from monkey/monkey_island/cc/server_utils/test_island_logger.py rename to monkey/tests/monkey_island/cc/server_utils/test_island_logger.py diff --git a/monkey/monkey_island/cc/services/attack/test_mitre_api_interface.py b/monkey/tests/monkey_island/cc/services/attack/test_mitre_api_interface.py similarity index 100% rename from monkey/monkey_island/cc/services/attack/test_mitre_api_interface.py rename to monkey/tests/monkey_island/cc/services/attack/test_mitre_api_interface.py diff --git a/monkey/monkey_island/cc/services/edge/test_displayed_edge_service.py b/monkey/tests/monkey_island/cc/services/edge/test_displayed_edge_service.py similarity index 100% rename from monkey/monkey_island/cc/services/edge/test_displayed_edge_service.py rename to monkey/tests/monkey_island/cc/services/edge/test_displayed_edge_service.py diff --git a/monkey/monkey_island/cc/services/edge/test_edge_service.py b/monkey/tests/monkey_island/cc/services/edge/test_edge_service.py similarity index 100% rename from monkey/monkey_island/cc/services/edge/test_edge_service.py rename to monkey/tests/monkey_island/cc/services/edge/test_edge_service.py diff --git a/monkey/monkey_island/cc/services/reporting/test_report.py b/monkey/tests/monkey_island/cc/services/reporting/test_report.py similarity index 100% rename from monkey/monkey_island/cc/services/reporting/test_report.py rename to monkey/tests/monkey_island/cc/services/reporting/test_report.py diff --git a/monkey/monkey_island/cc/services/telemetry/processing/system_info_collectors/test_environment_telemetry_processing.py b/monkey/tests/monkey_island/cc/services/telemetry/processing/system_info_collectors/test_environment_telemetry_processing.py similarity index 100% rename from monkey/monkey_island/cc/services/telemetry/processing/system_info_collectors/test_environment_telemetry_processing.py rename to monkey/tests/monkey_island/cc/services/telemetry/processing/system_info_collectors/test_environment_telemetry_processing.py diff --git a/monkey/monkey_island/cc/services/telemetry/processing/system_info_collectors/test_system_info_telemetry_dispatcher.py b/monkey/tests/monkey_island/cc/services/telemetry/processing/system_info_collectors/test_system_info_telemetry_dispatcher.py similarity index 100% rename from monkey/monkey_island/cc/services/telemetry/processing/system_info_collectors/test_system_info_telemetry_dispatcher.py rename to monkey/tests/monkey_island/cc/services/telemetry/processing/system_info_collectors/test_system_info_telemetry_dispatcher.py diff --git a/monkey/monkey_island/cc/services/telemetry/processing/test_post_breach.py b/monkey/tests/monkey_island/cc/services/telemetry/processing/test_post_breach.py similarity index 100% rename from monkey/monkey_island/cc/services/telemetry/processing/test_post_breach.py rename to monkey/tests/monkey_island/cc/services/telemetry/processing/test_post_breach.py diff --git a/monkey/monkey_island/cc/services/telemetry/zero_trust_checks/test_segmentation_checks.py b/monkey/tests/monkey_island/cc/services/telemetry/zero_trust_checks/test_segmentation_checks.py similarity index 100% rename from monkey/monkey_island/cc/services/telemetry/zero_trust_checks/test_segmentation_checks.py rename to monkey/tests/monkey_island/cc/services/telemetry/zero_trust_checks/test_segmentation_checks.py diff --git a/monkey/monkey_island/cc/services/test_bootloader_service.py b/monkey/tests/monkey_island/cc/services/test_bootloader_service.py similarity index 100% rename from monkey/monkey_island/cc/services/test_bootloader_service.py rename to monkey/tests/monkey_island/cc/services/test_bootloader_service.py diff --git a/monkey/monkey_island/cc/services/test_representations.py b/monkey/tests/monkey_island/cc/services/test_representations.py similarity index 100% rename from monkey/monkey_island/cc/services/test_representations.py rename to monkey/tests/monkey_island/cc/services/test_representations.py diff --git a/monkey/monkey_island/cc/services/tests/reporting/test_report.py b/monkey/tests/monkey_island/cc/services/tests/reporting/test_report.py similarity index 100% rename from monkey/monkey_island/cc/services/tests/reporting/test_report.py rename to monkey/tests/monkey_island/cc/services/tests/reporting/test_report.py diff --git a/monkey/monkey_island/cc/services/tests/test_config.py b/monkey/tests/monkey_island/cc/services/tests/test_config.py similarity index 100% rename from monkey/monkey_island/cc/services/tests/test_config.py rename to monkey/tests/monkey_island/cc/services/tests/test_config.py diff --git a/monkey/monkey_island/cc/services/utils/test_node_states.py b/monkey/tests/monkey_island/cc/services/utils/test_node_states.py similarity index 100% rename from monkey/monkey_island/cc/services/utils/test_node_states.py rename to monkey/tests/monkey_island/cc/services/utils/test_node_states.py diff --git a/monkey/monkey_island/cc/services/zero_trust/monkey_findings/test_monkey_zt_details_service.py b/monkey/tests/monkey_island/cc/services/zero_trust/monkey_findings/test_monkey_zt_details_service.py similarity index 100% rename from monkey/monkey_island/cc/services/zero_trust/monkey_findings/test_monkey_zt_details_service.py rename to monkey/tests/monkey_island/cc/services/zero_trust/monkey_findings/test_monkey_zt_details_service.py diff --git a/monkey/monkey_island/cc/services/zero_trust/monkey_findings/test_monkey_zt_finding_service.py b/monkey/tests/monkey_island/cc/services/zero_trust/monkey_findings/test_monkey_zt_finding_service.py similarity index 100% rename from monkey/monkey_island/cc/services/zero_trust/monkey_findings/test_monkey_zt_finding_service.py rename to monkey/tests/monkey_island/cc/services/zero_trust/monkey_findings/test_monkey_zt_finding_service.py diff --git a/monkey/monkey_island/cc/services/zero_trust/scoutsuite/data_parsing/test_rule_parser.py b/monkey/tests/monkey_island/cc/services/zero_trust/scoutsuite/data_parsing/test_rule_parser.py similarity index 100% rename from monkey/monkey_island/cc/services/zero_trust/scoutsuite/data_parsing/test_rule_parser.py rename to monkey/tests/monkey_island/cc/services/zero_trust/scoutsuite/data_parsing/test_rule_parser.py diff --git a/monkey/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_auth_service.py b/monkey/tests/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_auth_service.py similarity index 100% rename from monkey/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_auth_service.py rename to monkey/tests/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_auth_service.py diff --git a/monkey/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_rule_service.py b/monkey/tests/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_rule_service.py similarity index 100% rename from monkey/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_rule_service.py rename to monkey/tests/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_rule_service.py diff --git a/monkey/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_zt_finding_service.py b/monkey/tests/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_zt_finding_service.py similarity index 100% rename from monkey/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_zt_finding_service.py rename to monkey/tests/monkey_island/cc/services/zero_trust/scoutsuite/test_scoutsuite_zt_finding_service.py diff --git a/monkey/monkey_island/cc/services/zero_trust/zero_trust_report/test_finding_service.py b/monkey/tests/monkey_island/cc/services/zero_trust/zero_trust_report/test_finding_service.py similarity index 100% rename from monkey/monkey_island/cc/services/zero_trust/zero_trust_report/test_finding_service.py rename to monkey/tests/monkey_island/cc/services/zero_trust/zero_trust_report/test_finding_service.py diff --git a/monkey/monkey_island/cc/services/zero_trust/zero_trust_report/test_pillar_service.py b/monkey/tests/monkey_island/cc/services/zero_trust/zero_trust_report/test_pillar_service.py similarity index 100% rename from monkey/monkey_island/cc/services/zero_trust/zero_trust_report/test_pillar_service.py rename to monkey/tests/monkey_island/cc/services/zero_trust/zero_trust_report/test_pillar_service.py diff --git a/monkey/monkey_island/cc/services/zero_trust/zero_trust_report/test_principle_service.py b/monkey/tests/monkey_island/cc/services/zero_trust/zero_trust_report/test_principle_service.py similarity index 100% rename from monkey/monkey_island/cc/services/zero_trust/zero_trust_report/test_principle_service.py rename to monkey/tests/monkey_island/cc/services/zero_trust/zero_trust_report/test_principle_service.py diff --git a/monkey/monkey_island/cc/test_consts.py b/monkey/tests/monkey_island/cc/test_consts.py similarity index 100% rename from monkey/monkey_island/cc/test_consts.py rename to monkey/tests/monkey_island/cc/test_consts.py diff --git a/monkey/monkey_island/cc/test_encryptor.py b/monkey/tests/monkey_island/cc/test_encryptor.py similarity index 100% rename from monkey/monkey_island/cc/test_encryptor.py rename to monkey/tests/monkey_island/cc/test_encryptor.py