aboutsummaryrefslogtreecommitdiffstats
path: root/functest/tests/unit/ci/test_generate_report.py
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2017-05-03 14:11:38 +0200
committerJose Lausuch <jose.lausuch@ericsson.com>2017-05-05 12:50:46 +0000
commitf5c2aaa5ea6dce72fda01a3392d88148264eb02b (patch)
treeb84fa1e753749b28f5259e94e67d22e75fde5a20 /functest/tests/unit/ci/test_generate_report.py
parenta92a31aac7656e8beaeed49eae5f1e4af2f46e86 (diff)
Replace CONST.* by getattribute/setattr
Directories affected: - ci - core and respective unit tests Change-Id: I6a3d5aa68de29fc5a37ae543a067ff797eba33e6 Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'functest/tests/unit/ci/test_generate_report.py')
-rw-r--r--functest/tests/unit/ci/test_generate_report.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/functest/tests/unit/ci/test_generate_report.py b/functest/tests/unit/ci/test_generate_report.py
index 2225586f..13361c1d 100644
--- a/functest/tests/unit/ci/test_generate_report.py
+++ b/functest/tests/unit/ci/test_generate_report.py
@@ -29,7 +29,7 @@ class GenerateReportTesting(unittest.TestCase):
side_effect=urllib2.URLError('no host given'))
def test_get_results_from_db_fail(self, mock_method):
url = "%s/results?build_tag=%s" % (ft_utils.get_db_url(),
- CONST.BUILD_TAG)
+ CONST.__getattribute__('BUILD_TAG'))
self.assertIsNone(gen_report.get_results_from_db())
mock_method.assert_called_once_with(url)
@@ -37,7 +37,7 @@ class GenerateReportTesting(unittest.TestCase):
return_value={'results': []})
def test_get_results_from_db_success(self, mock_method):
url = "%s/results?build_tag=%s" % (ft_utils.get_db_url(),
- CONST.BUILD_TAG)
+ CONST.__getattribute__('BUILD_TAG'))
self.assertEqual(gen_report.get_results_from_db(), None)
mock_method.assert_called_once_with(url)
@@ -45,7 +45,7 @@ class GenerateReportTesting(unittest.TestCase):
self.assertIsInstance(gen_report.get_data({'result': ''}, ''), dict)
def test_print_line_with_ci_run(self):
- CONST.IS_CI_RUN = True
+ CONST.__setattr__('IS_CI_RUN', True)
w1 = 'test_print_line'
test_str = ("| %s| %s| %s| %s| %s|\n"
% (w1.ljust(gen_report.COL_1_LEN - 1),
@@ -56,7 +56,7 @@ class GenerateReportTesting(unittest.TestCase):
self.assertEqual(gen_report.print_line(w1), test_str)
def test_print_line_without_ci_run(self):
- CONST.IS_CI_RUN = False
+ CONST.__setattr__('IS_CI_RUN', False)
w1 = 'test_print_line'
test_str = ("| %s| %s| %s| %s|\n"
% (w1.ljust(gen_report.COL_1_LEN - 1),
@@ -66,7 +66,7 @@ class GenerateReportTesting(unittest.TestCase):
self.assertEqual(gen_report.print_line(w1), test_str)
def test_print_line_no_column_with_ci_run(self):
- CONST.IS_CI_RUN = True
+ CONST.__setattr__('IS_CI_RUN', True)
TOTAL_LEN = gen_report.COL_1_LEN + gen_report.COL_2_LEN
TOTAL_LEN += gen_report.COL_3_LEN + gen_report.COL_4_LEN + 2
TOTAL_LEN += gen_report.COL_5_LEN + 1
@@ -74,14 +74,14 @@ class GenerateReportTesting(unittest.TestCase):
self.assertEqual(gen_report.print_line_no_columns('test'), test_str)
def test_print_line_no_column_without_ci_run(self):
- CONST.IS_CI_RUN = False
+ CONST.__setattr__('IS_CI_RUN', False)
TOTAL_LEN = gen_report.COL_1_LEN + gen_report.COL_2_LEN
TOTAL_LEN += gen_report.COL_3_LEN + gen_report.COL_4_LEN + 2
test_str = ("| %s|\n" % 'test'.ljust(TOTAL_LEN))
self.assertEqual(gen_report.print_line_no_columns('test'), test_str)
def test_print_separator_with_ci_run(self):
- CONST.IS_CI_RUN = True
+ CONST.__setattr__('IS_CI_RUN', True)
test_str = ("+" + "=" * gen_report.COL_1_LEN +
"+" + "=" * gen_report.COL_2_LEN +
"+" + "=" * gen_report.COL_3_LEN +
@@ -91,7 +91,7 @@ class GenerateReportTesting(unittest.TestCase):
self.assertEqual(gen_report.print_separator(), test_str)
def test_print_separator_without_ci_run(self):
- CONST.IS_CI_RUN = False
+ CONST.__setattr__('IS_CI_RUN', False)
test_str = ("+" + "=" * gen_report.COL_1_LEN +
"+" + "=" * gen_report.COL_2_LEN +
"+" + "=" * gen_report.COL_3_LEN +
@@ -101,25 +101,25 @@ class GenerateReportTesting(unittest.TestCase):
@mock.patch('functest.ci.generate_report.logger.info')
def test_main_with_ci_run(self, mock_method):
- CONST.IS_CI_RUN = True
+ CONST.__setattr__('IS_CI_RUN', True)
gen_report.main()
mock_method.assert_called_once_with(test_utils.SubstrMatch('URL'))
@mock.patch('functest.ci.generate_report.logger.info')
def test_main_with_ci_loop(self, mock_method):
- CONST.CI_LOOP = 'daily'
+ CONST.__setattr__('CI_LOOP', 'daily')
gen_report.main()
mock_method.assert_called_once_with(test_utils.SubstrMatch('CI LOOP'))
@mock.patch('functest.ci.generate_report.logger.info')
def test_main_with_scenario(self, mock_method):
- CONST.DEPLOY_SCENARIO = 'test_scenario'
+ CONST.__setattr__('DEPLOY_SCENARIO', 'test_scenario')
gen_report.main()
mock_method.assert_called_once_with(test_utils.SubstrMatch('SCENARIO'))
@mock.patch('functest.ci.generate_report.logger.info')
def test_main_with_build_tag(self, mock_method):
- CONST.BUILD_TAG = 'test_build_tag'
+ CONST.__setattr__('BUILD_TAG', 'test_build_tag')
gen_report.main()
mock_method.assert_called_once_with(test_utils.
SubstrMatch('BUILD TAG'))