Remove all logers as utils method args.
[functest-xtesting.git] / testcases / features / domino.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 # 0.3: add report flag to push results when needed
15 #
16
17 import argparse
18 import os
19 import time
20 import yaml
21
22 import functest.utils.functest_logger as ft_logger
23 import functest.utils.functest_utils as functest_utils
24
25 parser = argparse.ArgumentParser()
26
27 parser.add_argument("-r", "--report",
28                     help="Create json result file",
29                     action="store_true")
30 args = parser.parse_args()
31
32 with open(os.environ["CONFIG_FUNCTEST_YAML"]) as f:
33     functest_yaml = yaml.safe_load(f)
34
35 dirs = functest_yaml.get('general').get('directories')
36 DOMINO_REPO = dirs.get('dir_repo_domino')
37
38 logger = ft_logger.Logger("domino").getLogger()
39
40
41 def main():
42     cmd = 'cd %s && ./tests/run_multinode.sh' % DOMINO_REPO
43     start_time = time.time()
44
45     ret = functest_utils.execute_command(cmd, exit_on_error=False)
46
47     stop_time = time.time()
48     duration = round(stop_time - start_time, 1)
49     if ret == 0 and duration > 1:
50         logger.info("domino OK")
51         test_status = 'OK'
52     elif ret == 0 and duration <= 1:
53         logger.info("domino TEST SKIPPED")
54         test_status = 'SKIPPED'
55     else:
56         logger.info("domino FAILED")
57         test_status = 'NOK'
58
59     details = {
60         'timestart': start_time,
61         'duration': duration,
62         'status': test_status,
63     }
64
65     status = "FAIL"
66     if details['status'] == "OK":
67         status = "PASS"
68     elif details['status'] == "SKIPPED":
69         status = "SKIP"
70
71     functest_utils.logger_test_results("Domino",
72                                        "domino-multinode",
73                                        status, details)
74     if args.report:
75         if status is not "SKIP":
76             functest_utils.push_results_to_db("domino",
77                                               "domino-multinode",
78                                               start_time,
79                                               stop_time,
80                                               status,
81                                               details)
82             logger.info("Domino results pushed to DB")
83
84
85 if __name__ == '__main__':
86     main()