Repo structure modification
[functest.git] / functest / core / TestCasesBase.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2016 Orange and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9
10 import os
11
12 import functest.utils.functest_logger as ft_logger
13 import functest.utils.functest_utils as ft_utils
14
15
16 class TestCasesBase(object):
17
18     EX_OK = os.EX_OK
19     EX_RUN_ERROR = os.EX_SOFTWARE
20     EX_PUSH_TO_DB_ERROR = os.EX_SOFTWARE - 1
21
22     logger = ft_logger.Logger(__name__).getLogger()
23
24     project = "functest"
25
26     def __init__(self):
27         self.details = {}
28         self.case_name = ""
29         self.criteria = ""
30         self.start_time = ""
31         self.stop_time = ""
32
33     def run(self, **kwargs):
34         self.logger.error("Run must be implemented")
35         return TestCasesBase.EX_RUN_ERROR
36
37     def push_to_db(self):
38         try:
39             assert self.case_name
40             assert self.criteria
41             assert self.start_time
42             assert self.stop_time
43             if ft_utils.push_results_to_db(
44                     TestCasesBase.project, self.case_name, self.start_time,
45                     self.stop_time, self.criteria, self.details):
46                 self.logger.info("The results were successfully pushed to DB")
47                 return TestCasesBase.EX_OK
48             else:
49                 self.logger.error("The results cannot be pushed to DB")
50                 return TestCasesBase.EX_PUSH_TO_DB_ERROR
51         except Exception:
52             self.logger.exception("The results cannot be pushed to DB")
53             return TestCasesBase.EX_PUSH_TO_DB_ERROR