testBPMCore.py 54.4 KB
Newer Older
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
1
# -*- coding: utf-8 -*-
2 3 4
##############################################################################
# Copyright (c) 2009 Nexedi SA and Contributors. All Rights Reserved.
#          Łukasz Nowak <luke@nexedi.com>
5
#          Yusuke Muraoka <yusuke@nexedi.com>
6
#          Fabien Morin <fabien@nexedi.com>
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
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################

import unittest
import transaction

from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from DateTime import DateTime

from Products.CMFCore.utils import getToolByName
38
from Products.ERP5Type.tests.utils import reindex
39 40

class TestBPMMixin(ERP5TypeTestCase):
41
  """Skeletons for tests which depend on BPM"""
42 43

  def getBusinessTemplateList(self):
44 45 46
    return ('erp5_base', 'erp5_pdm', 'erp5_simulation', 'erp5_trade',
            'erp5_accounting', 'erp5_invoicing', 'erp5_simplified_invoicing',
            'erp5_simulation_test')
47 48

  business_process_portal_type = 'Business Process'
49
  business_link_portal_type = 'Business Link'
50
  trade_model_path_portal_type = 'Trade Model Path'
51

52 53 54
  normal_resource_use_category_list = ['normal']
  invoicing_resource_use_category_list = ['discount', 'tax']

55 56
  def createCategoriesInCategory(self, category, category_id_list):
    for category_id in category_id_list:
57
      if not category.hasObject(category_id):
58 59 60 61 62
        category.newContent(portal_type='Category', id = category_id,
            title = category_id)

  @reindex
  def createCategories(self):
63 64
    category_tool = getToolByName(self.portal, 'portal_categories')
    self.createCategoriesInCategory(category_tool.base_amount, ['discount',
65
      'tax', 'total_tax', 'total_discount', 'total'])
66 67 68 69
    self.createCategoriesInCategory(category_tool.use,
        self.normal_resource_use_category_list + \
            self.invoicing_resource_use_category_list)
    self.createCategoriesInCategory(category_tool.trade_phase, ['default',])
70 71
    self.createCategoriesInCategory(category_tool.trade_phase.default,
        ['accounting', 'delivery', 'invoicing', 'discount', 'tax', 'payment'])
72
    self.createCategoriesInCategory(category_tool.trade_state,
73
        ['ordered', 'invoiced', 'delivered', 'taxed',
74
         'state_a', 'state_b', 'state_c', 'state_d', 'state_e'])
75 76

  @reindex
77
  def createBusinessProcess(self, **kw):
78
    module = self.portal.getDefaultModule(
79
        portal_type=self.business_process_portal_type,)
80
    business_process =  module.newContent(
81 82 83
      portal_type=self.business_process_portal_type,
      specialise_value=module.erp5_default_business_process)
    business_process._edit(**kw)
84 85
    self.createTradeModelPath(business_process,
      reference='default_path',
86
      trade_phase_value_list=('default/discount', 'default/tax'),
87
      trade_date='trade_phase/default/invoicing')
88 89 90 91
    # A trade model path already exist for root simulation movements
    # (Accounting Transaction Root Simulation Rule).
    # The ones we are creating are for Invoice Transaction Simulation Rule
    # so we add a test on the portal type of the input movement.
92 93
    kw = dict(business_process=business_process,
              trade_phase='default/accounting',
94
              trade_date='trade_phase/default/invoicing',
95 96
              membership_criterion_base_category='resource_use',
              criterion_property_dict={'portal_type': 'Simulation Movement'})
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
    self.createTradeModelPath(reference='acounting_tax1',
      efficiency=-1,
      source_value=self.receivable_account,
      destination_value=self.payable_account,
      membership_criterion_category='resource_use/use/tax',
      **kw)
    self.createTradeModelPath(reference='acounting_tax2',
      efficiency=1,
      source_value=self.collected_tax_account,
      destination_value=self.refundable_tax_account,
      membership_criterion_category='resource_use/use/tax',
      **kw)
    self.createTradeModelPath(reference='acounting_discount1',
      efficiency=-1,
      source_value=self.receivable_account,
      destination_value=self.payable_account,
      membership_criterion_category='resource_use/use/discount',
      **kw)
    self.createTradeModelPath(reference='acounting_discount2',
      efficiency=1,
      source_value=self.income_account,
      destination_value=self.expense_account,
      membership_criterion_category='resource_use/use/discount',
      **kw)
    self.createTradeModelPath(reference='acounting_normal1',
      efficiency=-1,
      source_value=self.receivable_account,
      destination_value=self.payable_account,
      membership_criterion_category='resource_use/use/normal',
      **kw)
    self.createTradeModelPath(reference='acounting_normal2',
      efficiency=1,
      source_value=self.income_account,
      destination_value=self.expense_account,
      membership_criterion_category='resource_use/use/normal',
      **kw)
    return business_process
134 135

  @reindex
136
  def createBusinessLink(self, business_process=None, **kw):
137
    if business_process is None:
138
      business_process = self.createBusinessProcess()
139
    kw['destination_method_id'] = kw.pop('destination_method_id',
140
        'BusinessLink_getDefaultDestinationList')
141
    kw['source_method_id'] = kw.pop('source_method_id',
142 143 144 145
        'BusinessLink_getDefaultSourceList')
    business_link = business_process.newContent(
      portal_type=self.business_link_portal_type, **kw)
    return business_link
146

147 148
  def createTradeModelPath(self, business_process=None,
                           criterion_property_dict={}, **kw):
149 150
    if business_process is None:
      business_process = self.createBusinessProcess()
151
    trade_model_path = business_process.newContent(
152
      portal_type=self.trade_model_path_portal_type, **kw)
153 154 155 156 157
    if criterion_property_dict:
      trade_model_path._setCriterionPropertyList(tuple(criterion_property_dict))
      for property, identity in criterion_property_dict.iteritems():
        trade_model_path.setCriterion(property, identity)
    return trade_model_path
158

159 160 161 162 163 164
  def createMovement(self):
    # returns a movement for testing
    applied_rule = self.portal.portal_simulation.newContent(
        portal_type='Applied Rule')
    return applied_rule.newContent(portal_type='Simulation Movement')

165 166 167 168 169 170 171
  def createAndValidateAccount(self, account_id, account_type):
    account_module = self.portal.account_module
    account = account_module.newContent(portal_type='Account',
          title=account_id,
          account_type=account_type)
    self.assertNotEqual(None, account.getAccountTypeValue())
    account.validate()
172
    return account
173

174
  def createAndValidateAccounts(self):
175 176 177 178 179 180 181 182 183 184 185 186
    self.receivable_account = self.createAndValidateAccount('receivable',
        'asset/receivable')
    self.payable_account = self.createAndValidateAccount('payable',
        'liability/payable')
    self.income_account = self.createAndValidateAccount('income', 'income')
    self.expense_account = self.createAndValidateAccount('expense', 'expense')
    self.collected_tax_account = self.createAndValidateAccount(
        'collected_tax', 'liability/payable/collected_vat')
    self.refundable_tax_account = self.createAndValidateAccount(
        'refundable_tax',
        'asset/receivable/refundable_vat')

