Merge "Update rally version"
[functest.git] / testcases / features / copper.py
1 #!/usr/bin/python
2 #
3 # Copyright 2016 AT&T Intellectual Property, Inc
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 import argparse
18 import sys
19 import time
20
21 import functest.utils.functest_logger as ft_logger
22 import functest.utils.functest_utils as functest_utils
23
24
25 parser = argparse.ArgumentParser()
26 parser.add_argument("-r", "--report",
27                     help="Create json result file",
28                     action="store_true")
29 args = parser.parse_args()
30
31 COPPER_REPO = \
32     functest_utils.get_functest_config('general.directories.dir_repo_copper')
33 RESULTS_DIR = \
34     functest_utils.get_functest_config('general.directories.dir_results')
35
36 logger = ft_logger.Logger("copper").getLogger()
37
38
39 def main():
40     cmd = "%s/tests/run.sh %s/tests" % (COPPER_REPO, COPPER_REPO)
41
42     start_time = time.time()
43
44     log_file = RESULTS_DIR + "/copper.log"
45     ret_val = functest_utils.execute_command(cmd,
46                                              output_file=log_file)
47
48     stop_time = time.time()
49     duration = round(stop_time - start_time, 1)
50     if ret_val == 0:
51         logger.info("COPPER PASSED")
52         test_status = 'PASS'
53     else:
54         logger.info("COPPER FAILED")
55         test_status = 'FAIL'
56
57     details = {
58         'timestart': start_time,
59         'duration': duration,
60         'status': test_status,
61     }
62     functest_utils.logger_test_results("Copper",
63                                        "copper-notification",
64                                        details['status'], details)
65     try:
66         if args.report:
67             functest_utils.push_results_to_db("copper",
68                                               "copper-notification",
69                                               start_time,
70                                               stop_time,
71                                               details['status'],
72                                               details)
73             logger.info("COPPER results pushed to DB")
74     except:
75         logger.error("Error pushing results into Database '%s'"
76                      % sys.exc_info()[0])
77
78     if ret_val != 0:
79         sys.exit(-1)
80
81     sys.exit(0)
82
83 if __name__ == '__main__':
84     main()