Upgrade pylint and fix latest warnings 35/74135/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Fri, 29 Sep 2023 12:12:18 +0000 (14:12 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Fri, 29 Sep 2023 13:33:41 +0000 (15:33 +0200)
Change-Id: I8b9e4b663a12ac9be18fded2d7b4e4b38428fa9f
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit f430ee4d9ef63f104dde63710fce7f8fa3c61591)

upper-constraints.txt
xtesting/ci/run_tests.py
xtesting/core/campaign.py
xtesting/core/testcase.py
xtesting/tests/unit/ci/test_tier_handler.py
xtesting/tests/unit/core/test_testcase.py
xtesting/tests/unit/utils/test_decorators.py
xtesting/utils/constants.py

index e15894a..609c1ed 100644 (file)
@@ -2,7 +2,8 @@ robotframework===4.1.2
 bandit===1.7.0
 behave===1.2.6
 behave-html-formatter===0.9.8
-pylint===2.11.1
+pylint===2.17.6
 flake8===4.0.1
 ansible-lint===5.2.1
 pre-commit===3.1.1
+astroid===2.15.8
index 57562ef..b8c4a80 100644 (file)
@@ -143,7 +143,7 @@ class Runner():
 
     def run_test(self, test):
         """Run one test case"""
-        # pylint: disable=too-many-branches
+        # pylint: disable=too-many-branches,broad-exception-raised
         if not test.is_enabled() or test.is_skipped():
             msg = prettytable.PrettyTable(
                 header_style='upper', padding_width=5,
index 901df58..98b2f1a 100644 (file)
@@ -70,7 +70,8 @@ class Campaign():
             url = env.get('TEST_DB_URL')
             req = requests.get(
                 f"{url}?build_tag={env.get('BUILD_TAG')}",
-                headers=testcase.TestCase.headers)
+                headers=testcase.TestCase.headers,
+                timeout=10)
             req.raise_for_status()
             output = req.json()
             Campaign.__logger.debug("data from DB: \n%s", output)
index b44ed79..380adc5 100644 (file)
@@ -149,7 +149,7 @@ class TestCase(metaclass=abc.ABCMeta):
             self.__logger.error("Please run test before checking the results")
         return TestCase.EX_TESTCASE_FAILED
 
-    def check_requirements(self):  # pylint: disable=no-self-use
+    def check_requirements(self):
         """Check the requirements of the test case.
 
         It can be overriden on purpose.
@@ -235,7 +235,8 @@ class TestCase(metaclass=abc.ABCMeta):
                 data["version"] = "unknown"
             req = requests.post(
                 url, data=json.dumps(data, sort_keys=True),
-                headers=self.headers)
+                headers=self.headers,
+                timeout=10)
             req.raise_for_status()
             if urlparse(url).scheme != "file":
                 # href must be postprocessed as OPNFV testapi is misconfigured
index 668f33c..95dcfdc 100644 (file)
@@ -26,8 +26,8 @@ class TierHandlerTesting(unittest.TestCase):
         self.testcase = tier_handler.TestCase(
             'test_name', 'true', False, 'test_criteria',
             True, description='test_desc', project='project_name')
-        self.testcase.str = self.testcase.__str__()
-        self.tier.str = self.tier.__str__()
+        self.testcase.str = str(self.testcase)
+        self.tier.str = str(self.tier)
 
     def test_add_test(self):
         self.tier.add_test(self.test)
index dbefd97..f7d1b94 100644 (file)
@@ -180,7 +180,8 @@ class TestCaseTesting(unittest.TestCase):
         args[0].assert_called_once_with(
             os.environ['TEST_DB_URL'],
             data=json.dumps(payload, sort_keys=True),
-            headers=self._headers)
+            headers=self._headers,
+            timeout=10)
 
     def test_pushdb_daily_job(self):
         self._test_pushdb_version(version="master")
@@ -203,7 +204,8 @@ class TestCaseTesting(unittest.TestCase):
         mock_function.assert_called_once_with(
             os.environ['TEST_DB_URL'],
             data=json.dumps(self._get_data(), sort_keys=True),
-            headers=self._headers)
+            headers=self._headers,
+            timeout=10)
 
     def test_check_requirements(self):
         self.test.check_requirements()
index ae6ffa4..f540886 100644 (file)
@@ -94,7 +94,8 @@ class DecoratorsTesting(unittest.TestCase):
         self.assertEqual(test.push_to_db(), testcase.TestCase.EX_OK)
         args[0].assert_called_once_with(
             'http://127.0.0.1', data=self._get_json(),
-            headers={'Content-Type': 'application/json'})
+            headers={'Content-Type': 'application/json'},
+            timeout=10)
 
     def test_wrong_shema(self):
         os.environ['TEST_DB_URL'] = '/dev/null'
index f5e29e0..12f1fde 100644 (file)
@@ -12,7 +12,7 @@
 import os
 import sys
 
-import pkg_resources
+import importlib.resources
 
 ENV_FILE = '/var/lib/xtesting/conf/env_file'
 
@@ -20,14 +20,21 @@ XTESTING_PATHES = [
     "~/.xtesting", "/etc/xtesting", os.path.join(sys.prefix + "/etc/xtesting")]
 
 TESTCASE_DESCRIPTION = 'testcases.yaml'
-TESTCASE_DESCRIPTION_DEFAULT = pkg_resources.resource_filename(
-    'xtesting', f'ci/{TESTCASE_DESCRIPTION}')
+
+with importlib.resources.as_file(
+        importlib.resources.files('xtesting') /
+        f'ci/{TESTCASE_DESCRIPTION}') as path:
+    TESTCASE_DESCRIPTION_DEFAULT = path
 
 RESULTS_DIR = '/var/lib/xtesting/results'
 LOG_PATH = os.path.join(RESULTS_DIR, 'xtesting.log')
 DEBUG_LOG_PATH = os.path.join(RESULTS_DIR, 'xtesting.debug.log')
 
-INI_PATH_DEFAULT = pkg_resources.resource_filename(
-    'xtesting', 'ci/logging.ini')
-DEBUG_INI_PATH_DEFAULT = pkg_resources.resource_filename(
-    'xtesting', 'ci/logging.debug.ini')
+with importlib.resources.as_file(
+        importlib.resources.files('xtesting') /
+        'ci/logging.ini') as path:
+    INI_PATH_DEFAULT = path
+with importlib.resources.as_file(
+        importlib.resources.files('xtesting') /
+        'ci/logging.debug.ini') as path:
+    DEBUG_INI_PATH_DEFAULT = path