187
  def afterSetUp(self):
188
    self.validateRules()
189
    self.createCategories()
190
    self.createAndValidateAccounts()
191
    self.stepTic()
192

193

194 195 196 197 198
class TestBPMImplementation(TestBPMMixin):
  """Business Process implementation tests"""
  def test_BusinessProcess_getPathValueList(self):
    business_process = self.createBusinessProcess()

199 200
    accounting_business_link = business_process.newContent(
        portal_type=self.business_link_portal_type,
201 202
        trade_phase='default/accounting')

203 204
    delivery_business_link = business_process.newContent(
        portal_type=self.business_link_portal_type,
205 206
        trade_phase='default/delivery')

207 208
    accounting_delivery_business_link = business_process.newContent(
        portal_type=self.business_link_portal_type,
209 210 211 212 213
        trade_phase=('default/accounting', 'default/delivery'))

    self.stepTic()

    self.assertSameSet(
214
      (accounting_business_link, accounting_delivery_business_link),
215 216 217 218
      business_process.getPathValueList(trade_phase='default/accounting')
    )

    self.assertSameSet(
219
      (delivery_business_link, accounting_delivery_business_link),
220 221 222 223
      business_process.getPathValueList(trade_phase='default/delivery')
    )

    self.assertSameSet(
224 225
      (accounting_delivery_business_link, delivery_business_link,
        accounting_business_link),
226 227 228 229
      business_process.getPathValueList(trade_phase=('default/delivery',
        'default/accounting'))
    )

230
  def test_BusinessLinkStandardCategoryAccessProvider(self):
231 232 233
    source_node = self.portal.organisation_module.newContent(
                    portal_type='Organisation')
    source_section_node = self.portal.organisation_module.newContent(
234
                    portal_type='Organisation')
235 236 237 238 239
    business_link = self.createBusinessLink()
    business_link.setSourceValue(source_node)
    business_link.setSourceSectionValue(source_section_node)
    self.assertEquals([source_node], business_link.getSourceValueList())
    self.assertEquals([source_node.getRelativeUrl()], business_link.getSourceList())
240
    self.assertEquals(source_node.getRelativeUrl(),
241
        business_link.getSource(default='something'))
242

243 244 245 246
  def test_EmptyBusinessLinkStandardCategoryAccessProvider(self):
    business_link = self.createBusinessLink()
    self.assertEquals(None, business_link.getSourceValue())
    self.assertEquals(None, business_link.getSource())
247
    self.assertEquals('something',
248
        business_link.getSource(default='something'))
249

250
  def test_BuinessPathDynamicCategoryAccessProvider(self):
251 252 253
    source_node = self.portal.organisation_module.newContent(
                    portal_type='Organisation')
    source_section_node = self.portal.organisation_module.newContent(
254
                    portal_type='Organisation')
255 256
    business_link = self.createBusinessLink()
    business_link.setSourceMethodId('BusinessLink_getDefaultSourceList')
257 258

    context_movement = self.createMovement()
259 260
    context_movement.setSourceValue(source_node)
    context_movement.setSourceSectionValue(source_section_node)
261
    self.assertEquals(None, business_link.getSourceValue())
262
    self.assertEquals([source_node],
263
                      business_link.getSourceValueList(context=context_movement))
264
    self.assertEquals([source_node.getRelativeUrl()],
265
                      business_link.getSourceList(context=context_movement))
Łukasz Nowak's avatar
Łukasz Nowak committed
266
    self.assertEquals(source_node.getRelativeUrl(),
267
      business_link.getSource(context=context_movement, default='something'))
268

269
  def test_BuinessPathDynamicCategoryAccessProviderBusinessLinkPrecedence(self):
270 271 272 273
    movement_node = self.portal.organisation_module.newContent(
                    portal_type='Organisation')
    path_node = self.portal.organisation_module.newContent(
                    portal_type='Organisation')
274 275 276
    business_link = self.createBusinessLink()
    business_link.setSourceMethodId('BusinessLink_getDefaultSourceList')
    business_link.setSourceValue(path_node)
277 278 279

    context_movement = self.createMovement()
    context_movement.setSourceValue(movement_node)
280
    self.assertEquals(path_node, business_link.getSourceValue())
281
    self.assertEquals(path_node,
282
                      business_link.getSourceValue(context=context_movement))
283
    self.assertEquals([path_node],
284
                      business_link.getSourceValueList(context=context_movement))
285

286
  def test_BuinessPathDynamicCategoryAccessProviderEmptyMovement(self):
287 288
    business_link = self.createBusinessLink()
    business_link.setSourceMethodId('BusinessLink_getDefaultSourceList')
289 290

    context_movement = self.createMovement()
291
    self.assertEquals(None, business_link.getSourceValue())
292
    self.assertEquals(None,
293
                      business_link.getSourceValue(context=context_movement))
294
    self.assertEquals(None,
295
                      business_link.getSource(context=context_movement))
296
    self.assertEquals('something',
297
      business_link.getSource(context=context_movement, default='something'))
298

299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
  def test_BusinessState_getRemainingTradePhaseList(self):
    """
    This test case is described for what trade_phase is remaining after the state.
    In this case, root explanation is path of between "b" and "d", and
    path of between "a" and "b" has a condition which simulation state of
    explanation must be "ordered" to pass the path. (*1)
    But this test case will be passed the condition.

                            (root explanation)
       default/discount     default/invoicing     default/accounting
    a ------------------ b ------------------- d -------------------- e
       (cond="ordered")   \                   /
                           \                 /
          default/delivery  \               / default/payment
                             \             /
                              \           /
                               \         /
                                \       /
                                 \     /
                                  \   /
                                   \ /
                                    c
    """
    # define business process
323
    category_tool = self.getCategoryTool()
324
    business_process = self.createBusinessProcess()
325 326 327 328 329
    business_link_a_b = self.createBusinessLink(business_process)
    business_link_b_c = self.createBusinessLink(business_process)
    business_link_b_d = self.createBusinessLink(business_process)
    business_link_c_d = self.createBusinessLink(business_process)
    business_link_d_e = self.createBusinessLink(business_process)
330 331 332 333 334
    business_state_a = category_tool.trade_state.state_a
    business_state_b = category_tool.trade_state.state_b
    business_state_c = category_tool.trade_state.state_c
    business_state_d = category_tool.trade_state.state_d
    business_state_e = category_tool.trade_state.state_e
