Set lnfo logging level for Doctor tests
[functest.git] / testcases / features / doctor.py
1 #!/usr/bin/python
2 #
3 # Copyright (c) 2015 All rights reserved
4 # This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # 0.1: This script boots the VM1 and allocates IP address from Nova
11 # Later, the VM2 boots then execute cloud-init to ping VM1.
12 # After successful ping, both the VMs are deleted.
13 # 0.2: measure test duration and publish results under json format
14 #
15 #
16
17 import os
18 import time
19 import yaml
20
21 import functest.utils.functest_logger as ft_logger
22 import functest.utils.functest_utils as functest_utils
23
24 with open(os.environ["CONFIG_FUNCTEST_YAML"]) as f:
25     functest_yaml = yaml.safe_load(f)
26
27 dirs = functest_yaml.get('general').get('directories')
28 FUNCTEST_REPO = dirs.get('dir_repo_functest')
29 DOCTOR_REPO = dirs.get('dir_repo_doctor')
30 TEST_DB_URL = functest_yaml.get('results').get('test_db_url')
31
32 logger = ft_logger.Logger("doctor").getLogger()
33
34
35 def main():
36     exit_code = -1
37     cmd = 'cd %s/tests && ./run.sh' % DOCTOR_REPO
38     start_time = time.time()
39
40     ret = functest_utils.execute_command(cmd, logger, info=True,
41                                          exit_on_error=False)
42
43     stop_time = time.time()
44     duration = round(stop_time - start_time, 1)
45     if ret == 0:
46         logger.info("doctor OK")
47         test_status = 'OK'
48         exit_code = 0
49     else:
50         logger.info("doctor FAILED")
51         test_status = 'NOK'
52
53     details = {
54         'timestart': start_time,
55         'duration': duration,
56         'status': test_status,
57     }
58     pod_name = functest_utils.get_pod_name(logger)
59     scenario = functest_utils.get_scenario(logger)
60     version = functest_utils.get_version(logger)
61     build_tag = functest_utils.get_build_tag(logger)
62
63     status = "FAIL"
64     if details['status'] == "OK":
65         status = "PASS"
66
67     logger.info("Pushing Doctor results: TEST_DB_URL=%(db)s pod_name=%(pod)s "
68                 "version=%(v)s scenario=%(s)s criteria=%(c)s details=%(d)s" % {
69                     'db': TEST_DB_URL,
70                     'pod': pod_name,
71                     'v': version,
72                     's': scenario,
73                     'c': status,
74                     'b': build_tag,
75                     'd': details,
76                 })
77     functest_utils.push_results_to_db("doctor",
78                                       "doctor-notification",
79                                       logger,
80                                       start_time,
81                                       stop_time,
82                                       status,
83                                       details)
84
85     exit(exit_code)
86
87 if __name__ == '__main__':
88     main()