Merge "[bugfix] issures in multisite testcase"
[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     logger.info("Pushing COPPER results: TEST_DB_URL=%(db)s pod_name=%(pod)s "\r
64                 "version=%(v)s scenario=%(s)s criteria=%(c)s details=%(d)s" % {\r
65                     'db': TEST_DB_URL,\r
66                     'pod': pod_name,\r
67                     'v': version,\r
68                     's': scenario,\r
69                     'c': details['status'],\r
70                     'b': build_tag,\r
71                     'd': details,\r
72                 })\r
73     functest_utils.push_results_to_db("COPPER",\r
74                                       "COPPER-notification",\r
75                                       logger,\r
76                                       start_time,\r
77                                       stop_time,\r
78                                       details['status'],\r
79                                       details)\r
80     if ret_val != 0:\r
81         sys.exit(-1)\r
82 \r
83     sys.exit(0)\r
84 \r
85 if __name__ == '__main__':\r
86     main()\r