__init__.py 5.4 KB
Newer Older
1
import glob, os, subprocess, re
2 3
# test_suite is provided by 'run_test_suite'
from test_suite import ERP5TypeTestSuite
Sebastien Robin's avatar
Sebastien Robin committed
4
import sys
5 6 7 8

class _ERP5(ERP5TypeTestSuite):
  realtime_output = False
  enabled_product_list = ('CMFActivity', 'CMFCategory', 'ERP5', 'ERP5Catalog',
9
                          'ERP5eGovSecurity', 'ERP5Form',
10
                          'ERP5OOo', 'ERP5Security', 'ERP5SyncML', 'ERP5Type',
11
                          'ERP5VCS', 'ERP5Wizard', 'Formulator', 'ERP5Workflow',
12 13
                          'ERP5Configurator','HBTreeFolder2', 'MailTemplates', 
                          'PortalTransforms', 'TimerService', 'ZLDAPConnection', 
14
                          'ZLDAPMethods', 'ZMySQLDA', 'ZSQLCatalog', 'Zelenium')
15 16 17 18 19 20 21 22 23 24 25 26 27 28

  def enableProducts(self):
    product_set = set(self.enabled_product_list)
    try:
      dir_set = set(os.walk('Products').next()[1])
      for product in dir_set - product_set:
        os.unlink(os.path.join('Products', product))
      product_set -= dir_set
    except StopIteration:
      os.mkdir('Products')
    for product in product_set:
      os.symlink(os.path.join('..', 'products', product),
                 os.path.join('Products', product))

29 30 31 32 33 34 35 36 37
  def _getAllTestList(self):
    test_list = []
    for test_path in glob.glob('%s/product/*/tests/test*.py' % sys.path[0]) + \
                 glob.glob('%s/bt5/*/TestTemplateItem/test*.py' % sys.path[0]):
      test_case = test_path.split(os.sep)[-1][:-3] # remove .py
      product = test_path.split(os.sep)[-3]
      # don't test 3rd party products
      if product in ('PortalTransforms', 'MailTemplates', 'Zelenium'):
        continue
38 39 40 41
      # ERP5TioSafe is disabled for now because it requires external programs
      # such as php and it has not been updated for Zope >= 2.12
      if product == 'ERP5TioSafe':
        continue
42 43 44
      test_list.append(test_case)
    return test_list

45
  def update(self):
46 47 48 49 50 51 52
    self.checkout('products', 'bt5')
    self.enableProducts()


class PERF(_ERP5):

  def getTestList(self):
53
    return [x for x in self._getAllTestList() if x.find('Performance')>0]
54

55 56 57
class CloudPERF(_ERP5):

  def getTestList(self):
58
    return ['_testPystone', '_testSQLBench']
59

60 61 62 63 64
class ERP5(_ERP5):
  mysql_db_count = 3

  def getTestList(self):
    test_list = []
65
    for test_case in self._getAllTestList():
66 67
      # skip some tests
      if test_case.startswith('testLive') or test_case.startswith('testVifib') \
68 69
         or test_case.find('Performance') > 0 \
         or test_case in ('testERP5LdapCatalog', # XXX (Ivan), until LDAP server is available this test will alway fail
70 71 72 73 74 75 76
                          # tests reading selenium tables from erp5.com
                          'testFunctionalStandaloneUserTutorial',
                          'testFunctionalRunMyDocSample',
                          'testFunctionalConfigurator',
                          'testFunctionalConfiguratorConsulting',
                          # not maintained
                          'testERP5eGov',
77
                          'testAccounting_l10n_fr_m9'):
78 79 80 81 82 83 84 85 86 87
        continue
      test_list.append(test_case)
    return test_list

  def run(self, test):
    if test in ('testConflictResolution', 'testInvalidationBug'):
      status_dict = self.runUnitTest('--save', test)
      if not status_dict['status_code']:
        status_dict = self.runUnitTest('--load', '--activity_node=2', test)
      return status_dict
88 89
    if test.startswith('testFunctional'):
      return self._updateFunctionalTestResponse(self.runUnitTest(test))
90 91
    return super(ERP5, self).run(test)

92
  def _updateFunctionalTestResponse(self, status_dict):
93 94 95 96
    """ Convert the Unit Test output into more accurate information
        related to funcional test run.
    """
    # Parse relevant information to update response information
97 98 99
    try:
      summary, html_test_result = status_dict['stderr'].split("-"*79)[1:3]
    except ValueError:
100
      # In case of error when parse the file, preserve the original
101 102
      # informations. This prevents we have unfinished tests.
      return status_dict
103 104 105 106 107 108
    status_dict['html_test_result'] = html_test_result
    search = self.FTEST_PASS_FAIL_RE.search(summary)
    if search:
      group_dict = search.groupdict()
      status_dict['failure_count'] = int(group_dict['failures'])
      status_dict['test_count'] = int(group_dict['total'])
109
      status_dict['skip_count'] = int(group_dict['expected_failure'])
110 111
    return status_dict

112 113

class ERP5_simulation(_ERP5):
114 115

  def getTestList(self):
116 117 118 119 120 121 122 123 124 125 126 127
    p = subprocess.Popen(('grep', '-lr', '--include=test*.py',
                          '-e', '@newSimulationExpectedFailure',
                          '-e', 'erp5_report_new_simulation_failures',
                          'Products/ERP5/tests'),
                         stdout=subprocess.PIPE)
    return sorted(os.path.basename(x)[:-3]
                  for x in p.communicate()[0].splitlines())

  def runUnitTest(self, *args, **kw):
    return super(ERP5_simulation, self).runUnitTest(
      erp5_report_new_simulation_failures='1', *args, **kw)

128
class ERP5_scalability(_ERP5):
129

130
  def getTestList(self):
131
    return ['createPerson']
132 133 134

  def getTestPath(self):
    return 'erp5/util/benchmark/examples/'
135 136 137
    
  def getUsersFilePath(self):
    return 'erp5/util/benchmark/examples/scalabilityUsers'
138

139
  def getUserNumber(self, test_number):
140 141 142 143
    user_number = 1
    for i in range(1,test_number):
      user_number = user_number * 2
    return user_number
144

145
  # Test duration in seconds
146
  def getTestDuration(self, test_number):
147
    return 60