335 336 337 338 339 340 341 342 343 344
    business_link_a_b.setPredecessorValue(business_state_a)
    business_link_b_c.setPredecessorValue(business_state_b)
    business_link_b_d.setPredecessorValue(business_state_b)
    business_link_c_d.setPredecessorValue(business_state_c)
    business_link_d_e.setPredecessorValue(business_state_d)
    business_link_a_b.setSuccessorValue(business_state_b)
    business_link_b_c.setSuccessorValue(business_state_c)
    business_link_b_d.setSuccessorValue(business_state_d)
    business_link_c_d.setSuccessorValue(business_state_d)
    business_link_d_e.setSuccessorValue(business_state_e)
345 346

    # set title for debug
347 348 349 350 351
    business_link_a_b.edit(title="a_b")
    business_link_b_c.edit(title="b_c")
    business_link_b_d.edit(title="b_d")
    business_link_c_d.edit(title="c_d")
    business_link_d_e.edit(title="d_e")
352 353
    
    # set trade_phase
354
    business_link_a_b.edit(trade_phase=['default/discount'],
355
                           completed_state=['ordered']) # (*1)
356 357 358 359
    business_link_b_c.edit(trade_phase=['default/delivery'])
    business_link_b_d.edit(trade_phase=['default/invoicing'])
    business_link_c_d.edit(trade_phase=['default/payment'])
    business_link_d_e.edit(trade_phase=['default/accounting'])
360 361 362 363 364 365 366 367 368 369 370 371

    # mock order
    order = self.portal.sale_order_module.newContent(portal_type="Sale Order")
    order_line = order.newContent(portal_type="Sale Order Line")

    # make simulation
    order.order()

    self.stepTic()

    applied_rule = order.getCausalityRelatedValue()
    sm = applied_rule.contentValues(portal_type="Simulation Movement")[0]
372
    sm.edit(causality_value=business_link_a_b)
373 374 375

    # make other movements for each business path
    applied_rule.newContent(portal_type="Simulation Movement",
376
                            causality_value=business_link_b_c,
377 378
                            order_value=order_line)
    applied_rule.newContent(portal_type="Simulation Movement",
379
                            causality_value=business_link_b_d,
380 381
                            order_value=order_line)
    applied_rule.newContent(portal_type="Simulation Movement",
382
                            causality_value=business_link_c_d,
383 384
                            order_value=order_line)
    applied_rule.newContent(portal_type="Simulation Movement",
385
                            causality_value=business_link_d_e,
386 387 388 389 390 391 392
                            order_value=order_line)

    self.stepTic()

    trade_phase = self.portal.portal_categories.trade_phase.default

    # assertion which getRemainingTradePhaseList must return category which will be passed
393
    # discount is passed, business_link_a_b is already completed, because simulation state is "ordered"
394 395 396 397
    self.assertEquals(set([trade_phase.delivery,
                           trade_phase.invoicing,
                           trade_phase.payment,
                           trade_phase.accounting]),
398 399
                      set(business_process.getRemainingTradePhaseList(order,
                          business_state_a)))
400 401 402 403
    self.assertEquals(set([trade_phase.delivery,
                           trade_phase.invoicing,
                           trade_phase.payment,
                           trade_phase.accounting]),
404 405
                      set(business_process.getRemainingTradePhaseList(order,
                          business_state_b)))
406 407
    self.assertEquals(set([trade_phase.payment,
                           trade_phase.accounting]),
408 409
                      set(business_process.getRemainingTradePhaseList(order,
                          business_state_c)))
410
    self.assertEquals(set([trade_phase.accounting]),
411 412
                      set(business_process.getRemainingTradePhaseList(order,
                          business_state_d)))
413 414 415 416

    # when trade_phase_list is defined in arguments, the result is filtered by base category.
    self.assertEquals(set([trade_phase.delivery,
                           trade_phase.accounting]),
417 418
                      set(business_process\
                          .getRemainingTradePhaseList(order, business_state_a,
419 420 421
                                                      trade_phase_list=['default/delivery',
                                                                        'default/accounting'])))

422
  def test_BusinessLink_calculateExpectedDate(self):
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
    """
    This test case is described for what start/stop date is expected on
    each path by explanation.
    In this case, root explanation is path of between "b" and "d", and
    lead time and wait time is set on each path.
    ("l" is lead time, "w" is wait_time)

    Each path must calculate most early day from getting most longest
    path in the simulation.

    "referential_date" represents for which date have to get of explanation from reality.

                  (root_explanation)
        l:2, w:1         l:3, w:1       l:4, w:2
    a ------------ b -------------- d -------------- e
                    \             /
                     \           /
             l:2, w:1 \         / l:3, w:0
                       \       /
                        \     /
                         \   /
                          \ /
                           c
    """
    # define business process
448
    category_tool = self.getCategoryTool()
449
    business_process = self.createBusinessProcess()
450 451 452 453 454
    business_link_a_b = self.createBusinessLink(business_process)
    business_link_b_c = self.createBusinessLink(business_process)
    business_link_b_d = self.createBusinessLink(business_process)
    business_link_c_d = self.createBusinessLink(business_process)
    business_link_d_e = self.createBusinessLink(business_process)
455 456 457 458 459
    business_state_a = category_tool.trade_state.state_a
    business_state_b = category_tool.trade_state.state_b
    business_state_c = category_tool.trade_state.state_c
    business_state_d = category_tool.trade_state.state_d
    business_state_e = category_tool.trade_state.state_e
460 461 462 463 464 465 466 467 468 469
    business_link_a_b.setPredecessorValue(business_state_a)
    business_link_b_c.setPredecessorValue(business_state_b)
    business_link_b_d.setPredecessorValue(business_state_b)
    business_link_c_d.setPredecessorValue(business_state_c)
    business_link_d_e.setPredecessorValue(business_state_d)
    business_link_a_b.setSuccessorValue(business_state_b)
    business_link_b_c.setSuccessorValue(business_state_c)
    business_link_b_d.setSuccessorValue(business_state_d)
    business_link_c_d.setSuccessorValue(business_state_d)
    business_link_d_e.setSuccessorValue(business_state_e)
470 471

    business_process.edit(referential_date='stop_date')
472 473 474 475 476
    business_link_a_b.edit(title='a_b', lead_time=2, wait_time=1)
    business_link_b_c.edit(title='b_c', lead_time=2, wait_time=1)
    business_link_b_d.edit(title='b_d', lead_time=3, wait_time=1)
    business_link_c_d.edit(title='c_d', lead_time=3, wait_time=0)
    business_link_d_e.edit(title='d_e', lead_time=4, wait_time=2)
477 478

    # root explanation
479
    business_link_b_d.edit(deliverable=True)
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
    self.stepTic()

    """
    Basic test, lead time of reality and simulation are consistent.
    """
    class Mock:
      def __init__(self, date):
        self.date = date
      def getStartDate(self):
        return self.date
      def getStopDate(self):
        return self.date + 3 # lead time of reality

    base_date = DateTime('2009/04/01 GMT+9')
    mock = Mock(base_date)

    # root explanation.
