mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-16 04:24:20 +00:00
b8d3d5d84b
98c6294f1 Merge pull request #287 from sartography/feature/workflow_data_exceptions d40a1da59 Workflow Data Exceptions were broken in the previous error refactor. This assures we are getting good messages from these errors. a156378e1 Merge pull request #286 from sartography/feature/inclusive-gateway-support 7f6e398c2 bypass unnecessary checks in gateway joins ade21a894 revert a few things e1cf75202 Merge branch 'main' into feature/inclusive-gateway-support 15a0a4414 revert change to MultiChoice and handle no defaults in BPMN specs e1469e6bb add support for diverging inclusive gateways 71fd86386 really prevent non-default flows without conditions 924759d9b clean up join specs 7378639d3 Merge pull request #284 from sartography/feature/improved-timer-events dc8d139d2 remove useless method 530f23697 Merge branch 'main' into feature/improved-timer-events 307cca9c5 partially clean up existing gateways 0a344285e clean up task parsers 2cef997d1 add waiting_events method to bpmn workflow 48091c407 serializer migration script and miscellaneous fixes to serialization 61316854b store internal timer data as string/float 389c14c4c add some tests for parsing durations 582bc9482 convert timers to iso 8601 6dfd7ebe9 remove extraneous calls to update 6bd429529 clean up tests d56e9912f remove useless method git-subtree-dir: SpiffWorkflow git-subtree-split: 98c6294f1240aee599cd98bcee58d121cb57b331
59 lines
2.1 KiB
Python
59 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import unittest
|
|
import time
|
|
|
|
from SpiffWorkflow.task import TaskState
|
|
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
|
|
from tests.SpiffWorkflow.bpmn.BpmnWorkflowTestCase import BpmnWorkflowTestCase
|
|
__author__ = 'kellym'
|
|
|
|
|
|
class TimerDurationTest(BpmnWorkflowTestCase):
|
|
|
|
def setUp(self):
|
|
self.spec, self.subprocesses = self.load_workflow_spec('boundary.bpmn', 'boundary_event')
|
|
self.workflow = BpmnWorkflow(self.spec, self.subprocesses)
|
|
|
|
def testRunThroughHappy(self):
|
|
self.actual_test(save_restore=False)
|
|
|
|
def testThroughSaveRestore(self):
|
|
self.actual_test(save_restore=True)
|
|
|
|
def actual_test(self,save_restore = False):
|
|
self.workflow.do_engine_steps()
|
|
ready_tasks = self.workflow.get_tasks(TaskState.READY)
|
|
ready_tasks[0].complete()
|
|
self.workflow.do_engine_steps()
|
|
|
|
loopcount = 0
|
|
# test bpmn has a timeout of .03s; we should terminate loop before that.
|
|
while len(self.workflow.get_waiting_tasks()) == 2 and loopcount < 11:
|
|
if save_restore:
|
|
self.save_restore()
|
|
time.sleep(0.01)
|
|
self.assertEqual(len(self.workflow.get_tasks(TaskState.READY)), 1)
|
|
self.workflow.refresh_waiting_tasks()
|
|
self.workflow.do_engine_steps()
|
|
loopcount += 1
|
|
|
|
self.workflow.do_engine_steps()
|
|
subworkflow = self.workflow.get_tasks_from_spec_name('Subworkflow')[0]
|
|
self.assertEqual(subworkflow.state, TaskState.CANCELLED)
|
|
ready_tasks = self.workflow.get_ready_user_tasks()
|
|
while len(ready_tasks) > 0:
|
|
ready_tasks[0].complete()
|
|
ready_tasks = self.workflow.get_ready_user_tasks()
|
|
self.workflow.do_engine_steps()
|
|
self.assertTrue(self.workflow.is_completed())
|
|
# Assure that the loopcount is less than 10, and the timer interrupt fired, rather
|
|
# than allowing us to continue to loop the full 10 times.
|
|
self.assertTrue(loopcount < 10)
|
|
|
|
|
|
def suite():
|
|
return unittest.TestLoader().loadTestsFromTestCase(TimerDurationTest)
|
|
if __name__ == '__main__':
|
|
unittest.TextTestRunner(verbosity=2).run(suite())
|