testERP5BankingCounterRendering.py 25.9 KB
Newer Older
Sebastien Robin's avatar
Sebastien Robin committed
1 2 3 4 5 6 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 38 39 40 41 42
##############################################################################
#
# Copyright (c) 2005-2006 Nexedi SARL and Contributors. All Rights Reserved.
#                    Alexandre Boeglin <alex_AT_nexedi_DOT_com>
#                    Kevin Deldycke <kevin_AT_nexedi_DOT_com>
#                    Aurelien Calonne <aurel@nexedi.com>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability 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
# garantees 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 requested python module
import os
from Products.ERP5Type.tests.Sequence import SequenceList
from Products.DCWorkflow.DCWorkflow import Unauthorized, ValidationFailed
from Products.ERP5Banking.tests.TestERP5BankingMixin import TestERP5BankingMixin

# Needed in order to have a log file inside the current folder
os.environ['EVENT_LOG_FILE']     = os.path.join(os.getcwd(), 'zLOG.log')
# Define the level of log we want, here is all
os.environ['EVENT_LOG_SEVERITY'] = '-300'

43
class TestERP5BankingCounterRendering(TestERP5BankingMixin):
Sebastien Robin's avatar
Sebastien Robin committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
  """
    This class is a unit test to check the module of Counter Rendering

    Here are the following step that will be done in the test :

    - before the test, we need to create some movements that will put resources in the source

    - create a counter rendering
    - check it has been created correctly
    - check source and destination (current == future)

    - create a "Note Line" (billetage)
    - check it has been created correctly
    - check the total amount

    - create a second Line
    - check it has been created correctly
    - check the total amount

    - create an invalid Line (quantity > available at source)
    - check that the system behaves correctly

    - pass "confirm_action" transition
    - check that the new state is confirmed
    - check that the source has been debited correctly (current < future)
    - check amount, lines, ...

    - pass "deliver_action" transition
    - check that the new state is delivered
    - check that the destination has been credited correctly (current == future)
  """


  # pseudo constants
  RUN_ALL_TEST = 1 # we want to run all test
  QUIET = 0 # we don't want the test to be quiet

  def getTitle(self):
    """
      Return the title of the test
    """
    return "ERP5BankingCounterRendering"

  def getCounterRenderingModule(self):
    """
    Return the Cash Transer Module
    """
    return getattr(self.getPortal(), 'counter_rendering_module', None)


  def afterSetUp(self):
    """
      Method called before the launch of the test to initialize some data
    """
    # Set some variables :
    self.initDefaultVariable()
    # the cahs transfer module
    self.counter_rendering_module = self.getCounterRenderingModule()

    self.createManagerAndLogin()

    # create categories
    self.createFunctionGroupSiteCategory()

    # Before the test, we need to input the inventory

    inventory_dict_line_1 = {'id' : 'inventory_line_1',
                             'resource': self.billet_10000,
                             'variation_id': ('emission_letter', 'cash_status', 'variation'),
113
                             'variation_value': ('emission_letter/p', 'cash_status/not_defined') + self.variation_list,
Sebastien Robin's avatar
Sebastien Robin committed
114 115 116 117 118
                             'quantity': self.quantity_10000}

    inventory_dict_line_2 = {'id' : 'inventory_line_2',
                             'resource': self.piece_200,
                             'variation_id': ('emission_letter', 'cash_status', 'variation'),
119
                             'variation_value': ('emission_letter/p', 'cash_status/not_defined') + self.variation_list,
Sebastien Robin's avatar
Sebastien Robin committed
120 121
                             'quantity': self.quantity_200}

122
    self.line_list = line_list = [inventory_dict_line_1, inventory_dict_line_2]
Sebastien Robin's avatar
Sebastien Robin committed
123 124
    self.usual_cash = self.paris.surface.caisse_courante.encaisse_des_billets_et_monnaies
    self.counter = self.paris.surface.banque_interne.guichet_1.encaisse_des_billets_et_monnaies