497 498
    self.assertEquals(business_link_b_d.getExpectedStartDate(mock), DateTime('2009/04/01 GMT+9'))
    self.assertEquals(business_link_b_d.getExpectedStopDate(mock), DateTime('2009/04/04 GMT+9'))
499 500

    # assertion for each path without root explanation.
501 502 503 504 505 506 507 508
    self.assertEquals(business_link_a_b.getExpectedStartDate(mock), DateTime('2009/03/27 GMT+9'))
    self.assertEquals(business_link_a_b.getExpectedStopDate(mock), DateTime('2009/03/29 GMT+9'))
    self.assertEquals(business_link_b_c.getExpectedStartDate(mock), DateTime('2009/03/30 GMT+9'))
    self.assertEquals(business_link_b_c.getExpectedStopDate(mock), DateTime('2009/04/01 GMT+9'))
    self.assertEquals(business_link_c_d.getExpectedStartDate(mock), DateTime('2009/04/01 GMT+9'))
    self.assertEquals(business_link_c_d.getExpectedStopDate(mock), DateTime('2009/04/04 GMT+9'))
    self.assertEquals(business_link_d_e.getExpectedStartDate(mock), DateTime('2009/04/06 GMT+9'))
    self.assertEquals(business_link_d_e.getExpectedStopDate(mock), DateTime('2009/04/10 GMT+9'))
509 510 511 512 513 514 515 516

    """
    Test of illegal case, lead time of reality and simulation are inconsistent,
    always reality is taken, but it depends on which date(e.g. start_date and stop_date) is referential.

    How we know which is referential, currently implementation of it can be known by
    BusinessProcess.isStartDateReferential and BusinessProcess.isStopDateReferential.

517
    In this test case, stop_date on business_link_b_d is referential, because business_link_b_d is
518 519 520
    root explanation and business_process refer to stop_date as referential.

    calculation example(when referential date is 2009/04/06 GMT+9):
521
    start_date of business_link_b_d = referential_date - 3(lead_time of business_link_b_d)
522 523 524 525 526 527 528 529 530 531 532 533 534 535
                                    = 2009/04/06 GMT+9 - 3
                                    = 2009/04/03 GMT+9
    """
    class Mock:
      def __init__(self, date):
        self.date = date
      def getStartDate(self):
        return self.date
      def getStopDate(self):
        return self.date + 5 # changed

    base_date = DateTime('2009/04/01 GMT+9')
    mock = Mock(base_date)

536
    self.assertEquals(business_link_b_d.getExpectedStartDate(mock), DateTime('2009/04/03 GMT+9'))
537
    # This is base in this context, because referential_date is 'stop_date'
538
    self.assertEquals(business_link_b_d.getExpectedStopDate(mock), DateTime('2009/04/06 GMT+9'))
539 540

    # assertion for each path without root explanation.
541 542 543 544 545 546 547 548
    self.assertEquals(business_link_a_b.getExpectedStartDate(mock), DateTime('2009/03/29 GMT+9'))
    self.assertEquals(business_link_a_b.getExpectedStopDate(mock), DateTime('2009/03/31 GMT+9'))
    self.assertEquals(business_link_b_c.getExpectedStartDate(mock), DateTime('2009/04/01 GMT+9'))
    self.assertEquals(business_link_b_c.getExpectedStopDate(mock), DateTime('2009/04/03 GMT+9'))
    self.assertEquals(business_link_c_d.getExpectedStartDate(mock), DateTime('2009/04/03 GMT+9'))
    self.assertEquals(business_link_c_d.getExpectedStopDate(mock), DateTime('2009/04/06 GMT+9'))
    self.assertEquals(business_link_d_e.getExpectedStartDate(mock), DateTime('2009/04/08 GMT+9'))
    self.assertEquals(business_link_d_e.getExpectedStopDate(mock), DateTime('2009/04/12 GMT+9'))
549

550
class TestBPMDummyDeliveryMovementMixin(TestBPMMixin):
551 552 553 554 555 556 557
  def _createDelivery(self, **kw):
    return self.folder.newContent(portal_type='Dummy Delivery', **kw)

  def _createMovement(self, delivery, **kw):
    return delivery.newContent(portal_type='Dummy Movement', **kw)

  def getBusinessTemplateList(self):
Łukasz Nowak's avatar
Łukasz Nowak committed
558 559
    return TestBPMMixin.getBusinessTemplateList(self) \
        + ('erp5_dummy_movement', )
560 561 562 563 564 565 566 567 568 569 570 571 572

  def afterSetUp(self):
    TestBPMMixin.afterSetUp(self)
    if not hasattr(self.portal, 'testing_folder'):
      self.portal.newContent(portal_type='Folder',
                            id='testing_folder')
    self.folder = self.portal.testing_folder
    self.stepTic()

  def beforeTearDown(self):
    TestBPMMixin.beforeTearDown(self)
    self.portal.deleteContent(id='testing_folder')
    self.stepTic()
Łukasz Nowak's avatar
Łukasz Nowak committed
573

574 575
  completed_state = 'delivered'
  frozen_state = 'confirmed'
576 577 578

  completed_state_list = [completed_state, frozen_state]
  frozen_state_list = [frozen_state]
579

580
  def _createOrderedDeliveredInvoicedBusinessProcess(self):
581 582
    # simple business process preparation
    business_process = self.createBusinessProcess()
583 584 585 586
    category_tool = self.getCategoryTool()
    ordered = category_tool.trade_state.ordered
    delivered = category_tool.trade_state.delivered
    invoiced = category_tool.trade_state.invoiced
587 588 589

    # path which is completed, as soon as related simulation movements are in
    # proper state
590
    self.order_path = self.createBusinessLink(business_process,
591 592 593 594 595
        successor_value = ordered,
        trade_phase='default/order',
        completed_state_list = self.completed_state_list,
        frozen_state_list = self.frozen_state_list)

596
    self.delivery_path = self.createBusinessLink(business_process,
597
        predecessor_value = ordered, successor_value = delivered,
598 599 600
        trade_phase='default/delivery',
        completed_state_list = self.completed_state_list,
        frozen_state_list = self.frozen_state_list)
601

602
    self.invoice_path = self.createBusinessLink(business_process,
603
        predecessor_value = delivered, successor_value = invoiced,
604
        trade_phase='default/invoicing')
605 606 607 608
    self.stepTic()

  def _createOrderedInvoicedDeliveredBusinessProcess(self):
    business_process = self.createBusinessProcess()
609 610 611 612
    category_tool = self.getCategoryTool()
    ordered = category_tool.trade_state.ordered
    delivered = category_tool.trade_state.delivered
    invoiced = category_tool.trade_state.invoiced
613

614
    self.order_path = self.createBusinessLink(business_process,
615 616 617 618 619
        successor_value = ordered,
        trade_phase='default/order',
        completed_state_list = self.completed_state_list,
        frozen_state_list = self.frozen_state_list)

