testERP5BankingCashToCurrencyPurchase.py 14.6 KB
Newer Older
Sebastien Robin's avatar
Sebastien Robin committed
1 2
##############################################################################
#
3
# Copyright (c) 2005-2010 Nexedi SA and Contributors. All Rights Reserved.
Sebastien Robin's avatar
Sebastien Robin committed
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
#                   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 os
from Products.ERP5Type.tests.Sequence import SequenceList
from Products.ERP5Banking.tests.TestERP5BankingMixin import TestERP5BankingMixin
Vincent Pelletier's avatar
Vincent Pelletier committed
31
os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
Sebastien Robin's avatar
Sebastien Robin committed
32 33
os.environ['EVENT_LOG_SEVERITY'] = '-300'

34
class TestERP5BankingCashToCurrencyPurchase(TestERP5BankingMixin):
Vincent Pelletier's avatar
Vincent Pelletier committed
35 36 37 38 39 40 41
  RUN_ALL_TEST = 1
  QUIET = 0
  # Relative to "site" category
  COUNTER_RELATIVE_URL = 'testsite/paris/surface/banque_interne/guichet_1'
  # Relative to counter
  INCOMING_COUNTER_RELATIVE_URL = 'encaisse_des_devises/usd/sortante'
  OUTGOING_COUNTER_RELATIVE_URL = 'encaisse_des_billets_et_monnaies/sortante'
Sebastien Robin's avatar
Sebastien Robin committed
42

Vincent Pelletier's avatar
Vincent Pelletier committed
43 44
  outgoing_quantity_5000 = {'variation/1992': 4, 'variation/2003': 6}
  outgoing_quantity_100 = {'variation/1992': 120, 'variation/2003': 0}
Sebastien Robin's avatar
Sebastien Robin committed
45 46 47 48 49 50 51 52 53

  def getTitle(self):
    return "ERP5BankingCashToCurrencyPurchase"

  def afterSetUp(self):
    self.initDefaultVariable()
    self.cash_to_currency_purchase_module = self.getCashToCurrencyPurchaseModule()
    self.createManagerAndLogin()
    self.createFunctionGroupSiteCategory()
Vincent Pelletier's avatar
Vincent Pelletier committed
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
    self.guichet = counter = self.getPortalObject().portal_categories.site.\
      unrestrictedTraverse(self.COUNTER_RELATIVE_URL)
    self.guichet_entrante = counter.unrestrictedTraverse(
      self.INCOMING_COUNTER_RELATIVE_URL)
    self.guichet_sortante = outgoing_counter = counter.unrestrictedTraverse(
      self.OUTGOING_COUNTER_RELATIVE_URL)
    self.createCashInventory(
      source=None,
      destination=outgoing_counter,
      currency=self.currency_1,
      line_list=[
        {
          'id': 'inventory_line_1',
          'resource': self.billet_5000,
          'variation_id': ('emission_letter', 'cash_status', 'variation'),
          'variation_value': ('emission_letter/p', 'cash_status/valid') + self.variation_list,
          'quantity': self.outgoing_quantity_5000,
        }, {
          'id': 'inventory_line_2',
          'resource': self.piece_100,
          'variation_id': ('emission_letter', 'cash_status', 'variation'),
          'variation_value': ('emission_letter/not_defined', 'cash_status/valid') + self.variation_list,
          'quantity': self.outgoing_quantity_100,
        },
      ],
    )
Sebastien Robin's avatar
Sebastien Robin committed
80
    self.checkUserFolderType()
Vincent Pelletier's avatar
Vincent Pelletier committed
81 82 83 84 85 86 87 88 89
    self.createERP5Users({
      'super_user' : [
        ['Manager'],
        self.organisation_module['site_P10'],
        'banking/comptable',
        'baobab',
        counter.getCategoryRelativeUrl(),
      ],
    })
Sebastien Robin's avatar
Sebastien Robin committed
90
    self.logout()
91
    self.loginByUserName('super_user')
Vincent Pelletier's avatar
Vincent Pelletier committed
92 93
    self.openCounterDate(site=outgoing_counter)
    self.openCounter(site=counter)