Sebastien Robin's avatar
Sebastien Robin committed
125 126
    self.counter_vault = self.counter.sortante
    self.createCashInventory(source=None, destination=self.counter_vault, currency=self.currency_1,
Sebastien Robin's avatar
Sebastien Robin committed
127
                             line_list=line_list)
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
    # now we need to create a user as Manager to do the test
    # in order to have an assigment defined which is used to do transition
    # Create an Organisation that will be used for users assignment
    self.checkUserFolderType()
    self.organisation = self.organisation_module.newContent(id='paris', portal_type='Organisation',
                          function='banking', group='baobab',  site='testsite/paris')
    # define the user
    user_dict = {
        'super_user' : [['Manager'], self.organisation, 'banking/comptable', 'baobab', 'testsite/paris/surface/banque_interne/guichet_1']
      }
    # call method to create this user
    self.createERP5Users(user_dict)
    self.logout()
    self.login('super_user')
    # open counter date and counter
    self.openCounterDate(site=self.paris)
    self.openCounter(site=self.counter)
Sebastien Robin's avatar
Sebastien Robin committed
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165


  def stepCheckObjects(self, sequence=None, sequence_list=None, **kwd):
    """
    Check that all the objects we created in afterSetUp or
    that were added by the business template and that we rely
    on are really here.
    """
    self.checkResourceCreated()
    # check that CounterRendering Module was created
    self.assertEqual(self.counter_rendering_module.getPortalType(), 'Counter Rendering Module')
    # check counter rendering module is empty
    self.assertEqual(len(self.counter_rendering_module.objectValues()), 0)


  def stepCheckInitialInventory(self, sequence=None, sequence_list=None, **kwd):
    """
    Check the initial inventory before any operations
    """
    self.simulation_tool = self.getSimulationTool()
    # check we have 5 banknotes of 10000 in usual_cash
Sebastien Robin's avatar
Sebastien Robin committed
166 167
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.counter_vault.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 5.0)
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.counter_vault.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 5.0)
Sebastien Robin's avatar
Sebastien Robin committed
168
    # check we have 12 coin of 200 in usual_cash
Sebastien Robin's avatar
Sebastien Robin committed
169 170
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.counter_vault.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 12.0)
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.counter_vault.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 12.0)
Sebastien Robin's avatar
Sebastien Robin committed
171 172 173 174 175 176 177


  def stepCheckSource(self, sequence=None, sequence_list=None, **kwd):
    """
    Check inventory in source vault (usual_cash) before a confirm
    """
    # check we have 5 banknotes of 10000
Sebastien Robin's avatar
Sebastien Robin committed
178 179
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.counter_vault.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 5.0)
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.counter_vault.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 5.0)
Sebastien Robin's avatar
Sebastien Robin committed
180
    # check we have 12 coin of 200
Sebastien Robin's avatar
Sebastien Robin committed
181 182
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.counter_vault.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 12.0)
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.counter_vault.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 12.0)
Sebastien Robin's avatar
Sebastien Robin committed
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202


  def stepCheckDestination(self, sequence=None, sequence_list=None, **kwd):
    """
    Check inventory in destination vault (counter) before confirm
    """
    # check we don't have banknotes of 10000
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.usual_cash.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 0.0)
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.usual_cash.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 0.0)
    # check we don't have coins of 200
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.usual_cash.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 0.0)
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.usual_cash.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 0.0)


  def stepCreateCounterRendering(self, sequence=None, sequence_list=None, **kwd):
    """
    Create a counter rendering document and check it
    """
    # Counter rendering has usual_cash for source, counter for destination, and a price cooreponding to the sum of banknote of 10000 abd coin of 200 ( (2+3) * 1000 + (5+7) * 200 )

203 204 205 206 207 208
    self.counter_rendering = self.counter_rendering_module.newContent(
                                    id='counter_rendering_1', 
                                    portal_type='Counter Rendering', 
                                    source_value=self.counter_vault, 
                                    description='test',
                                    source_total_asset_price=52400.0)
Sebastien Robin's avatar
Sebastien Robin committed
209 210 211 212 213 214 215 216 217
    # execute tic
    self.stepTic()
    # check we have only one counter rendering
    self.assertEqual(len(self.counter_rendering_module.objectValues()), 1)
    # get the counter rendering document
    self.counter_rendering = getattr(self.counter_rendering_module, 'counter_rendering_1')
    # check its portal type
    self.assertEqual(self.counter_rendering.getPortalType(), 'Counter Rendering')
    # check that its source is usual_cash
Sebastien Robin's avatar
Sebastien Robin committed
218
    self.assertEqual(self.counter_rendering.getSource(), 'site/testsite/paris/surface/banque_interne/guichet_1/encaisse_des_billets_et_monnaies/sortante')