620
    self.invoice_path = self.createBusinessLink(business_process,
621
        predecessor_value = ordered, successor_value = invoiced,
622 623 624
        trade_phase='default/invoicing',
        completed_state_list = self.completed_state_list,
        frozen_state_list = self.frozen_state_list)
625

626
    self.delivery_path = self.createBusinessLink(business_process,
627 628 629
        predecessor_value = invoiced, successor_value = delivered,
        trade_phase='default/delivery')
    self.stepTic()
630

631 632 633 634 635 636 637 638 639 640
class TestBPMisBuildableImplementation(TestBPMDummyDeliveryMovementMixin):
  def test_isBuildable_OrderedDeliveredInvoiced(self):
    """Test isBuildable for ordered, delivered and invoiced sequence

    Here Business Process sequence corresponds simulation tree.

    delivery_path is related to root applied rule, and invoice_path is related
    to rule below, and invoice_path is after delivery_path
    """
    self._createOrderedDeliveredInvoicedBusinessProcess()
641
    # create order and order line to have starting point for business process
642 643
    order = self._createDelivery()
    order_line = self._createMovement(order)
644 645 646 647 648 649 650

    # first level rule with simulation movement
    applied_rule = self.portal.portal_simulation.newContent(
        portal_type='Applied Rule', causality_value=order)

    simulation_movement = applied_rule.newContent(
      portal_type = 'Simulation Movement',
651 652
      delivery_value = order_line,
      causality_value = self.order_path
653 654 655
    )

    # second level rule with simulation movement
656 657 658 659 660 661 662 663
    delivery_rule = simulation_movement.newContent(
        portal_type='Applied Rule')
    delivery_simulation_movement = delivery_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.delivery_path)

    # third level rule with simulation movement
    invoicing_rule = delivery_simulation_movement.newContent(
664 665
        portal_type='Applied Rule')
    invoicing_simulation_movement = invoicing_rule.newContent(
666 667
        portal_type='Simulation Movement',
        causality_value = self.invoice_path)
668 669 670

    # split simulation movement for first level applied rule
    split_simulation_movement = applied_rule.newContent(
671 672
      portal_type = 'Simulation Movement', delivery_value = order_line,
      causality_value = self.order_path)
673 674

    # second level rule with simulation movement for split parent movement
675 676 677 678 679 680 681 682
    split_delivery_rule = split_simulation_movement.newContent(
        portal_type='Applied Rule')
    split_delivery_simulation_movement = split_delivery_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.delivery_path)

    # third level rule with simulation movement for split parent movement
    split_invoicing_rule = split_delivery_simulation_movement.newContent(
683 684
        portal_type='Applied Rule')
    split_invoicing_simulation_movement = split_invoicing_rule.newContent(
685 686
        portal_type='Simulation Movement',
        causality_value = self.invoice_path)
687

688
    order.setSimulationState(self.completed_state)
689 690 691
    self.stepTic()

    # in the beginning only order related movements shall be buildable
692
    self.assertEquals(self.delivery_path.isBuildable(order), True)
693 694
    self.assertEquals(delivery_simulation_movement.isBuildable(), True)
    self.assertEquals(split_delivery_simulation_movement.isBuildable(), True)
695

696
    self.assertEquals(self.invoice_path.isBuildable(order), False)
697 698 699 700 701
    self.assertEquals(invoicing_simulation_movement.isBuildable(), False)
    self.assertEquals(split_invoicing_simulation_movement.isBuildable(),
        False)

    # add delivery
702 703
    delivery = self._createDelivery(causality_value = order)
    delivery_line = self._createMovement(delivery)
704 705

    # relate not split movement with delivery (deliver it)
706
    delivery_simulation_movement.edit(delivery_value = delivery_line)
707 708 709 710 711 712

    self.stepTic()

    # delivery_path (for order) is still buildable, as split movement is not
    # delivered yet
    #
Łukasz Nowak's avatar
Łukasz Nowak committed
713 714
    # invoice_path is not yet buildable, delivery is in inproper simulation
    # state
715 716 717
    #
    # delivery_path (for delivery) is not buildable - delivery is already
    # built for those movements
718
    self.assertEquals(self.delivery_path.isBuildable(order), True)
719
    self.assertEquals(split_delivery_simulation_movement.isBuildable(), True)
720

721 722
    self.assertEquals(self.delivery_path.isBuildable(delivery), False)
    self.assertEquals(self.invoice_path.isBuildable(delivery), False)
723
    self.assertEquals(delivery_simulation_movement.isBuildable(), False)
724
    self.assertEquals(invoicing_simulation_movement.isBuildable(), False)
725
    self.assertEquals(self.invoice_path.isBuildable(order), False)
726 727 728 729 730
    self.assertEquals(split_invoicing_simulation_movement.isBuildable(),
        False)

    # put delivery in simulation state configured on path (and this state is
    # available directly on movements)
731

732
    delivery.setSimulationState(self.completed_state)
733

734
    self.assertEqual(self.completed_state, delivery.getSimulationState())
735 736 737 738 739 740

    self.stepTic()

    # delivery_path (for order) is still buildable, as split movement is not
    # delivered yet
    #
741
    # invoicing_path (for delivery and order) is buildable - in case of order,
742 743 744 745
    # because part of tree is buildable
    #
    # split movement for invoicing is not buildable - no proper delivery
    # related for previous path
746
    self.assertEquals(self.delivery_path.isBuildable(order), True)
747
    self.assertEquals(invoicing_simulation_movement.isBuildable(), True)
748
    self.assertEquals(self.invoice_path.isBuildable(delivery), True)
749

750
    # XXX look at comments in BusinessLink.isBuildable
751
    self.assertEquals(self.invoice_path.isBuildable(order), True)
752

753
    self.assertEquals(self.delivery_path.isBuildable(delivery), False)
754
    self.assertEquals(delivery_simulation_movement.isBuildable(), False)
755 756 757
    self.assertEquals(split_invoicing_simulation_movement.isBuildable(),
        False)

758 759 760 761 762 763 764 765
  def test_isBuildable_OrderedInvoicedDelivered(self):
    """Test isBuildable for ordered, invoiced and delivered sequence

    Here Business Process sequence do not corresponds simulation tree.

    delivery_path is related to root applied rule, and invoice_path is related
    to rule below, but invoice_path is before delivery_path in seuqence.
    """
766
    self._createOrderedInvoicedDeliveredBusinessProcess()
767 768 769 770 771 772 773 774 775

    order = self._createDelivery()
    order_line = self._createMovement(order)

    applied_rule = self.portal.portal_simulation.newContent(
        portal_type='Applied Rule', causality_value=order)

    simulation_movement = applied_rule.newContent(
      portal_type = 'Simulation Movement',
776 777
      delivery_value = order_line,
      causality_value = self.order_path
778 779
    )