Sebastien Robin's avatar
Sebastien Robin committed
94 95 96

  def stepCheckObjects(self, sequence=None, sequence_list=None, **kwd):
    self.checkResourceCreated()
Vincent Pelletier's avatar
Vincent Pelletier committed
97 98 99 100 101 102 103 104 105 106 107 108
    module = self.cash_to_currency_purchase_module
    self.assertEqual(module.getPortalType(), 'Cash To Currency Purchase Module')
    self.assertEqual(len(module), 0)

  def stepCheckInitialInventoryGuichet_Entrante(self, sequence=None, sequence_list=None,
      **kwd):
    assertEqual = self.assertEqual
    simulation_tool = self.getSimulationTool()
    node = node=self.guichet_entrante.getRelativeUrl()
    resource = self.usd_billet_20.getRelativeUrl()
    assertEqual(simulation_tool.getCurrentInventory(node=node, resource=resource), 0.0)
    assertEqual(simulation_tool.getFutureInventory(node=node, resource=resource), 0.0)
Sebastien Robin's avatar
Sebastien Robin committed
109 110 111 112 113

  def stepCheckInitialInventoryGuichet_Sortante(self, sequence=None, sequence_list=None, **kwd):
    """
    Check the initial inventory before any operations
    """
Vincent Pelletier's avatar
Vincent Pelletier committed
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
    assertEqual = self.assertEqual
    simulation_tool = self.getSimulationTool()
    node = node=self.guichet_sortante.getRelativeUrl()
    banknote_10k = self.billet_10000.getRelativeUrl()
    banknote_5k = self.billet_5000.getRelativeUrl()
    coin_200 = self.piece_200.getRelativeUrl()
    coin_100 = self.piece_100.getRelativeUrl()
    assertEqual(simulation_tool.getCurrentInventory(node=node, resource=banknote_10k), 0.0)
    assertEqual(simulation_tool.getFutureInventory(node=node, resource=banknote_10k), 0.0)
    assertEqual(simulation_tool.getCurrentInventory(node=node, resource=coin_200), 0.0)
    assertEqual(simulation_tool.getFutureInventory(node=node, resource=coin_200), 0.0)
    assertEqual(simulation_tool.getCurrentInventory(node=node, resource=banknote_5k), 10.0)
    assertEqual(simulation_tool.getFutureInventory(node=node, resource=banknote_5k), 10.0)
    assertEqual(simulation_tool.getCurrentInventory(node=node, resource=coin_100), 120.0)
    assertEqual(simulation_tool.getFutureInventory(node=node, resource=coin_100), 120.0)
Sebastien Robin's avatar
Sebastien Robin committed
129 130

  def stepCreateCashToCurrencyPurchase(self, sequence=None, sequence_list=None, **kwd):
Vincent Pelletier's avatar
Vincent Pelletier committed
131 132 133 134 135 136 137 138 139 140 141
    portal = self.getPortalObject()
    module = self.cash_to_currency_purchase_module
    self.cash_to_currency_purchase = document = module.newContent(
      id='cash_to_currency_purchase_1',
      portal_type='Cash To Currency Purchase',
      source_value=self.guichet,
      destination_value=None,
      description='test',
      resource_value=self.currency_2,
      source_total_asset_price=100.0,
    )
142
    self.tic()
Vincent Pelletier's avatar
Vincent Pelletier committed
143 144 145 146 147 148 149 150 151 152 153 154
    self.assertEqual(len(module), 1)
    self.assertEqual(document.getSource(), self.guichet.getRelativeUrl())
    self.assertEqual(document.getDestination(), None)
    self.setDocumentSourceReference(document)
    self.tic()
    rate = document.CurrencyExchange_getExchangeRateList(
      from_currency=document.getResource(),
      to_currency='currency_module/%s' % (
        portal.Baobab_getPortalReferenceCurrencyID(), ),
      currency_exchange_type='purchase',
      start_date=document.getStartDate(),
    )[0]
155
    self.assertEqual(rate, 650.0)
Vincent Pelletier's avatar
Vincent Pelletier committed
156
    script = document.CurrencyPurchase_getQuantity
