File: engine.py

package info (click to toggle)
plaso 20241006-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 673,228 kB
  • sloc: python: 91,831; sh: 557; xml: 97; makefile: 17; sql: 14; vhdl: 11
file content (32 lines) | stat: -rw-r--r-- 994 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Tests the multi-process processing engine."""

import unittest

from tests import test_lib as shared_test_lib


class MultiProcessEngineTest(shared_test_lib.BaseTestCase):
  """Tests for the multi-process engine."""

  # TODO: add test for _AbortJoin
  # TODO: add test for _AbortKill
  # TODO: add test for _AbortTerminate
  # TODO: add test for _CheckStatusWorkerProcess
  # TODO: add test for _KillProcess
  # TODO: add test for _LogMemoryUsage
  # TODO: add test for _QueryProcessStatus
  # TODO: add test for _RaiseIfNotMonitored
  # TODO: add test for _RaiseIfNotRegistered
  # TODO: add test for _RegisterProcess
  # TODO: add test for _StartMonitoringProcess
  # TODO: add test for _StartStatusUpdateThread
  # TODO: add test for _StopMonitoringProcess
  # TODO: add test for _StopMonitoringProcesses
  # TODO: add test for _StopStatusUpdateThread
  # TODO: add test for _TerminateProcess


if __name__ == '__main__':
  unittest.main()