780 781 782 783 784 785 786
    delivery_rule = simulation_movement.newContent(
        portal_type='Applied Rule')
    delivery_simulation_movement = delivery_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.delivery_path)

    invoicing_rule = delivery_simulation_movement.newContent(
787 788
        portal_type='Applied Rule')
    invoicing_simulation_movement = invoicing_rule.newContent(
789 790
        portal_type='Simulation Movement',
        causality_value = self.invoice_path)
791

792
    order.setSimulationState(self.completed_state)
793 794
    self.stepTic()

795
    self.assertEquals(self.delivery_path.isBuildable(order), False)
796
    self.assertEquals(delivery_simulation_movement.isBuildable(), False)
797

798
    self.assertEquals(self.invoice_path.isBuildable(order), True)
799 800 801 802 803 804 805 806 807
    self.assertEquals(invoicing_simulation_movement.isBuildable(), True)

    delivery = self._createDelivery(causality_value = order)
    delivery_line = self._createMovement(delivery)

    invoicing_simulation_movement.edit(delivery_value = delivery_line)

    self.stepTic()

808
    self.assertEquals(self.delivery_path.isBuildable(order), False)
809

810 811
    self.assertEquals(self.delivery_path.isBuildable(delivery), False)
    self.assertEquals(self.invoice_path.isBuildable(delivery), False)
812
    self.assertEquals(delivery_simulation_movement.isBuildable(), False)
813
    self.assertEquals(invoicing_simulation_movement.isBuildable(), False)
814
    self.assertEquals(self.invoice_path.isBuildable(order), False)
815 816 817 818

    # put delivery in simulation state configured on path (and this state is
    # available directly on movements)

819
    delivery.setSimulationState(self.completed_state)
820

821
    self.assertEqual(self.completed_state, delivery.getSimulationState())
822 823 824

    self.stepTic()

825 826
    self.assertEquals(self.delivery_path.isBuildable(order), True)
    self.assertEquals(self.delivery_path.isBuildable(delivery), True)
827
    self.assertEquals(invoicing_simulation_movement.isBuildable(), False)
828 829
    self.assertEquals(self.invoice_path.isBuildable(delivery), False)
    self.assertEquals(self.invoice_path.isBuildable(order), False)
830
    self.assertEquals(delivery_simulation_movement.isBuildable(), True)
831 832 833

    # now simulate compensation

834
    compensated_simulation_movement = delivery_rule.newContent(
835
      portal_type = 'Simulation Movement',
836
      delivery_value = order_line,
837
      causality_value = self.delivery_path
838 839 840 841 842
    )

    compensated_invoicing_rule = compensated_simulation_movement.newContent(
        portal_type='Applied Rule')

843 844 845
    compensated_invoicing_simulation_movement = compensated_invoicing_rule \
      .newContent(portal_type='Simulation Movement',
          causality_value = self.invoice_path)
846 847 848 849 850 851

    # and delivery some part of tree

    another_delivery = self._createDelivery(causality_value = delivery)
    another_delivery_line = self._createMovement(another_delivery)

852
    delivery_simulation_movement.edit(delivery_value=another_delivery_line)
853 854 855

    self.stepTic()

856
    self.assertEquals(self.delivery_path.isBuildable(order), False)
857

858
    self.assertEquals(delivery_simulation_movement.isBuildable(), False)
859 860
    self.assertEquals(invoicing_simulation_movement.isBuildable(), False)

861 862 863
    self.assertEquals(self.invoice_path.isBuildable(order), True)
    self.assertEquals(compensated_invoicing_simulation_movement.isBuildable(),
        True)
864 865 866

    self.assertEquals(compensated_simulation_movement.isBuildable(), False)

867 868 869 870 871 872 873 874 875 876 877 878 879 880 881
class TestBPMisCompletedImplementation(TestBPMDummyDeliveryMovementMixin):
  def test_isCompleted_OrderedDeliveredInvoiced(self):
    """Test isCompleted for ordered, delivered and invoiced sequence"""
    self._createOrderedDeliveredInvoicedBusinessProcess()

    # create order and order line to have starting point for business process
    order = self._createDelivery()
    order_line = self._createMovement(order)

    # first level rule with simulation movement
    applied_rule = self.portal.portal_simulation.newContent(
        portal_type='Applied Rule', causality_value=order)

    simulation_movement = applied_rule.newContent(
      portal_type = 'Simulation Movement',
882 883
      delivery_value = order_line,
      causality_value = self.order_path
884 885 886
    )

    # second level rule with simulation movement
887 888 889 890 891 892 893 894
    delivery_rule = simulation_movement.newContent(
        portal_type='Applied Rule')
    delivery_simulation_movement = delivery_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.delivery_path)

    # third level rule with simulation movement
    invoicing_rule = delivery_simulation_movement.newContent(
895 896 897 898 899 900 901
        portal_type='Applied Rule')
    invoicing_simulation_movement = invoicing_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.invoice_path)

    # split simulation movement for first level applied rule
    split_simulation_movement = applied_rule.newContent(
902 903
      portal_type = 'Simulation Movement', delivery_value = order_line,
      causality_value = self.order_path)
904 905

    # second level rule with simulation movement for split parent movement
906 907 908 909 910 911 912 913
    split_delivery_rule = split_simulation_movement.newContent(
        portal_type='Applied Rule')
    split_delivery_simulation_movement = split_delivery_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.delivery_path)

    # third level rule with simulation movement for split parent movement
    split_invoicing_rule = split_delivery_simulation_movement.newContent(
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
        portal_type='Applied Rule')
    split_invoicing_simulation_movement = split_invoicing_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.invoice_path)

    self.stepTic()

    self.assertEqual(self.delivery_path.isCompleted(order), False)
    self.assertEqual(self.delivery_path.isPartiallyCompleted(order), False)

    self.assertEqual(self.invoice_path.isCompleted(order), False)
    self.assertEqual(self.invoice_path.isPartiallyCompleted(order), False)

    # add delivery
    delivery = self._createDelivery(causality_value = order)
    delivery_line = self._createMovement(delivery)

    # relate not split movement with delivery (deliver it)
932
    delivery_simulation_movement.edit(delivery_value = delivery_line)
