diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-05-16 11:47:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-05-16 11:47:14 +0000 |
commit | ccb98c22390fd97a3bb55aa225c7241cc4daa85d (patch) | |
tree | f5b7987f8f9888d2c2b5d499aa8b0d4b455605f9 /functest/core/testcase.py | |
parent | 696fb168cd72978c18a9c7f4d9d2ba60b80611ab (diff) | |
parent | 648d31af02248b8b2da059e228c10f1e3f81eb5b (diff) |
Merge "Modify TestCase.__str__() to use PrettyTable"
Diffstat (limited to 'functest/core/testcase.py')
-rw-r--r-- | functest/core/testcase.py | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/functest/core/testcase.py b/functest/core/testcase.py index 49fae609..317c4f59 100644 --- a/functest/core/testcase.py +++ b/functest/core/testcase.py @@ -12,6 +12,8 @@ import logging import os +import prettytable + import functest.utils.functest_utils as ft_utils __author__ = "Cedric Ollivier <cedric.ollivier@orange.com>" @@ -49,14 +51,16 @@ class TestCase(object): assert self.case_name result = 'PASS' if(self.is_successful( ) == TestCase.EX_OK) else 'FAIL' - return ('| {0:<23} | {1:<13} | {2:<10} | {3:<13} |' - '\n{4:-<26}{4:-<16}{4:-<13}{4:-<16}{4}'.format( - self.case_name, self.project_name, - self.get_duration(), result, '+')) + msg = prettytable.PrettyTable( + header_style='upper', + field_names=['test case', 'project', 'duration', + 'result']) + msg.add_row([self.case_name, self.project_name, + self.get_duration(), result]) + return msg.get_string() except AssertionError: self.__logger.error("We cannot print invalid objects") - return '| {0:^68} |\n{1:-<26}{1:-<16}{1:-<13}{1:-<16}{1}'.format( - 'INVALID OBJECT', '+') + return super(TestCase, self).__str__() def get_duration(self): """Return the duration of the test case. |