Merge "bugfix: domino test can not be executed"
[functest.git] / functest / opnfv_tests / 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 # 0.4: refactoring to match Test abstraction class
16
17 import argparse
18 import sys
19 import time
20
21 from functest.core import TestCasesBase
22 import functest.utils.functest_logger as ft_logger
23 import functest.utils.functest_utils as ft_utils
24
25
26 class DominoCases(TestCasesBase.TestCasesBase):
27     DOMINO_REPO = \
28         ft_utils.get_functest_config('general.directories.dir_repo_domino')
29     RESULTS_DIR = \
30         ft_utils.get_functest_config('general.directories.dir_results')
31     logger = ft_logger.Logger("domino").getLogger()
32
33     def __init__(self):
34         super(DominoCases, self).__init__()
35         self.project_name = "domino"
36         self.case_name = "domino-multinode"
37
38     def main(self, **kwargs):
39         cmd = 'cd %s && ./tests/run_multinode.sh' % self.DOMINO_REPO
40         log_file = self.RESULTS_DIR + "/domino.log"
41         start_time = time.time()
42
43         ret = ft_utils.execute_command(cmd,
44                                        output_file=log_file)
45
46         stop_time = time.time()
47         duration = round(stop_time - start_time, 1)
48         if ret == 0 and duration > 1:
49             self.logger.info("domino OK")
50             status = 'PASS'
51         elif ret == 0 and duration <= 1:
52             self.logger.info("domino TEST SKIPPED")
53             status = 'SKIP'
54         else:
55             self.logger.info("domino FAILED")
56             status = "FAIL"
57
58         # report status only if tests run (FAIL OR PASS)
59         if status is not "SKIP":
60             self.criteria = status
61             self.start_time = start_time
62             self.stop_time = stop_time
63             self.details = {}
64
65     def run(self):
66         kwargs = {}
67         return self.main(**kwargs)
68
69 if __name__ == '__main__':
70     parser = argparse.ArgumentParser()
71     parser.add_argument("-r", "--report",
72                         help="Create json result file",
73                         action="store_true")
74     args = vars(parser.parse_args())
75     domino = DominoCases()
76     try:
77         result = domino.main(**args)
78         if result != TestCasesBase.TestCasesBase.EX_OK:
79             sys.exit(result)
80         if args['report']:
81             sys.exit(domino.push_to_db())
82     except Exception:
83         sys.exit(TestCasesBase.TestCasesBase.EX_RUN_ERROR)