933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982

    self.stepTic()

    # nothing changes
    self.assertEqual(self.delivery_path.isCompleted(order), False)
    self.assertEqual(self.delivery_path.isPartiallyCompleted(order), False)

    self.assertEqual(self.invoice_path.isCompleted(order), False)
    self.assertEqual(self.invoice_path.isPartiallyCompleted(order), False)

    # from delivery point of view everything is same
    self.assertEqual(self.delivery_path.isCompleted(delivery), False)
    self.assertEqual(self.delivery_path.isPartiallyCompleted(delivery), False)

    self.assertEqual(self.invoice_path.isCompleted(delivery), False)
    self.assertEqual(self.invoice_path.isPartiallyCompleted(delivery), False)

    # put delivery in simulation state configured on path (and this state is
    # available directly on movements)

    delivery.setSimulationState(self.completed_state)

    self.assertEqual(self.completed_state, delivery.getSimulationState())

    self.stepTic()

    self.assertEqual(self.delivery_path.isCompleted(order), False)
    self.assertEqual(self.delivery_path.isPartiallyCompleted(order), True)

    self.assertEqual(self.invoice_path.isCompleted(order), False)
    self.assertEqual(self.invoice_path.isPartiallyCompleted(order), False)

    self.assertEqual(self.delivery_path.isCompleted(delivery), True)
    self.assertEqual(self.delivery_path.isPartiallyCompleted(delivery), True)

    self.assertEqual(self.invoice_path.isCompleted(delivery), False)
    self.assertEqual(self.invoice_path.isPartiallyCompleted(delivery), False)

  def test_isCompleted_OrderedInvoicedDelivered(self):
    """Test isCompleted for ordered, invoiced and invoiced sequence"""
    self._createOrderedInvoicedDeliveredBusinessProcess()

    order = self._createDelivery()
    order_line = self._createMovement(order)

    applied_rule = self.portal.portal_simulation.newContent(
        portal_type='Applied Rule', causality_value=order)

    simulation_movement = applied_rule.newContent(
      portal_type = 'Simulation Movement',
983
      delivery_value = order_line,
984 985 986
      causality_value = self.delivery_path
    )

987 988 989 990 991 992 993
    delivery_rule = simulation_movement.newContent(
        portal_type='Applied Rule')
    delivery_simulation_movement = delivery_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.delivery_path)

    invoicing_rule = delivery_simulation_movement.newContent(
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
        portal_type='Applied Rule')
    invoicing_simulation_movement = invoicing_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.invoice_path)

    self.stepTic()

    self.assertEqual(self.delivery_path.isCompleted(order), False)
    self.assertEqual(self.delivery_path.isPartiallyCompleted(order), False)

    self.assertEqual(self.invoice_path.isCompleted(order), False)
    self.assertEqual(self.invoice_path.isPartiallyCompleted(order), False)

    delivery = self._createDelivery(causality_value = order)
    delivery_line = self._createMovement(delivery)

    invoicing_simulation_movement.edit(delivery_value = delivery_line)

    self.stepTic()

    self.assertEqual(self.delivery_path.isCompleted(order), False)
    self.assertEqual(self.delivery_path.isPartiallyCompleted(order), False)

    self.assertEqual(self.invoice_path.isCompleted(order), False)
    self.assertEqual(self.invoice_path.isPartiallyCompleted(order), False)

    self.assertEqual(self.delivery_path.isCompleted(delivery), False)
    self.assertEqual(self.delivery_path.isPartiallyCompleted(delivery), False)

    self.assertEqual(self.invoice_path.isCompleted(delivery), False)
    self.assertEqual(self.invoice_path.isPartiallyCompleted(delivery), False)

    # put delivery in simulation state configured on path (and this state is
    # available directly on movements)

    delivery.setSimulationState(self.completed_state)

    self.assertEqual(self.completed_state, delivery.getSimulationState())

    self.stepTic()

    self.assertEqual(self.delivery_path.isCompleted(order), False)
    self.assertEqual(self.delivery_path.isPartiallyCompleted(order), False)

    self.assertEqual(self.invoice_path.isCompleted(order), True)
    self.assertEqual(self.invoice_path.isPartiallyCompleted(order), True)

    self.assertEqual(self.delivery_path.isCompleted(delivery), False)
    self.assertEqual(self.delivery_path.isPartiallyCompleted(delivery), False)

    self.assertEqual(self.invoice_path.isCompleted(delivery), True)
    self.assertEqual(self.invoice_path.isPartiallyCompleted(delivery), True)

    # now simulate compensation

1049
    compensated_simulation_movement = delivery_rule.newContent(
1050
      portal_type = 'Simulation Movement',
1051
      delivery_value = order_line,
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
      causality_value = self.delivery_path
    )

    compensated_invoicing_rule = compensated_simulation_movement.newContent(
        portal_type='Applied Rule')

    compensated_invoicing_simulation_movement = compensated_invoicing_rule \
        .newContent(portal_type='Simulation Movement',
            causality_value = self.invoice_path)

    # and delivery some part of tree

    another_delivery = self._createDelivery(causality_value = delivery)
    another_delivery_line = self._createMovement(another_delivery)

1067
    delivery_simulation_movement.edit(delivery_value=another_delivery_line)
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082

    self.stepTic()

    self.assertEqual(self.delivery_path.isCompleted(order), False)
    self.assertEqual(self.delivery_path.isPartiallyCompleted(order), False)

    self.assertEqual(self.invoice_path.isCompleted(order), False)
    self.assertEqual(self.invoice_path.isPartiallyCompleted(order), True)

    self.assertEqual(self.delivery_path.isCompleted(delivery), False)
    self.assertEqual(self.delivery_path.isPartiallyCompleted(delivery), False)

    self.assertEqual(self.invoice_path.isCompleted(delivery), True)
    self.assertEqual(self.invoice_path.isPartiallyCompleted(delivery), True)

1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
class TestBPMisFrozenImplementation(TestBPMDummyDeliveryMovementMixin):
  def test_isFrozen_OrderedDeliveredInvoiced(self):
    """Test isFrozen for ordered, delivered and invoiced sequence"""
    self._createOrderedDeliveredInvoicedBusinessProcess()

    # create order and order line to have starting point for business process
    order = self._createDelivery()
    order_line = self._createMovement(order)

    # first level rule with simulation movement
    applied_rule = self.portal.portal_simulation.newContent(
        portal_type='Applied Rule', causality_value=order)

    simulation_movement = applied_rule.newContent(
      portal_type = 'Simulation Movement',
1098
      delivery_value = order_line,
1099 1100 1101 1102
      causality_value = self.delivery_path
    )

    # second level rule with simulation movement
1103 1104 1105 1106 1107 1108 1109 1110
    delivery_rule = simulation_movement.newContent(
        portal_type='Applied Rule')
    delivery_simulation_movement = delivery_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.delivery_path)

    # third level rule with simulation movement
    invoicing_rule = delivery_simulation_movement.newContent(
1111 1112 1113 1114 1115 1116 1117
        portal_type='Applied Rule')
    invoicing_simulation_movement = invoicing_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.invoice_path)

    # split simulation movement for first level applied rule
    split_simulation_movement = applied_rule.newContent(
1118 1119
      portal_type = 'Simulation Movement', delivery_value = order_line,
      causality_value = self.order_path)
1120 1121

    # second level rule with simulation movement for split parent movement
