Merge "Update user guide for Colorado"
[functest.git] / testcases / features / copper.py
1 #!/usr/bin/python\r
2 #\r
3 # Copyright 2016 AT&T Intellectual Property, Inc\r
4 #\r
5 # Licensed under the Apache License, Version 2.0 (the "License");\r
6 # you may not use this file except in compliance with the License.\r
7 # You may obtain a copy of the License at\r
8 #\r
9 # http://www.apache.org/licenses/LICENSE-2.0\r
10 #\r
11 # Unless required by applicable law or agreed to in writing, software\r
12 # distributed under the License is distributed on an "AS IS" BASIS,\r
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14 # See the License for the specific language governing permissions and\r
15 # limitations under the License.\r
16 #\r
17 \r
18 import os\r
19 import sys\r
20 import time\r
21 import functest.utils.functest_logger as ft_logger\r
22 import functest.utils.functest_utils as functest_utils\r
23 import yaml\r
24 \r
25 \r
26 with open(os.environ["CONFIG_FUNCTEST_YAML"]) as f:\r
27     functest_yaml = yaml.safe_load(f)\r
28 \r
29 dirs = functest_yaml.get('general').get('directories')\r
30 FUNCTEST_REPO = dirs.get('dir_repo_functest')\r
31 COPPER_REPO = dirs.get('dir_repo_copper')\r
32 TEST_DB_URL = functest_yaml.get('results').get('test_db_url')\r
33 \r
34 logger = ft_logger.Logger("copper").getLogger()\r
35 \r
36 \r
37 def main():\r
38     cmd = "%s/tests/run.sh %s/tests" % (COPPER_REPO, COPPER_REPO)\r
39 \r
40     start_time = time.time()\r
41 \r
42     ret_val = functest_utils.execute_command(cmd, logger, exit_on_error=False)\r
43 \r
44     stop_time = time.time()\r
45     duration = round(stop_time - start_time, 1)\r
46     if ret_val == 0:\r
47         logger.info("COPPER PASSED")\r
48         test_status = 'PASS'\r
49     else:\r
50         logger.info("COPPER FAILED")\r
51         test_status = 'FAIL'\r
52 \r
53     details = {\r
54         'timestart': start_time,\r
55         'duration': duration,\r
56         'status': test_status,\r
57     }\r
58     pod_name = functest_utils.get_pod_name(logger)\r
59     scenario = functest_utils.get_scenario(logger)\r
60     version = functest_utils.get_version(logger)\r
61     build_tag = functest_utils.get_build_tag(logger)\r
62 \r
63     try:\r
64         logger.info("Pushing COPPER results: TEST_DB_URL=%(db)s "\r
65                     "pod_name=%(pod)s version=%(v)s scenario=%(s)s "\r
66                     "criteria=%(c)s details=%(d)s" % {\r
67                         'db': TEST_DB_URL,\r
68                         'pod': pod_name,\r
69                         'v': version,\r
70                         's': scenario,\r
71                         'c': details['status'],\r
72                         'b': build_tag,\r
73                         'd': details,\r
74                     })\r
75         functest_utils.push_results_to_db("copper",\r
76                                           "copper-notification",\r
77                                           logger,\r
78                                           start_time,\r
79                                           stop_time,\r
80                                           details['status'],\r
81                                           details)\r
82     except:\r
83         logger.error("Error pushing results into Database '%s'"\r
84                      % sys.exc_info()[0])\r
85 \r
86     if ret_val != 0:\r
87         sys.exit(-1)\r
88 \r
89     sys.exit(0)\r
90 \r
91 if __name__ == '__main__':\r
92     main()\r