def test_get_single_archive_calls_get_with_expected_uri( self, mock_connection, successful_response): mock_connection.get.return_value = successful_response service = ArchiveService(mock_connection) service.get_single_archive("ARCHIVE_GUID") uri = f"{ARCHIVE_URI}/ARCHIVE_GUID" mock_connection.get.assert_called_once_with(uri)
def test_get_web_restore_info_calls_get_with_expected_url_and_params( self, mock_connection): service = ArchiveService(mock_connection) service.get_web_restore_info("src", "dest") expected_params = {"srcGuid": "src", "destGuid": "dest"} mock_connection.get.assert_called_once_with("/api/v1/WebRestoreInfo", params=expected_params)
def test_update_cold_storage_purge_date_calls_coldstorage_with_expected_data( self, mock_connection): service = ArchiveService(mock_connection) service.update_cold_storage_purge_date("123", "2020-04-24") mock_connection.put.assert_called_once_with( "/api/v1/coldStorage/123", params={"idType": "guid"}, json={"archiveHoldExpireDate": "2020-04-24"}, )
def test_get_by_value_calls_get_with_expected_uri_and_params( self, mock_connection): device_guid = "42" service = ArchiveService(mock_connection) for _ in service.get_all_archives_from_value(device_guid, "backupSourceGuid"): pass expected_params = {"pgNum": 1, "pgSize": 500, "backupSourceGuid": "42"} mock_connection.get.assert_called_once_with(ARCHIVE_URI, params=expected_params)
def _init_services(main_connection, main_auth): alert_rules_key = u"FedObserver-API_URL" alerts_key = u"AlertService-API_URL" file_events_key = u"FORENSIC_SEARCH-API_URL" preservation_data_key = u"PRESERVATION-DATA-SERVICE_API-URL" employee_case_mgmt_key = u"employeecasemanagement-API_URL" kv_prefix = u"simple-key-value-store" audit_logs_key = u"AUDIT-LOG_API-URL" kv_connection = Connection.from_microservice_prefix( main_connection, kv_prefix) kv_service = KeyValueStoreService(kv_connection) alert_rules_conn = Connection.from_microservice_key(kv_service, alert_rules_key, auth=main_auth) alerts_conn = Connection.from_microservice_key(kv_service, alerts_key, auth=main_auth) file_events_conn = Connection.from_microservice_key(kv_service, file_events_key, auth=main_auth) pds_conn = Connection.from_microservice_key(kv_service, preservation_data_key, auth=main_auth) ecm_conn = Connection.from_microservice_key(kv_service, employee_case_mgmt_key, auth=main_auth) audit_logs_conn = Connection.from_microservice_key(kv_service, audit_logs_key, auth=main_auth) user_svc = UserService(main_connection) administration_svc = AdministrationService(main_connection) file_event_svc = FileEventService(file_events_conn) user_ctx = UserContext(administration_svc) user_profile_svc = DetectionListUserService(ecm_conn, user_ctx, user_svc) services = Services( administration=administration_svc, archive=ArchiveService(main_connection), devices=DeviceService(main_connection), legalhold=LegalHoldService(main_connection), orgs=OrgService(main_connection), securitydata=SecurityDataService(main_connection), users=UserService(main_connection), alertrules=AlertRulesService(alert_rules_conn, user_ctx, user_profile_svc), alerts=AlertService(alerts_conn, user_ctx), fileevents=file_event_svc, savedsearch=SavedSearchService(file_events_conn, file_event_svc), preservationdata=PreservationDataService(pds_conn), departingemployee=DepartingEmployeeService(ecm_conn, user_ctx, user_profile_svc), highriskemployee=HighRiskEmployeeService(ecm_conn, user_ctx, user_profile_svc), userprofile=user_profile_svc, auditlogs=AuditLogsService(audit_logs_conn), ) return services, user_ctx
def test_get_all_restore_history_calls_get_expected_number_of_times( self, mock_connection, mock_get_all_restore_history_response, mock_get_all_restore_history_empty_response, ): py42.settings.items_per_page = 1 service = ArchiveService(mock_connection) mock_connection.get.side_effect = [ mock_get_all_restore_history_response, mock_get_all_restore_history_response, mock_get_all_restore_history_empty_response, ] for _ in service.get_all_restore_history(10, "orgId", "123"): pass py42.settings.items_per_page = 500 assert mock_connection.get.call_count == 3
def test_get_all_archives_from_value_calls_get_expected_number_of_times( self, mock_connection, mock_get_archives_response, mock_get_archives_empty_response, ): device_guid = "42" py42.settings.items_per_page = 1 service = ArchiveService(mock_connection) mock_connection.get.side_effect = [ mock_get_archives_response, mock_get_archives_response, mock_get_archives_empty_response, ] for _ in service.get_all_archives_from_value(device_guid, "backupSourceGuid"): pass py42.settings.items_per_page = 500 assert mock_connection.get.call_count == 3
def test_get_all_org_cold_storage_archives_calls_get_with_expected_uri_and_params( self, mock_connection, mock_get_all_org_cold_storage_empty_response): service = ArchiveService(mock_connection) mock_connection.get.side_effect = [ mock_get_all_org_cold_storage_empty_response ] for _ in service.get_all_org_cold_storage_archives("orgId"): break params = { "orgId": "orgId", "incChildOrgs": True, "pgNum": 1, "pgSize": 500, "srtDir": "asc", "srtKey": "archiveHoldExpireDate", } mock_connection.get.assert_called_once_with("/api/v1/ColdStorage", params=params)
def _init_services(main_connection, main_auth): # services are imported within function to prevent circular imports when a service # imports anything from py42.sdk.queries from py42.services import Services from py42.services._keyvaluestore import KeyValueStoreService from py42.services.administration import AdministrationService from py42.services.alertrules import AlertRulesService from py42.services.alerts import AlertService from py42.services.archive import ArchiveService from py42.services.auditlogs import AuditLogsService from py42.services.cases import CasesService from py42.services.casesfileevents import CasesFileEventsService from py42.services.detectionlists.departing_employee import DepartingEmployeeService from py42.services.detectionlists.high_risk_employee import HighRiskEmployeeService from py42.services.detectionlists.user_profile import DetectionListUserService from py42.services.devices import DeviceService from py42.services.fileevent import FileEventService from py42.services.legalhold import LegalHoldService from py42.services.orgs import OrgService from py42.services.preservationdata import PreservationDataService from py42.services.savedsearch import SavedSearchService from py42.services.trustedactivities import TrustedActivitiesService from py42.services.users import UserService alert_rules_key = "FedObserver-API_URL" alerts_key = "AlertService-API_URL" file_events_key = "FORENSIC_SEARCH-API_URL" preservation_data_key = "PRESERVATION-DATA-SERVICE_API-URL" employee_case_mgmt_key = "employeecasemanagementV2-API_URL" kv_prefix = "simple-key-value-store" audit_logs_key = "AUDIT-LOG_API-URL" cases_key = "CASES_API-URL" trusted_activities_key = "TRUSTED-DOMAINS_API-URL" kv_connection = Connection.from_microservice_prefix( main_connection, kv_prefix) kv_service = KeyValueStoreService(kv_connection) alert_rules_conn = Connection.from_microservice_key(kv_service, alert_rules_key, auth=main_auth) alerts_conn = Connection.from_microservice_key(kv_service, alerts_key, auth=main_auth) file_events_conn = Connection.from_microservice_key(kv_service, file_events_key, auth=main_auth) pds_conn = Connection.from_microservice_key(kv_service, preservation_data_key, auth=main_auth) ecm_conn = Connection.from_microservice_key(kv_service, employee_case_mgmt_key, auth=main_auth) audit_logs_conn = Connection.from_microservice_key(kv_service, audit_logs_key, auth=main_auth) user_svc = UserService(main_connection) administration_svc = AdministrationService(main_connection) file_event_svc = FileEventService(file_events_conn) user_ctx = UserContext(administration_svc) user_profile_svc = DetectionListUserService(ecm_conn, user_ctx, user_svc) cases_conn = Connection.from_microservice_key(kv_service, cases_key, auth=main_auth) trusted_activities_conn = Connection.from_microservice_key( kv_service, trusted_activities_key, auth=main_auth) services = Services( administration=administration_svc, archive=ArchiveService(main_connection), devices=DeviceService(main_connection), legalhold=LegalHoldService(main_connection), orgs=OrgService(main_connection), users=UserService(main_connection), alertrules=AlertRulesService(alert_rules_conn, user_ctx, user_profile_svc), alerts=AlertService(alerts_conn, user_ctx), fileevents=file_event_svc, savedsearch=SavedSearchService(file_events_conn, file_event_svc), preservationdata=PreservationDataService(pds_conn), departingemployee=DepartingEmployeeService(ecm_conn, user_ctx, user_profile_svc), highriskemployee=HighRiskEmployeeService(ecm_conn, user_ctx, user_profile_svc), userprofile=user_profile_svc, auditlogs=AuditLogsService(audit_logs_conn), cases=CasesService(cases_conn), casesfileevents=CasesFileEventsService(cases_conn), trustedactivities=TrustedActivitiesService(trusted_activities_conn), ) return services, user_ctx