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