Sebastien Robin's avatar
Sebastien Robin committed
219 220 221 222 223 224 225 226 227 228 229
    # check that its destination is counter
    #self.assertEqual(self.counter_rendering.getDestination(), 'site/testsite/paris/surface/caisse_courante/encaisse_des_billets_et_monnaies')



  def stepCreateValidLine1(self, sequence=None, sequence_list=None, **kwd):
    """
    Create the counter rendering line 1 with banknotes of 10000 and check it has been well created
    """
    # create the counter rendering line
    self.addCashLineToDelivery(self.counter_rendering, 'valid_line_1', 'Cash Delivery Line', self.billet_10000,
230
            ('emission_letter', 'cash_status', 'variation'), ('emission_letter/p', 'cash_status/not_defined') + self.variation_list,
Sebastien Robin's avatar
Sebastien Robin committed
231 232 233 234 235 236 237 238 239 240 241 242 243 244
            self.quantity_10000)
    # execute tic
    self.stepTic()
    # check there is only one line created
    self.assertEqual(len(self.counter_rendering.objectValues()), 1)
    # get the counter rendering line
    self.valid_line_1 = getattr(self.counter_rendering, 'valid_line_1')
    # check its portal type
    self.assertEqual(self.valid_line_1.getPortalType(), 'Cash Delivery Line')
    # check the resource is banknotes of 10000
    self.assertEqual(self.valid_line_1.getResourceValue(), self.billet_10000)
    # chek the value of the banknote
    self.assertEqual(self.valid_line_1.getPrice(), 10000.0)
    # check the unit of banknote
245
    self.assertEqual(self.valid_line_1.getQuantityUnit(), 'unit')
Sebastien Robin's avatar
Sebastien Robin committed
246 247 248 249 250
    # check we have two delivery cells: (one for year 1992 and one for 2003)
    self.assertEqual(len(self.valid_line_1.objectValues()), 2)
    # now check for each variation (years 1992 and 2003)
    for variation in self.variation_list:
      # get the delivery cell
251
      cell = self.valid_line_1.getCell('emission_letter/p', variation, 'cash_status/not_defined')
Sebastien Robin's avatar
Sebastien Robin committed
252 253 254 255 256
      # chek portal types
      self.assertEqual(cell.getPortalType(), 'Cash Delivery Cell')
      # check the banknote of the cell is banknote of 10000
      self.assertEqual(cell.getResourceValue(), self.billet_10000)
      # check the source vault is usual_cash
Sebastien Robin's avatar
Sebastien Robin committed
257
      self.assertEqual(cell.getSourceValue(), self.counter_vault)
Sebastien Robin's avatar
Sebastien Robin committed
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
      # check the destination vault is counter
      #self.assertEqual(cell.getDestinationValue(), self.usual_cash)
      if cell.getId() == 'movement_0_0_0':
        # check the quantity of banknote for year 1992 is 2
        self.assertEqual(cell.getQuantity(), 2.0)
      elif cell.getId() == 'movement_0_1_0':
        # check the quantity of banknote for year 2003 is 3
        self.assertEqual(cell.getQuantity(), 3.0)
      else:
        self.fail('Wrong cell created : %s' % cell.getId())


  def stepCheckSubTotal(self, sequence=None, sequence_list=None, **kwd):
    """
    Check the amount after the creation of counter rendering line 1
    """
    # Check number of lines
    self.assertEqual(len(self.counter_rendering.objectValues()), 1)
    # Check quantity of banknotes (2 for 1992 and 3 for 2003)
277
    self.assertEqual(self.counter_rendering.getTotalQuantity(fast=0), 5.0)
Sebastien Robin's avatar
Sebastien Robin committed
278
    # Check the total price
279
    self.assertEqual(self.counter_rendering.getTotalPrice(fast=0), 10000 * 5.0)
