update python modules shebang line for python intrepreter directive
[sdnvpn.git] / sdnvpn / test / functest / run_tempest.py
1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2017 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 #
11 import ConfigParser
12 import logging
13 import os
14 import re
15 import shutil
16
17 import functest.opnfv_tests.openstack.tempest.conf_utils as tempest_utils
18
19 logger = logging.getLogger('sdnvpn-tempest')
20
21
22 def main():
23     verifier_id = tempest_utils.get_verifier_id()
24     verifier_repo_dir = tempest_utils.get_verifier_repo_dir(
25         verifier_id)
26     deployment_id = tempest_utils.get_verifier_deployment_id()
27     src_tempest_dir = tempest_utils.get_verifier_deployment_dir(
28         verifier_id, deployment_id)
29
30
31     if not src_tempest_dir:
32         logger.error("Rally deployment not found.")
33         exit(-1)
34
35     tempest_utils.configure_verifier(src_tempest_dir)
36
37     src_tempest_conf = os.path.join(src_tempest_dir, 'tempest.conf')
38     bgpvpn_tempest_conf = os.path.join(src_tempest_dir, 'bgpvpn_tempest.conf')
39     bgpvpn_tempest_list = os.path.join(src_tempest_dir, 'tempest_list.txt')
40
41     if not os.path.isfile(src_tempest_conf):
42         logger.error("tempest.conf not found in %s." % src_tempest_conf)
43         exit(-1)
44     shutil.copy(src_tempest_conf, bgpvpn_tempest_conf)
45
46     logger.info("Copying tempest.conf to %s." % bgpvpn_tempest_conf)
47     config = ConfigParser.RawConfigParser()
48     config.read(bgpvpn_tempest_conf)
49     config.set('service_available', 'bgpvpn', 'True')
50     logger.debug("Updating %s with bgpvpn=True" % bgpvpn_tempest_conf)
51     with open(bgpvpn_tempest_conf, 'wb') as tempest_conf:
52         config.write(tempest_conf)
53
54     cmd = ("cd {0};"
55            "testr list-tests networking_bgpvpn_tempest > {1};"
56            "cd -;".format(verifier_repo_dir, bgpvpn_tempest_list))
57     logger.info("Generating bgpvpn tempest list: %s" % cmd)
58     os.popen(cmd)
59
60     cmd_line = ("tempest run --config-file {0} -t --whitelist-file {1}"
61                 .format(bgpvpn_tempest_conf, bgpvpn_tempest_list))
62     logger.info("Executing: %s" % cmd_line)
63     cmd = os.popen(cmd_line)
64     output = cmd.read()
65     logger.debug(output)
66
67     # Results parsing
68     error_logs = ""
69     duration = 0
70     failed = 0
71     try:
72         # Look For errors
73         error_logs = ""
74         for match in re.findall('(.*?)[. ]*FAILED', output):
75             error_logs += match
76         # look for duration
77         m = re.search('tests in(.*)sec', output)
78         duration = m.group(1)
79         # Look for num tests run
80         m = re.search('Ran:(.*)tests', output)
81         num_tests = m.group(1)
82         # Look for tests failed
83         m = re.search('Failed:(.*)', output)
84         failed = m.group(1)
85         # Look for name of the tests
86         testcases = re.findall("\{0\} (.*)", output)
87
88         results = {"duration": duration,
89                    "num_tests": num_tests, "failed": failed,
90                    "tests": testcases}
91         if int(failed) == 0:
92             status = "PASS"
93         else:
94             status = "FAIL"
95
96         return {"status": status, "details": results}
97     except:
98         logger.error("Problem when parsing the results.")
99
100
101 if __name__ == '__main__':
102     logging.basicConfig(level=logging.INFO)
103     main()