Grégory Wisniewski's avatar
Grégory Wisniewski committed
157
    self.assertEqual(script(), 65000)
Vincent Pelletier's avatar
Vincent Pelletier committed
158
    document.setDiscountRatio(0.01)
Grégory Wisniewski's avatar
Grégory Wisniewski committed
159
    self.assertEqual(script(), 64350)
Vincent Pelletier's avatar
Vincent Pelletier committed
160 161
    document.setDiscountRatio(None)
    document.setDiscount(3000)
Grégory Wisniewski's avatar
Grégory Wisniewski committed
162
    self.assertEqual(script(), 62000)
Vincent Pelletier's avatar
Vincent Pelletier committed
163
    document.setCurrencyExchangeRate(660)
Grégory Wisniewski's avatar
Grégory Wisniewski committed
164
    self.assertEqual(script(), 63000)
Vincent Pelletier's avatar
Vincent Pelletier committed
165
    document.setCurrencyExchangeRate(None)
Grégory Wisniewski's avatar
Grégory Wisniewski committed
166
    self.assertEqual(script(), 62000)
Sebastien Robin's avatar
Sebastien Robin committed
167

Vincent Pelletier's avatar
Vincent Pelletier committed
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
  def stepCreateValidIncomingLine(self, sequence=None, sequence_list=None,
      **kwd):
    document = self.cash_to_currency_purchase
    line_1_id = 'valid_incoming_line_1'
    self.addCashLineToDelivery(
      document,
      line_1_id,
      'Incoming Cash To Currency Purchase Line',
      self.usd_billet_20,
      ('emission_letter', 'cash_status', 'variation'),
      ('emission_letter/not_defined', 'cash_status/not_defined') + \
        self.usd_variation_list,
      self.quantity_usd_20,
      variation_list=self.usd_variation_list,
    )
183
    self.tic()
Vincent Pelletier's avatar
Vincent Pelletier committed
184 185 186 187 188 189
    self.assertEqual(len(document), 1)
    line = getattr(document, line_1_id)
    self.assertEqual(line.getResourceValue(), self.usd_billet_20)
    self.assertEqual(line.getPrice(), 20.0)
    self.assertEqual(line.getQuantityUnit(), 'unit')
    self.assertEqual(len(line), 1)
Sebastien Robin's avatar
Sebastien Robin committed
190
    for variation in self.usd_variation_list:
Vincent Pelletier's avatar
Vincent Pelletier committed
191 192
      cell = line.getCell('emission_letter/not_defined', variation,
        'cash_status/not_defined')
Sebastien Robin's avatar
Sebastien Robin committed
193 194 195
      self.assertEqual(cell.getPortalType(), 'Cash Delivery Cell')
      self.assertEqual(cell.getResourceValue(), self.usd_billet_20)
      self.assertEqual(cell.getBaobabSource(), None)
Vincent Pelletier's avatar
Vincent Pelletier committed
196 197 198 199
      self.assertEqual(cell.getBaobabDestination(),
        self.guichet_entrante.getRelativeUrl())
      cell_id = cell.getId()
      if cell_id == 'movement_0_0_0':
Sebastien Robin's avatar
Sebastien Robin committed
200 201
        self.assertEqual(cell.getQuantity(), 5.0)
      else:
Vincent Pelletier's avatar
Vincent Pelletier committed
202
        self.fail('Unexpected cell id: %s' % (cell_id, ))
Sebastien Robin's avatar
Sebastien Robin committed
203 204

  def stepCheckSubTotal(self, sequence=None, sequence_list=None, **kwd):
Vincent Pelletier's avatar
Vincent Pelletier committed
205 206 207 208 209 210 211
    document = self.cash_to_currency_purchase
    assertEqual = self.assertEqual
    assertEqual(len(document), 1)
    assertEqual(document.getTotalQuantity(fast=0,
      portal_type="Incoming Cash To Currency Purchase Line"), 5.0)
    assertEqual(document.getTotalPrice(fast=0,
      portal_type="Incoming Cash To Currency Purchase Line"), 20 * 5.0)