Sebastien Robin's avatar
Sebastien Robin committed
280 281 282 283 284 285 286 287


  def stepCreateValidLine2(self, sequence=None, sequence_list=None, **kwd):
    """
    Create the counter rendering line 2 wiht coins of 200 and check it has been well created
    """
    # create the line
    self.addCashLineToDelivery(self.counter_rendering, 'valid_line_2', 'Cash Delivery Line', self.piece_200,
288
            ('emission_letter', 'cash_status', 'variation'), ('emission_letter/p', 'cash_status/not_defined') + self.variation_list,
Sebastien Robin's avatar
Sebastien Robin committed
289 290 291 292 293 294 295 296 297 298 299 300 301 302
            self.quantity_200)
    # execute tic
    self.stepTic()
    # check the number of lines (line1 + line2)
    self.assertEqual(len(self.counter_rendering.objectValues()), 2)
    # get the second counter rendering line
    self.valid_line_2 = getattr(self.counter_rendering, 'valid_line_2')
    # check portal types
    self.assertEqual(self.valid_line_2.getPortalType(), 'Cash Delivery Line')
    # check the resource is coin of 200
    self.assertEqual(self.valid_line_2.getResourceValue(), self.piece_200)
    # check the value of coin
    self.assertEqual(self.valid_line_2.getPrice(), 200.0)
    # check the unit of coin
303
    self.assertEqual(self.valid_line_2.getQuantityUnit(), 'unit')
Sebastien Robin's avatar
Sebastien Robin committed
304 305 306 307
    # check we have two delivery cells: (one for year 1992 and one for 2003)
    self.assertEqual(len(self.valid_line_2.objectValues()), 2)
    for variation in self.variation_list:
      # get the delivery  cell
308
      cell = self.valid_line_2.getCell('emission_letter/p', variation, 'cash_status/not_defined')
Sebastien Robin's avatar
Sebastien Robin committed
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
      # check the portal type
      self.assertEqual(cell.getPortalType(), 'Cash Delivery Cell')
      if cell.getId() == 'movement_0_0_0':
        # check the quantity for coin for year 1992 is 5
        self.assertEqual(cell.getQuantity(), 5.0)
      elif cell.getId() == 'movement_0_1_0':
        # check the quantity for coin for year 2003 is 7
        self.assertEqual(cell.getQuantity(), 7.0)
      else:
        self.fail('Wrong cell created : %s' % cell.getId())


  def stepCreateInvalidLine(self, sequence=None, sequence_list=None, **kwd):
    """
    Create an invalid counter rendering line and
    check the total with the invalid counter rendering line
    """
    # create a line in which quanity of banknotes of 5000 is higher that quantity available at source
    # here create a line with 24 (11+13) banknotes of 500 although the vault usual_cash has no banknote of 5000
    self.addCashLineToDelivery(self.counter_rendering, 'invalid_line', 'Cash Delivery Line', self.billet_5000,
329
            ('emission_letter', 'cash_status', 'variation'), ('emission_letter/p', 'cash_status/not_defined') + self.variation_list,
Sebastien Robin's avatar
Sebastien Robin committed
330 331 332 333 334 335
            self.quantity_5000)
    # execute tic
    self.stepTic()
    # Check number of counter rendering lines (line1 + line2 +invalid_line)
    self.assertEqual(len(self.counter_rendering.objectValues()), 3)
    # Check quantity, same as checkTotal + banknote of 500: 11 for 1992 and 13 for 2003
336
    self.assertEqual(self.counter_rendering.getTotalQuantity(fast=0), 5.0 + 12.0 + 24)
Sebastien Robin's avatar
Sebastien Robin committed
337
    # chect the total price
338
    self.assertEqual(self.counter_rendering.getTotalPrice(fast=0), 10000 * 5.0 + 200 * 12.0 + 5000 * 24)
Sebastien Robin's avatar
Sebastien Robin committed
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361


  def stepTryConfirmCounterRenderingWithBadInventory(self, sequence=None, sequence_list=None, **kwd):
    """
    Try to confirm the counter rendering with a bad counter rendering line and
    check the try of confirm the counter rendering with the invalid line has failed
    """
    # fix amount (10000 * 5.0 + 200 * 12.0 + 5000 * 24)
    self.counter_rendering.setSourceTotalAssetPrice('172400.0')
    # try to do the workflow action "confirm_action', cath the exception ValidationFailed raised by workflow transition
    self.assertRaises(ValidationFailed, self.workflow_tool.doActionFor, self.counter_rendering, 'confirm_action', wf_id='counter_rendering_workflow')
    # execute tic
    self.stepTic()
    # get state of the counter rendering
    state = self.counter_rendering.getSimulationState()
    # check the state is draft
    self.assertEqual(state, 'draft')
    # get workflow history
    workflow_history = self.workflow_tool.getInfoFor(ob=self.counter_rendering, name='history', wf_id='counter_rendering_workflow')
    # check its len is 2
    self.assertEqual(len(workflow_history), 2)
    # check we get an "Insufficient balance" message in the workflow history because of the invalid line
    msg = workflow_history[-1]['error_message']
