Fix unknown projects in reporting 41/18341/1
authorMorgan Richomme <morgan.richomme@orange.com>
Wed, 10 Aug 2016 15:32:32 +0000 (17:32 +0200)
committerMorgan Richomme <morgan.richomme@orange.com>
Wed, 10 Aug 2016 15:32:32 +0000 (17:32 +0200)
Change-Id: Ia3d21694b8bf5e7131110124a520ecc0b9234509
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
utils/test/reporting/functest/reporting-status.py
utils/test/reporting/functest/reportingConf.py
utils/test/reporting/functest/testCase.py

index 622c375..7c943d8 100644 (file)
@@ -99,8 +99,9 @@ for version in conf.versions:
                 for test_case in testValid:
                     test_case.checkRunnable(installer, s,
                                             test_case.getConstraints())
-                    logger.debug("testcase %s is %s" %
+                    logger.debug("testcase %s (%s) is %s" %
                                  (test_case.getDisplayName(),
+                                  test_case.getName(),
                                   test_case.isRunnable))
                     time.sleep(1)
                     if test_case.isRunnable:
@@ -131,8 +132,10 @@ for version in conf.versions:
                 for test_case in otherTestCases:
                     test_case.checkRunnable(installer, s,
                                             test_case.getConstraints())
-                    logger.info("testcase %s is %s" %
-                                (test_case.getName(), test_case.isRunnable))
+                    logger.debug("testcase %s (%s) is %s" %
+                                 (test_case.getDisplayName(),
+                                  test_case.getName(),
+                                  test_case.isRunnable))
                     time.sleep(1)
                     if test_case.isRunnable:
                         dbName = test_case.getDbName()
index a58eeec..9c618a2 100644 (file)
 #
 # ****************************************************
 installers = ["apex", "compass", "fuel", "joid"]
-# installers = ["apex"]
 # list of test cases declared in testcases.yaml but that must not be
 # taken into account for the scoring
-blacklist = ["odl", "ovno", "security_scan", "copper", "moon"]
+blacklist = ["ovno", "security_scan"]
 # versions = ["brahmaputra", "master"]
 versions = ["master"]
-PERIOD = 10
-MAX_SCENARIO_CRITERIA = 18
+PERIOD = 50
+MAX_SCENARIO_CRITERIA = 50
 # get the last 5 test results to determinate the success criteria
 NB_TESTS = 5
 # REPORTING_PATH = "/usr/share/nginx/html/reporting/functest"
 REPORTING_PATH = "."
 URL_BASE = 'http://testresults.opnfv.org/test/api/v1/results'
 TEST_CONF = "https://git.opnfv.org/cgit/functest/plain/ci/testcases.yaml"
-LOG_LEVEL = "ERROR"
+LOG_LEVEL = "DEBUG"
 LOG_FILE = REPORTING_PATH + "/reporting.log"
index e19853a..e973035 100644 (file)
@@ -35,7 +35,11 @@ class TestCase(object):
                                'promise': 'Promise',
                                'moon': 'moon',
                                'copper': 'copper',
-                               'security_scan': 'security'
+                               'security_scan': 'security',
+                               'multisite': 'multisite',
+                               'domino': 'domino',
+                               'odl-sfc': 'SFC',
+                               'onos_sfc': 'SFC'
                                }
         try:
             self.displayName = display_name_matrix[self.name]
@@ -123,7 +127,11 @@ class TestCase(object):
                              'promise': 'promise',
                              'moon': 'moon',
                              'copper': 'copper',
-                             'security_scan': 'security'
+                             'security_scan': 'security',
+                             'multisite': 'multisite',
+                             'domino': 'domino-multinode',
+                             'odl-sfc': 'odl-sfc',
+                             'onos_sfc': 'onos_sfc'
                              }
         try:
             return test_match_matrix[self.name]