1122 1123 1124 1125 1126 1127 1128 1129
    split_delivery_rule = split_simulation_movement.newContent(
        portal_type='Applied Rule')
    split_delivery_simulation_movement = split_delivery_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.delivery_path)

    # third level rule with simulation movement for split parent movement
    split_invoicing_rule = split_delivery_simulation_movement.newContent(
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149
        portal_type='Applied Rule')
    split_invoicing_simulation_movement = split_invoicing_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.invoice_path)

    self.stepTic()

    self.assertEqual(self.delivery_path.isFrozen(order), False)
    self.assertEqual(self.invoice_path.isFrozen(order), False)

    self.assertEqual(simulation_movement.isFrozen(), False)
    self.assertEqual(invoicing_simulation_movement.isFrozen(), False)
    self.assertEqual(split_simulation_movement.isFrozen(), False)
    self.assertEqual(split_invoicing_simulation_movement.isFrozen(), False)

    # add delivery
    delivery = self._createDelivery(causality_value = order)
    delivery_line = self._createMovement(delivery)

    # relate not split movement with delivery (deliver it)
1150
    delivery_simulation_movement.edit(delivery_value = delivery_line)
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177

    self.stepTic()

    # nothing changes
    self.assertEqual(self.delivery_path.isFrozen(order), False)
    self.assertEqual(self.invoice_path.isFrozen(order), False)

    # from delivery point of view everything is same
    self.assertEqual(self.delivery_path.isFrozen(delivery), False)
    self.assertEqual(self.invoice_path.isFrozen(delivery), False)

    self.assertEqual(simulation_movement.isFrozen(), False)
    self.assertEqual(invoicing_simulation_movement.isFrozen(), False)
    self.assertEqual(split_simulation_movement.isFrozen(), False)
    self.assertEqual(split_invoicing_simulation_movement.isFrozen(), False)

    # put delivery in simulation state configured on path (and this state is
    # available directly on movements)

    delivery.setSimulationState(self.frozen_state)

    self.assertEqual(self.frozen_state, delivery.getSimulationState())

    self.stepTic()

    self.assertEqual(self.delivery_path.isFrozen(order), False)
    self.assertEqual(self.invoice_path.isFrozen(order), False)
1178
    self.assertEqual(self.delivery_path.isFrozen(delivery), False)
1179 1180
    self.assertEqual(self.invoice_path.isFrozen(delivery), False)

1181
    self.assertEqual(delivery_simulation_movement.isFrozen(), True)
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
    self.assertEqual(invoicing_simulation_movement.isFrozen(), False)
    self.assertEqual(split_simulation_movement.isFrozen(), False)
    self.assertEqual(split_invoicing_simulation_movement.isFrozen(), False)

  def test_isFrozen_OrderedInvoicedDelivered(self):
    """Test isFrozen for ordered, invoiced and invoiced sequence"""
    self._createOrderedInvoicedDeliveredBusinessProcess()

    order = self._createDelivery()
    order_line = self._createMovement(order)

    applied_rule = self.portal.portal_simulation.newContent(
        portal_type='Applied Rule', causality_value=order)

    simulation_movement = applied_rule.newContent(
      portal_type = 'Simulation Movement',
1198
      delivery_value = order_line,
1199 1200 1201
      causality_value = self.delivery_path
    )

1202 1203 1204 1205 1206 1207 1208
    delivery_rule = simulation_movement.newContent(
        portal_type='Applied Rule')
    delivery_simulation_movement = delivery_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.delivery_path)

    invoicing_rule = delivery_simulation_movement.newContent(
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
        portal_type='Applied Rule')
    invoicing_simulation_movement = invoicing_rule.newContent(
        portal_type='Simulation Movement',
        causality_value = self.invoice_path)

    self.stepTic()

    self.assertEqual(self.delivery_path.isFrozen(order), False)
    self.assertEqual(self.invoice_path.isFrozen(order), False)

    self.assertEqual(simulation_movement.isFrozen(), False)
    self.assertEqual(invoicing_simulation_movement.isFrozen(), False)

    delivery = self._createDelivery(causality_value = order)
    delivery_line = self._createMovement(delivery)

    invoicing_simulation_movement.edit(delivery_value = delivery_line)

    self.stepTic()

    self.assertEqual(self.delivery_path.isFrozen(order), False)
    self.assertEqual(self.invoice_path.isFrozen(order), False)
    self.assertEqual(self.delivery_path.isFrozen(delivery), False)
    self.assertEqual(self.invoice_path.isFrozen(delivery), False)

    self.assertEqual(simulation_movement.isFrozen(), False)
    self.assertEqual(invoicing_simulation_movement.isFrozen(), False)

    # put delivery in simulation state configured on path (and this state is
    # available directly on movements)

    delivery.setSimulationState(self.frozen_state)

    self.assertEqual(self.frozen_state, delivery.getSimulationState())

    self.stepTic()

    self.assertEqual(self.delivery_path.isFrozen(order), False)
    self.assertEqual(self.invoice_path.isFrozen(order), True)
    self.assertEqual(self.delivery_path.isFrozen(delivery), False)
    self.assertEqual(self.invoice_path.isFrozen(delivery), True)

    self.assertEqual(simulation_movement.isFrozen(), False)
    self.assertEqual(invoicing_simulation_movement.isFrozen(), True)

    # now simulate compensation

1256
    compensated_simulation_movement = delivery_rule.newContent(
1257
      portal_type = 'Simulation Movement',
1258
      delivery_value = order_line,
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273
      causality_value = self.delivery_path
    )

    compensated_invoicing_rule = compensated_simulation_movement.newContent(
        portal_type='Applied Rule')

    compensated_invoicing_simulation_movement = compensated_invoicing_rule \
        .newContent(portal_type='Simulation Movement',
            causality_value = self.invoice_path)

    # and delivery some part of tree

    another_delivery = self._createDelivery(causality_value = delivery)
    another_delivery_line = self._createMovement(another_delivery)

1274
    delivery_simulation_movement.edit(delivery_value=another_delivery_line)
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292

    self.stepTic()

    self.assertEqual(self.delivery_path.isFrozen(order), False)

    self.assertEqual(self.invoice_path.isFrozen(order), False)

    self.assertEqual(self.delivery_path.isFrozen(delivery), False)

    self.assertEqual(self.invoice_path.isFrozen(delivery), True)

    self.assertEqual(simulation_movement.isFrozen(), False)
    self.assertEqual(invoicing_simulation_movement.isFrozen(), True)

    self.assertEqual(compensated_simulation_movement.isFrozen(), False)
    self.assertEqual(compensated_invoicing_simulation_movement.isFrozen(),
        False)

1293 1294 1295
def test_suite():
  suite = unittest.TestSuite()
  suite.addTest(unittest.makeSuite(TestBPMImplementation))
1296
  suite.addTest(unittest.makeSuite(TestBPMisBuildableImplementation))
1297
  suite.addTest(unittest.makeSuite(TestBPMisCompletedImplementation))
1298
  suite.addTest(unittest.makeSuite(TestBPMisFrozenImplementation))
1299
  return suite