def test_cleanup_children_on_terminate(self): """ Subprocesses spawned by tasks should be terminated on terminate """ class HangingSubprocessTask(luigi.Task): def run(self): python = sys.executable check_call([python, '-c', 'while True: pass']) task = HangingSubprocessTask() queue = mock.Mock() worker_id = 1 task_process = TaskProcess(task, worker_id, queue, lambda: None, lambda: None) task_process.start() parent = Process(task_process.pid) while not parent.children(): # wait for child process to startup sleep(0.01) [child] = parent.children() task_process.terminate() child.wait(timeout=1.0) # wait for terminate to complete self.assertFalse(parent.is_running()) self.assertFalse(child.is_running())
def test_update_result_queue_on_success(self): task = SuccessTask() result_queue = multiprocessing.Queue() task_process = TaskProcess(task, 1, result_queue) with mock.patch.object(result_queue, 'put') as mock_put: task_process.run() mock_put.assert_called_once_with((task.task_id, DONE, json.dumps("test success expl"), [], None))
def test_update_result_queue_on_failure(self): task = FailTask() result_queue = multiprocessing.Queue() task_process = TaskProcess(task, 1, result_queue) with mock.patch.object(result_queue, 'put') as mock_put: task_process.run() mock_put.assert_called_once_with((task.task_id, FAILED, json.dumps("test failure expl"), [], []))
def test_update_result_queue_on_success(self): # IMO this test makes no sense as it tests internal behavior and have # already broken once during internal non-changing refactoring class SuccessTask(luigi.Task): def on_success(self): return "test success expl" task = SuccessTask() result_queue = multiprocessing.Queue() task_process = TaskProcess(task, 1, result_queue, lambda: None, lambda: None) with mock.patch.object(result_queue, 'put') as mock_put: task_process.run() mock_put.assert_called_once_with((task.task_id, DONE, "test success expl", [], None))
def test_update_result_queue_on_success(self): # IMO this test makes no sense as it tests internal behavior and have # already broken once during internal non-changing refactoring class SuccessTask(luigi.Task): def on_success(self): return "test success expl" task = SuccessTask() result_queue = multiprocessing.Queue() task_process = TaskProcess(task, 1, result_queue, mock.Mock()) with mock.patch.object(result_queue, 'put') as mock_put: task_process.run() mock_put.assert_called_once_with((task.task_id, DONE, "test success expl", [], None))
def test_update_result_queue_on_failure(self): class FailTask(luigi.Task): def run(self): raise BaseException("Uh oh.") def on_failure(self, exception): return "test failure expl" task = FailTask() result_queue = multiprocessing.Queue() task_process = TaskProcess(task, 1, result_queue) with mock.patch.object(result_queue, "put") as mock_put: task_process.run() mock_put.assert_called_once_with((task.task_id, FAILED, json.dumps("test failure expl"), [], []))
def test_update_result_queue_on_failure(self): # IMO this test makes no sense as it tests internal behavior and have # already broken once during internal non-changing refactoring class FailTask(luigi.Task): def run(self): raise BaseException("Uh oh.") def on_failure(self, exception): return "test failure expl" task = FailTask() result_queue = multiprocessing.Queue() task_process = TaskProcess(task, 1, result_queue, lambda: None, lambda: None) with mock.patch.object(result_queue, 'put') as mock_put: task_process.run() mock_put.assert_called_once_with((task.task_id, FAILED, "test failure expl", [], []))
def test_update_result_queue_on_failure(self): # IMO this test makes no sense as it tests internal behavior and have # already broken once during internal non-changing refactoring class FailTask(luigi.Task): def run(self): raise BaseException("Uh oh.") def on_failure(self, exception): return "test failure expl" task = FailTask() result_queue = multiprocessing.Queue() task_process = TaskProcess(task, 1, result_queue, mock.Mock()) with mock.patch.object(result_queue, 'put') as mock_put: task_process.run() mock_put.assert_called_once_with((task.task_id, FAILED, "test failure expl", [], []))
def test_update_result_queue_on_failure(self): class FailTask(luigi.Task): def run(self): raise BaseException("Uh oh.") def on_failure(self, exception): return "test failure expl" task = FailTask() result_queue = multiprocessing.Queue() task_process = TaskProcess(task, 1, result_queue) with mock.patch.object(result_queue, 'put') as mock_put: task_process.run() mock_put.assert_called_once_with( (task.task_id, FAILED, json.dumps("test failure expl"), [], []))
def test_fail_on_false_complete(self): class NeverCompleteTask(luigi.Task): def complete(self): return False task = NeverCompleteTask() result_queue = multiprocessing.Queue() task_process = TaskProcess(task, 1, result_queue, mock.Mock(), check_complete_on_run=True) with mock.patch.object(result_queue, 'put') as mock_put: task_process.run() mock_put.assert_called_once_with(( task.task_id, FAILED, StringContaining("finished running, but complete() is still returning false"), [], None ))
def test_cleanup_children_on_terminate(self): """ Subprocesses spawned by tasks should be terminated on terminate """ task = HangingSubprocessTask() queue = mock.Mock() worker_id = 1 task_process = TaskProcess(task, worker_id, queue) task_process.start() parent = Process(task_process.pid) while not parent.children(): # wait for child process to startup sleep(0.01) [child] = parent.children() task_process.terminate() child.wait(timeout=1.0) # wait for terminate to complete self.assertFalse(parent.is_running()) self.assertFalse(child.is_running())
def test_disable_worker_timeout(self): """ When a task sets worker_timeout explicitly to 0, it should disable the timeout, even if it is configured globally. """ class Task(luigi.Task): worker_timeout = 0 task_process = TaskProcess( task=Task(), worker_id=1, result_queue=mock.Mock(), status_reporter=mock.Mock(), worker_timeout=10, ) self.assertEqual(task_process.worker_timeout, 0)