Sebastien Robin's avatar
Sebastien Robin committed
212 213

  def stepCreateValidOutgoingLine(self, sequence=None, sequence_list=None, **kwd):
Vincent Pelletier's avatar
Vincent Pelletier committed
214 215 216 217 218 219 220 221 222 223 224 225 226
    document = self.cash_to_currency_purchase
    assertEqual = self.assertEqual
    source = self.guichet_sortante.getRelativeUrl()
    line_2_id = 'valid_outgoing_line_1'
    self.addCashLineToDelivery(
      document,
      line_2_id,
      'Outgoing Cash To Currency Purchase Line',
      self.billet_5000,
      ('emission_letter', 'cash_status', 'variation'),
      ('emission_letter/p', 'cash_status/valid') + self.variation_list,
      self.outgoing_quantity_5000,
    )
227
    self.tic()
Vincent Pelletier's avatar
Vincent Pelletier committed
228 229 230 231 232 233 234 235
    assertEqual(len(document), 2)
    line = getattr(document, line_2_id)
    assertEqual(line.getPortalType(),
      'Outgoing Cash To Currency Purchase Line')
    assertEqual(line.getResourceValue(), self.billet_5000)
    assertEqual(line.getPrice(), 5000.0)
    assertEqual(line.getQuantityUnit(), 'unit')
    assertEqual(len(line), 2)
Sebastien Robin's avatar
Sebastien Robin committed
236
    for variation in self.variation_list:
Vincent Pelletier's avatar
Vincent Pelletier committed
237 238 239 240 241 242 243 244 245
      cell = line.getCell('emission_letter/p', variation, 'cash_status/valid')
      assertEqual(cell.getPortalType(), 'Cash Delivery Cell')
      assertEqual(cell.getBaobabSource(), source)
      assertEqual(cell.getBaobabDestination(), None)
      cell_id = cell.getId()
      if cell_id == 'movement_0_0_0':
        assertEqual(cell.getQuantity(), 4.0)
      elif cell_id == 'movement_0_1_0':
        assertEqual(cell.getQuantity(), 6.0)
Sebastien Robin's avatar
Sebastien Robin committed
246
      else:
Vincent Pelletier's avatar
Vincent Pelletier committed
247 248 249 250 251 252 253 254 255 256 257
        self.fail('Unexpected cell id: %s' % (cell_id, ))

    self.addCashLineToDelivery(
      document,
      'valid_outgoing_line_2',
      'Outgoing Cash To Currency Purchase Line',
      self.piece_100,
      ('emission_letter', 'cash_status', 'variation'),
      ('emission_letter/not_defined', 'cash_status/valid') + self.variation_list,
      self.outgoing_quantity_100,
    )
258
    self.tic()
Vincent Pelletier's avatar
Vincent Pelletier committed
259 260 261 262 263 264 265
    assertEqual(len(document), 3)
    line = document.valid_outgoing_line_2
    assertEqual(line.getPortalType(), 'Outgoing Cash To Currency Purchase Line')
    assertEqual(line.getResourceValue(), self.piece_100)
    assertEqual(line.getPrice(), 100.0)
    assertEqual(line.getQuantityUnit(), 'unit')
    assertEqual(len(line), 2)
Sebastien Robin's avatar
Sebastien Robin committed
266
    for variation in self.variation_list:
Vincent Pelletier's avatar
Vincent Pelletier committed
267 268 269 270 271 272 273 274 275
      cell = line.getCell('emission_letter/not_defined', variation, 'cash_status/valid')
      assertEqual(cell.getPortalType(), 'Cash Delivery Cell')
      assertEqual(cell.getBaobabSource(), source)
      assertEqual(cell.getBaobabDestination(), None)
      cell_id = cell.getId()
      if cell_id == 'movement_0_0_0':
        assertEqual(cell.getQuantity(), 120.0)
      elif cell_id == 'movement_0_1_0':
        assertEqual(cell.getQuantity(), 0.0)
Sebastien Robin's avatar
Sebastien Robin committed
276
      else:
