mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-18 13:31:08 +00:00
0892db6fa7
git-subtree-dir: SpiffWorkflow git-subtree-split: 63db3e45947ec66b8d0efc2c74064004f8ff482c
50 lines
1.9 KiB
Python
50 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import unittest
|
|
|
|
from SpiffWorkflow.bpmn.exceptions import WorkflowTaskExecException
|
|
from SpiffWorkflow.task import TaskState
|
|
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
|
|
from tests.SpiffWorkflow.bpmn.BpmnWorkflowTestCase import BpmnWorkflowTestCase
|
|
|
|
__author__ = 'matth'
|
|
|
|
|
|
class InlineScriptTest(BpmnWorkflowTestCase):
|
|
|
|
def setUp(self):
|
|
spec, subprocesses = self.load_workflow_spec('ScriptTest.bpmn', 'ScriptTest')
|
|
self.workflow = BpmnWorkflow(spec, subprocesses)
|
|
|
|
def testRunThroughHappy(self):
|
|
|
|
self.workflow.do_engine_steps()
|
|
data = self.workflow.last_task.data
|
|
self.assertEqual(data,{'testvar': {'a': 1, 'b': 2, 'new': 'Test'},
|
|
'testvar2': [{'x': 1, 'y': 'a'},
|
|
{'x': 2, 'y': 'b'},
|
|
{'x': 3, 'y': 'c'}],
|
|
'sample': ['b', 'c']})
|
|
|
|
def testNoDataPollution(self):
|
|
"""Ran into an issue where data from one run of a workflow could
|
|
bleed into a separate execution. It will think a variable is there
|
|
when it should not be there"""
|
|
startTask = self.workflow.get_tasks(TaskState.READY)[0]
|
|
self.workflow.do_engine_steps()
|
|
self.assertTrue(self.workflow.is_completed())
|
|
self.assertTrue("testvar" in self.workflow.last_task.data)
|
|
self.assertFalse("testvar" in startTask.data)
|
|
|
|
# StartTask doesn't know about testvar, it happened earlier.
|
|
# calling an exec that references testvar, in the context of the
|
|
# start task should fail.
|
|
with self.assertRaises(WorkflowTaskExecException):
|
|
result = self.workflow.script_engine.evaluate(startTask, 'testvar == True')
|
|
|
|
|
|
def suite():
|
|
return unittest.TestLoader().loadTestsFromTestCase(InlineScriptTest)
|
|
if __name__ == '__main__':
|
|
unittest.TextTestRunner(verbosity=2).run(suite())
|