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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
# coding: utf-8
# /*##########################################################################
#
# Copyright (c) 2016-2017 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# ###########################################################################*/
__authors__ = ["H. Payno"]
__license__ = "MIT"
__date__ = "02/11/2020"
import unittest
from processview.core.superviseprocess import SuperviseProcess
from processview.core.manager import ProcessManager
from processview.core.manager import DatasetState
from processview.core.dataset import Dataset
from processview.core.dataset import DatasetIdentifier
import gc
class TestProcessManager(unittest.TestCase):
"""
test ProcessManager
"""
def testRegisterProcess(self):
"""insure registration and unregistration are working"""
manager = ProcessManager()
manager.clear()
self.assertEqual(len(manager.get_processes()), 0)
p1 = SuperviseProcess()
self.assertEqual(len(manager.get_processes()), 1)
p1 = None
gc.collect()
self.assertEqual(len(manager.get_processes()), 0)
p1 = SuperviseProcess()
p2 = SuperviseProcess()
self.assertEqual(len(manager.get_processes()), 2)
self.assertEqual(len(ProcessManager().get_processes()), 2)
self.assertTrue(p1 in manager.get_processes())
self.assertTrue(p2 in manager.get_processes())
p1 = None
p2 = None
gc.collect()
self.assertEqual(len(manager.get_processes()), 0)
def testProcessStatesUpdate(self):
"""insure providing states works well"""
p1 = SuperviseProcess(name="sp1")
p2 = SuperviseProcess(name="sp1")
manager = ProcessManager()
manager.clear()
scan_1 = _DummyScan("scan1")
scan_2 = _DummyScan("scan2")
manager.notify_dataset_state(
dataset=scan_1, state=DatasetState.PENDING, process=p1
)
manager.notify_dataset_state(
dataset=scan_2, state=DatasetState.SUCCEED, process=p1
)
manager.notify_dataset_state(
dataset=scan_2, state=DatasetState.FAILED, process=p2
)
# test 'getScanState'
self.assertEqual(
manager.get_dataset_state(dataset_id=scan_2, process=p2),
DatasetState.FAILED,
)
self.assertEqual(manager.get_dataset_state(dataset_id=scan_1, process=p2), None)
# test 'getScanStream'
self.assertEqual(
manager.get_dataset_stream(dataset=scan_2, time_stamp=False),
(
(p1.process_id, DatasetState.SUCCEED),
(p2.process_id, DatasetState.FAILED),
),
)
# test 'getProcessHistory'
self.assertEqual(
manager.get_process_history(process=p1),
(
(scan_1.get_identifier(), DatasetState.PENDING),
(scan_2.get_identifier(), DatasetState.SUCCEED),
),
)
class _DummyScan(Dataset):
def __init__(self, name):
super().__init__()
self.name = name
def __str__(self) -> str:
return self.name
def get_identifier(self) -> DatasetIdentifier:
return _DummyIdentifier(self)
class _DummyIdentifier(DatasetIdentifier):
def __init__(self, dataset):
super().__init__(dataset, metadata={"name": dataset.name})
def __str__(self):
return self.name()
def __eq__(self, other):
return self.name() == other.name()
def __hash__(self):
return hash(self.name())
def suite():
test_suite = unittest.TestSuite()
for ui in (TestProcessManager,):
test_suite.addTest(unittest.defaultTestLoader.loadTestsFromTestCase(ui))
return test_suite
|