Vincent Pelletier's avatar
Vincent Pelletier committed
277 278
        self.fail('Unexpected cell id: %s' % (cell_id, ))
    self.tic()
Sebastien Robin's avatar
Sebastien Robin committed
279 280

  def stepCheckTotal(self, sequence=None, sequence_list=None, **kwd):
Vincent Pelletier's avatar
Vincent Pelletier committed
281 282 283 284 285 286 287 288 289 290 291 292 293 294
    document = self.cash_to_currency_purchase
    assertEqual = self.assertEqual
    assertEqual(len(document.objectValues()), 3)
    assertEqual(document.getTotalQuantity(fast=0,
      portal_type="Outgoing Cash To Currency Purchase Line"), 130.0)
    assertEqual(document.getTotalPrice(fast=0,
      portal_type="Outgoing Cash To Currency Purchase Line"),
      5000 * 4.0 + 100 * 0.0 + 5000 * 6.0 + 100 * 120.0)

  def stepDeliverCashToCurrencyPurchase(self, sequence=None, sequence_list=None,
      **kwd):
    document = self.cash_to_currency_purchase
    self.workflow_tool.doActionFor(document, 'deliver_action',
      wf_id='cash_to_currency_purchase_workflow')
295
    self.tic()
Vincent Pelletier's avatar
Vincent Pelletier committed
296 297 298
    self.assertEqual(document.getSimulationState(), 'delivered')
    workflow_history = self.workflow_tool.getInfoFor(ob=document,
      name='history', wf_id='cash_to_currency_purchase_workflow')
Sebastien Robin's avatar
Sebastien Robin committed
299 300 301
    self.assertEqual(len(workflow_history), 3)

  def stepCheckFinalInventoryGuichet_Entrante(self, sequence=None, sequence_list=None, **kwd):
Vincent Pelletier's avatar
Vincent Pelletier committed
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
    assertEqual = self.assertEqual
    simulation_tool = self.getSimulationTool()
    node = self.guichet_entrante.getRelativeUrl()
    resource = resource=self.usd_billet_20.getRelativeUrl()
    assertEqual(simulation_tool.getCurrentInventory(node=node,
      resource=resource), 5.0)
    assertEqual(simulation_tool.getFutureInventory(node=node,
      resource=resource), 5.0)

  def stepCheckFinalInventoryGuichet_Sortante(self, sequence=None,
      sequence_list=None, **kwd):
    assertEqual = self.assertEqual
    simulation_tool = self.getSimulationTool()
    node = node=self.guichet_sortante.getRelativeUrl()
    banknote_5k = self.billet_5000.getRelativeUrl()
    coin_100 = self.piece_100.getRelativeUrl()
    assertEqual(simulation_tool.getCurrentInventory(node=node,
      resource=banknote_5k), 0.0)
    assertEqual(simulation_tool.getFutureInventory(node=node,
      resource=banknote_5k), 0.0)
    assertEqual(simulation_tool.getCurrentInventory(node=node,
      resource=coin_100), 0.0)
    assertEqual(simulation_tool.getFutureInventory(node=node,
      resource=coin_100), 0.0)

  def test_01_ERP5BankingCashToCurrencyPurchase(self, quiet=QUIET,
      run=RUN_ALL_TEST):
329 330
    if not run:
      return
Sebastien Robin's avatar
Sebastien Robin committed
331
    sequence_list = SequenceList()
Vincent Pelletier's avatar
Vincent Pelletier committed
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
    sequence_list.addSequenceString("""
      stepTic
      stepCheckObjects
      stepTic
      stepCheckInitialInventoryGuichet_Entrante
      stepCheckInitialInventoryGuichet_Sortante
      stepCreateCashToCurrencyPurchase
      stepCreateValidIncomingLine
      stepCheckSubTotal
      stepCreateValidOutgoingLine
      stepTic
      stepCheckTotal
      stepDeliverCashToCurrencyPurchase
      stepTic
      stepCheckFinalInventoryGuichet_Entrante
      stepCheckFinalInventoryGuichet_Sortante
    """)
Sebastien Robin's avatar
Sebastien Robin committed
349 350
    sequence_list.play(self)