362
    self.assertTrue('Insufficient balance' in "%s" %(msg,))
Sebastien Robin's avatar
Sebastien Robin committed
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378


  def stepDelInvalidLine(self, sequence=None, sequence_list=None, **kwd):
    """
    Delete the invalid counter rendering line previously create
    """
    self.counter_rendering.deleteContent('invalid_line')


  def stepCheckTotal(self, sequence=None, sequence_list=None, **kwd):
    """
    Check the total after the creation of the two counter rendering lines
    """
    # Check number of lines (line1 + line2)
    self.assertEqual(len(self.counter_rendering.objectValues()), 2)
    # Check quantity, banknotes : 2 for 1992 and 3 for 2003, coin : 5 for 1992 and 7 for 2003
379
    self.assertEqual(self.counter_rendering.getTotalQuantity(fast=0), 5.0 + 12.0)
Sebastien Robin's avatar
Sebastien Robin committed
380
    # check the total price
381
    self.assertEqual(self.counter_rendering.getTotalPrice(fast=0), 10000 * 5.0 + 200 * 12.0)
Sebastien Robin's avatar
Sebastien Robin committed
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408


  def stepConfirmCounterRendering(self, sequence=None, sequence_list=None, **kwd):
    """
    Confirm the counter rendering and check it
    """
    # fix amount (10000 * 5.0 + 200 * 12.0)
    self.counter_rendering.setSourceTotalAssetPrice('52400.0')
    # do the Workflow action
    self.workflow_tool.doActionFor(self.counter_rendering, 'confirm_action', wf_id='counter_rendering_workflow')
    # execute tic
    self.stepTic()
    # get state
    state = self.counter_rendering.getSimulationState()
    # check state is confirmed
    self.assertEqual(state, 'confirmed')
    # get workflow history
    workflow_history = self.workflow_tool.getInfoFor(ob=self.counter_rendering, name='history', wf_id='counter_rendering_workflow')
    # check len of workflow history is 4
    self.assertEqual(len(workflow_history), 4)


  def stepCheckSourceDebitPlanned(self, sequence=None, sequence_list=None, **kwd):
    """
    Check that compution of inventory at vault usual_cash is right after confirm and before deliver
    """
    # check we have 5 banknotes of 10000 currently
Sebastien Robin's avatar
Sebastien Robin committed
409
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.counter_vault.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 5.0)
Sebastien Robin's avatar
Sebastien Robin committed
410
    # check we will have 0 banknote of 10000 after deliver
Sebastien Robin's avatar
Sebastien Robin committed
411
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.counter_vault.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 0.0)
Sebastien Robin's avatar
Sebastien Robin committed
412
    # check we have 12 coins of 200 currently
Sebastien Robin's avatar
Sebastien Robin committed
413
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.counter_vault.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 12.0)
Sebastien Robin's avatar
Sebastien Robin committed
414
    # check we will have 0 coin of 200 after deliver
Sebastien Robin's avatar
Sebastien Robin committed
415
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.counter_vault.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 0.0)
Sebastien Robin's avatar
Sebastien Robin committed
416 417 418 419 420 421 422 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 448


  def stepCheckDestinationCreditPlanned(self, sequence=None, sequence_list=None, **kwd):
    """
    Check that compution of inventory at vault counter is right after confirm and before deliver
    """

    # check we have 0 banknote of 10000 currently
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.usual_cash.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 0.0)
    # check we will have 5 banknotes of 10000 after deliver
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.usual_cash.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 5.0)
    # check we have 0 coin of 200 currently
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.usual_cash.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 0.0)
    # check we will have 12 coins of 200 after deliver
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.usual_cash.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 12.0)


  def stepDeliverCounterRendering(self, sequence=None, sequence_list=None, **kwd):
    """
    Deliver the counter rendering with a good user
    and check that the deliver of a cash tranfer have achieved
    """
    # do the workflow transition "deliver_action"
    self.workflow_tool.doActionFor(self.counter_rendering, 'deliver_action', wf_id='counter_rendering_workflow')
    # execute tic
    self.stepTic()
    # get state of counter rendering
    state = self.counter_rendering.getSimulationState()
    # check that state is delivered
    self.assertEqual(state, 'delivered')
    # get workflow history
    workflow_history = self.workflow_tool.getInfoFor(ob=self.counter_rendering, name='history', wf_id='counter_rendering_workflow')

