testERP5Administration.py 4.34 KB
Newer Older
1 2
##############################################################################
#
3
# Copyright (c) 2004, 2005, 2006 Nexedi SARL and Contributors.
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
# All Rights Reserved.
#          Sebastien Robin <seb@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 unittest
from Products.ERP5.tests.testInventoryAPI import InventoryAPITestCase

class TestERP5Administration(InventoryAPITestCase):
  """Test for erp5_administration business template.
  """
  def getTitle(self):
    return "ERP5Administration"

  def getBusinessTemplateList(self):
40
    """
41 42
        Same list as for Inventory API and add erp5_administration
    """
43
    return InventoryAPITestCase.getBusinessTemplateList(self) + ('erp5_full_text_mroonga_catalog', 'erp5_administration')
44 45 46 47 48 49 50

  def test_01_RunCheckStockTableAlarm(self):
    """
    Create a new alarm and check that it is able to detect any divergence
    between the predicate table and zodb objects
    """
    portal = self.getPortal()
51
    sql_test = portal.erp5_sql_connection.manage_test
52
    alarm = portal.portal_alarms.check_stock
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

    def checkActiveProcess(failed):
      self.tic()
      self.assertEqual(alarm.getLastActiveProcess().ActiveProcess_sense(),
                       failed)
    def checkStock(row_count):
      alarm.activeSense()
      checkActiveProcess(1)
      alarm.solve()
      checkActiveProcess(1)
      alarm.activeSense()
      checkActiveProcess(0)
      self.assertEqual(row_count, sql_test("select count(*) from stock")[0][0])

    alarm.setAlarmNotificationMode('never')
    mvt = self._makeMovement(quantity=1.23)
69 70
    self.tic()
    alarm.activeSense()
71 72 73 74 75 76 77
    checkActiveProcess(0)

    row_count = sql_test("select count(*) from stock")[0][0]
    sql_test("update stock set quantity=5")
    checkStock(row_count)   # alarm.solve will reindex 'mvt'
    mvt.getParentValue()._delOb(mvt.getId())
    checkStock(row_count-2) # alarm.solve will unindex 'mvt'
78

Jérome Perrin's avatar
Jérome Perrin committed
79 80 81 82
  def test_check_consistency_alarm(self):
    alarm = self.portal.portal_alarms.check_consistency
    person = self.portal.person_module.newContent(portal_type='Person')
    # this document will be non consistent, for PropertyTypeValidity
83
    person.title = 3
84 85
    # tic right now to make sure the person is indexed, indeed the alarm
    # could use catalog to retrieve objects to check
86
    self.tic()
87

Jérome Perrin's avatar
Jérome Perrin committed
88
    alarm.activeSense()
89
    self.tic()
90

Jérome Perrin's avatar
Jérome Perrin committed
91 92
    # some errors were detected
    self.assertTrue(alarm.sense())
93

Jérome Perrin's avatar
Jérome Perrin committed
94 95 96 97 98 99
    # this alarm has a custom report
    alarm.Alarm_viewConsistencyCheckReport()
    # which has a listbox showing all problem reported by constraints and
    # errors reported by property type validity constraint
    line_list = alarm.Alarm_viewConsistencyCheckReport.listbox.get_value(
                        'default', render_format='list')
100 101
    self.assertEqual(1, len([line for line in line_list if line.isDataLine()]))
    self.assertEqual(str(line_list[-1].getColumnProperty('getTranslatedMessage')),
Jérome Perrin's avatar
Jérome Perrin committed
102 103 104 105 106 107
      "Attribute title should be of type string but is of type <type 'int'>")

    # this alarm can solve, as long as the constraints can solve, this is the
    # case of PropertyTypeValidity
    alarm.solve()
    self.tic()
108
    self.assertEqual('3', person.title)
Jérome Perrin's avatar
Jérome Perrin committed
109 110


111 112 113 114 115
def test_suite():
  suite = unittest.TestSuite()
  suite.addTest(unittest.makeSuite(TestERP5Administration))
  return suite