Merge "Converted vPing to leverage the object-oriented SNAPS library."
[functest.git] / functest / core / pytest_suite_runner.py
1 # Copyright (c) 2015 All rights reserved
2 # This program and the accompanying materials
3 # are made available under the terms of the Apache License, Version 2.0
4 # which accompanies this distribution, and is available at
5 #
6 # http://www.apache.org/licenses/LICENSE-2.0
7
8 # pylint: disable=missing-docstring
9
10 import logging
11 import unittest
12 import time
13
14 from functest.core import testcase
15
16 logging.basicConfig()
17
18
19 class PyTestSuiteRunner(testcase.TestCase):
20     """
21     This superclass is designed to execute pre-configured unittest.TestSuite()
22     objects
23     """
24     def __init__(self, **kwargs):
25         super(PyTestSuiteRunner, self).__init__(**kwargs)
26         self.logger = logging.getLogger(self.__class__.__name__)
27         self.suite = None
28
29     def run(self, **kwargs):
30         """
31         Starts test execution from the functest framework
32         """
33         self.start_time = time.time()
34         result = unittest.TextTestRunner(verbosity=2).run(self.suite)
35         self.stop_time = time.time()
36
37         if result.errors:
38             self.logger.error('Number of errors in test suite - ' +
39                               str(len(result.errors)))
40             for test, message in result.errors:
41                 self.logger.error(str(test) + " ERROR with " + message)
42
43         if result.failures:
44             self.logger.error('Number of failures in test suite - ' +
45                               str(len(result.failures)))
46             for test, message in result.failures:
47                 self.logger.error(str(test) + " FAILED with " + message)
48
49         # a result can be PASS or FAIL
50         # But in this case it means that the Execution was OK
51         # we shall distinguish Execution Error from FAIL results
52         # TestCase.EX_RUN_ERROR means that the test case was not run
53         # not that it was run but the result was FAIL
54         exit_code = testcase.TestCase.EX_OK
55         if ((result.errors and len(result.errors) > 0)
56                 or (result.failures and len(result.failures) > 0)):
57             self.logger.info("%s FAILED", self.case_name)
58             self.result = 'FAIL'
59         else:
60             self.logger.info("%s OK", self.case_name)
61             self.result = 'PASS'
62
63         self.details = {}
64         return exit_code