449 450 451 452 453
  def stepCheckBaobabDestination(self, sequence=None, sequence_list=None, **kwd):
    """
    Check destination vault equal site/testsite/paris/surface/caisse_courante/encaisse_des_billets_et_monnaies
    """
    self.assertEqual(self.counter_rendering.getBaobabDestination(), 'site/testsite/paris/surface/caisse_courante/encaisse_des_billets_et_monnaies')
Sebastien Robin's avatar
Sebastien Robin committed
454 455 456 457 458 459

  def stepCheckSourceDebit(self, sequence=None, sequence_list=None, **kwd):
    """
    Check inventory at source (vault usual_cash) after deliver of the counter rendering
    """
    # check we have 0 banknote of 10000
Sebastien Robin's avatar
Sebastien Robin committed
460 461
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.counter_vault.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 0.0)
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.counter_vault.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 0.0)
Sebastien Robin's avatar
Sebastien Robin committed
462
    # check we have 0 coin of 200
Sebastien Robin's avatar
Sebastien Robin committed
463 464
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.counter_vault.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 0.0)
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.counter_vault.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 0.0)
Sebastien Robin's avatar
Sebastien Robin committed
465 466 467 468 469 470 471 472 473 474 475 476 477


  def stepCheckDestinationCredit(self, sequence=None, sequence_list=None, **kwd):
    """
    Check inventory at destination (vault counter) after deliver of the counter rendering
    """
    # check we have 5 banknotes of 10000
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.usual_cash.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 5.0)
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.usual_cash.getRelativeUrl(), resource = self.billet_10000.getRelativeUrl()), 5.0)
    # check we have 12 coins of 200
    self.assertEqual(self.simulation_tool.getCurrentInventory(node=self.usual_cash.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 12.0)
    self.assertEqual(self.simulation_tool.getFutureInventory(node=self.usual_cash.getRelativeUrl(), resource = self.piece_200.getRelativeUrl()), 12.0)

478 479 480 481 482 483 484 485 486 487 488 489
  def stepResetInventory(self, 
               sequence=None, sequence_list=None, **kwd):
    node = self.counter_vault
    line_list = self.line_list
    self.resetInventory(destination=node, currency=self.currency_1,
                        line_list=line_list,extra_id='_reset_out')

  def stepDeliverFails(self, sequence=None, sequence_list=None, **kwd):
    message = self.assertWorkflowTransitionFails(self.counter_rendering,
              'counter_rendering_workflow','deliver_action')
    self.failUnless(message.find('Insufficient balance')>=0)

Sebastien Robin's avatar
Sebastien Robin committed
490 491 492 493 494 495 496 497 498 499 500 501 502
  ##################################
  ##  Tests
  ##################################

  def test_01_ERP5BankingCounterRendering(self, quiet=QUIET, run=RUN_ALL_TEST):
    """
    Define the sequence of step that will be play
    """
    if not run: return
    sequence_list = SequenceList()
    # define the sequence
    sequence_string = 'Tic CheckObjects Tic CheckInitialInventory CheckSource CheckDestination ' \
                    + 'CreateCounterRendering ' \
503
                    + 'Tic CheckBaobabDestination ' \
Sebastien Robin's avatar
Sebastien Robin committed
504 505 506 507 508 509 510 511 512
                    + 'CreateValidLine1 CheckSubTotal ' \
                    + 'CreateValidLine2 CheckTotal ' \
                    + 'CheckSource CheckDestination ' \
                    + 'CreateInvalidLine ' \
                    + 'TryConfirmCounterRenderingWithBadInventory ' \
                    + 'DelInvalidLine Tic CheckTotal ' \
                    + 'ConfirmCounterRendering ' \
                    + 'Tic CheckSourceDebitPlanned CheckDestinationCreditPlanned ' \
                    + 'CheckSourceDebitPlanned CheckDestinationCreditPlanned ' \
513 514 515
                    + 'ResetInventory Tic ' \
                    + 'DeliverFails ' \
                    + 'DeleteResetInventory Tic ' \
Sebastien Robin's avatar
Sebastien Robin committed
516 517 518 519 520 521
                    + 'DeliverCounterRendering ' \
                    + 'CheckSourceDebit CheckDestinationCredit '
    sequence_list.addSequenceString(sequence_string)
    # play the sequence
    sequence_list.play(self)