Merge "Adapt vping testcases to the new template"
[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     def __init__(self):
25         self.functest_repo = ft_utils.FUNCTEST_REPO
26         self.details = {}
27         self.project_name = "functest"
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.project_name
40             assert self.case_name
41             assert self.criteria
42             assert self.start_time
43             assert self.stop_time
44             if ft_utils.push_results_to_db(
45                     self.project_name, self.case_name, self.start_time,
46                     self.stop_time, self.criteria, self.details):
47                 self.logger.info("The results were successfully pushed to DB")
48                 return TestCasesBase.EX_OK
49             else:
50                 self.logger.error("The results cannot be pushed to DB")
51                 return TestCasesBase.EX_PUSH_TO_DB_ERROR
52         except Exception:
53             self.logger.exception("The results cannot be pushed to DB")
54             return TestCasesBase.EX_PUSH_TO_DB_ERROR