mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-24 16:59:46 +00:00
0892db6fa7
git-subtree-dir: SpiffWorkflow git-subtree-split: 63db3e45947ec66b8d0efc2c74064004f8ff482c
78 lines
3.1 KiB
Python
78 lines
3.1 KiB
Python
import unittest
|
|
|
|
from decimal import Decimal
|
|
|
|
from .FeelDecisionRunner import FeelDecisionRunner
|
|
|
|
|
|
class FeelLongOrDoubleDecisionRangeTestClass(unittest.TestCase):
|
|
"""
|
|
Doc: https://docs.camunda.org/manual/7.7/user-guide/dmn-engine/
|
|
"""
|
|
|
|
def test_long_or_double_decision_string_output_inclusive(self):
|
|
runner = FeelDecisionRunner('long_or_double_decision_range_inclusive_feel.dmn')
|
|
|
|
res = runner.decide({"Age":Decimal('100.05')})
|
|
self.assertEqual(res.description, '100.05-110.05 Inclusive Annotation')
|
|
|
|
res = runner.decide({"Age":Decimal('99')})
|
|
self.assertEqual(res.description, 'ELSE Row Annotation')
|
|
|
|
res = runner.decide({"Age":Decimal('110.05')})
|
|
self.assertEqual(res.description, '100.05-110.05 Inclusive Annotation')
|
|
|
|
res = runner.decide({"Age":Decimal('111')})
|
|
self.assertEqual(res.description, 'ELSE Row Annotation')
|
|
|
|
def test_long_or_double_decision_string_output_exclusive(self):
|
|
runner = FeelDecisionRunner('long_or_double_decision_range_exclusive_feel.dmn')
|
|
|
|
res = runner.decide({"Age":Decimal('100.05')})
|
|
self.assertEqual(res.description, 'ELSE Row Annotation')
|
|
|
|
res = runner.decide({"Age":Decimal('101')})
|
|
self.assertEqual(res.description, '100.05-110.05 Exclusive Annotation')
|
|
|
|
res = runner.decide({"Age":Decimal('110.05')})
|
|
self.assertEqual(res.description, 'ELSE Row Annotation')
|
|
|
|
res = runner.decide({"Age":Decimal('109')})
|
|
self.assertEqual(res.description, '100.05-110.05 Exclusive Annotation')
|
|
|
|
def test_long_or_double_decision_string_output_excl_inclusive(self):
|
|
runner = FeelDecisionRunner('long_or_double_decision_range_excl_inclusive_feel.dmn')
|
|
|
|
res = runner.decide({"Age":Decimal('100.05')})
|
|
self.assertEqual(res.description, 'ELSE Row Annotation')
|
|
|
|
res = runner.decide({"Age":Decimal('101')})
|
|
self.assertEqual(res.description, '100.05-110.05 ExclInclusive Annotation')
|
|
|
|
res = runner.decide({"Age":Decimal('110.05')})
|
|
self.assertEqual(res.description, '100.05-110.05 ExclInclusive Annotation')
|
|
|
|
res = runner.decide({"Age":Decimal('111')})
|
|
self.assertEqual(res.description, 'ELSE Row Annotation')
|
|
|
|
def test_long_or_double_decision_string_output_incl_exclusive(self):
|
|
runner = FeelDecisionRunner('long_or_double_decision_range_incl_exclusive_feel.dmn')
|
|
|
|
res = runner.decide({"Age":Decimal('100.05')})
|
|
self.assertEqual(res.description, '100.05-110.05 InclExclusive Annotation')
|
|
|
|
res = runner.decide({"Age":Decimal('99')})
|
|
self.assertEqual(res.description, 'ELSE Row Annotation')
|
|
|
|
res = runner.decide({"Age":Decimal('110.05')})
|
|
self.assertEqual(res.description, 'ELSE Row Annotation')
|
|
|
|
res = runner.decide({"Age":Decimal('109')})
|
|
self.assertEqual(res.description, '100.05-110.05 InclExclusive Annotation')
|
|
|
|
def suite():
|
|
return unittest.TestLoader().loadTestsFromTestCase(FeelLongOrDoubleDecisionRangeTestClass)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.TextTestRunner(verbosity=2).run(suite())
|