Merge "Add ODL netvirt connectivity suites to list of robot tests"
[functest.git] / functest / opnfv_tests / openstack / tempest / conf_utils.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 import ConfigParser
11 import os
12 import re
13 import shutil
14 import subprocess
15
16 from functest.utils.constants import CONST
17 import functest.utils.functest_logger as ft_logger
18 import functest.utils.functest_utils as ft_utils
19 import functest.utils.openstack_utils as os_utils
20
21
22 IMAGE_ID_ALT = None
23 FLAVOR_ID_ALT = None
24 REPO_PATH = CONST.dir_repo_functest
25 GLANCE_IMAGE_PATH = os.path.join(CONST.dir_functest_data,
26                                  CONST.openstack_image_file_name)
27 TEMPEST_TEST_LIST_DIR = CONST.dir_tempest_cases
28 TEMPEST_RESULTS_DIR = os.path.join(CONST.dir_results,
29                                    'tempest')
30 TEMPEST_CUSTOM = os.path.join(REPO_PATH, TEMPEST_TEST_LIST_DIR,
31                               'test_list.txt')
32 TEMPEST_BLACKLIST = os.path.join(REPO_PATH, TEMPEST_TEST_LIST_DIR,
33                                  'blacklist.txt')
34 TEMPEST_DEFCORE = os.path.join(REPO_PATH, TEMPEST_TEST_LIST_DIR,
35                                'defcore_req.txt')
36 TEMPEST_RAW_LIST = os.path.join(TEMPEST_RESULTS_DIR, 'test_raw_list.txt')
37 TEMPEST_LIST = os.path.join(TEMPEST_RESULTS_DIR, 'test_list.txt')
38
39 CI_INSTALLER_TYPE = CONST.INSTALLER_TYPE
40 CI_INSTALLER_IP = CONST.INSTALLER_IP
41
42 """ logging configuration """
43 logger = ft_logger.Logger("Tempest").getLogger()
44
45
46 def get_verifier_id():
47     """
48     Returns verifer id for current Tempest
49     """
50     cmd = ("rally verify list-verifiers | awk '/" +
51            CONST.tempest_deployment_name +
52            "/ {print $2}'")
53     p = subprocess.Popen(cmd, shell=True,
54                          stdout=subprocess.PIPE,
55                          stderr=subprocess.STDOUT)
56     deployment_uuid = p.stdout.readline().rstrip()
57     if deployment_uuid == "":
58         logger.error("Tempest verifier not found.")
59         raise Exception('Error with command:%s' % cmd)
60     return deployment_uuid
61
62
63 def get_verifier_deployment_id():
64     """
65     Returns deployment id for active Rally deployment
66     """
67     cmd = ("rally deployment list | awk '/" +
68            CONST.rally_deployment_name +
69            "/ {print $2}'")
70     p = subprocess.Popen(cmd, shell=True,
71                          stdout=subprocess.PIPE,
72                          stderr=subprocess.STDOUT)
73     deployment_uuid = p.stdout.readline().rstrip()
74     if deployment_uuid == "":
75         logger.error("Rally deployment not found.")
76         raise Exception('Error with command:%s' % cmd)
77     return deployment_uuid
78
79
80 def get_verifier_repo_dir(verifier_id):
81     """
82     Returns installed verfier repo directory for Tempest
83     """
84     if not verifier_id:
85         verifier_id = get_verifier_id()
86
87     return os.path.join(CONST.dir_rally_inst,
88                         'verification',
89                         'verifier-{}'.format(verifier_id),
90                         'repo')
91
92
93 def get_verifier_deployment_dir(verifier_id, deployment_id):
94     """
95     Returns Rally deployment directory for current verifier
96     """
97     if not verifier_id:
98         verifier_id = get_verifier_id()
99
100     if not deployment_id:
101         deployment_id = get_verifier_deployment_id()
102
103     return os.path.join(CONST.dir_rally_inst,
104                         'verification',
105                         'verifier-{}'.format(verifier_id),
106                         'for-deployment-{}'.format(deployment_id))
107
108
109 def configure_tempest(deployment_dir, IMAGE_ID=None, FLAVOR_ID=None):
110     """
111     Calls rally verify and updates the generated tempest.conf with
112     given parameters
113     """
114     conf_verifier_result = configure_verifier(deployment_dir)
115     configure_tempest_update_params(conf_verifier_result,
116                                     IMAGE_ID, FLAVOR_ID)
117
118
119 def configure_tempest_update_params(tempest_conf_file,
120                                     IMAGE_ID=None, FLAVOR_ID=None):
121     """
122     Add/update needed parameters into tempest.conf file
123     """
124     logger.debug("Updating selected tempest.conf parameters...")
125     config = ConfigParser.RawConfigParser()
126     config.read(tempest_conf_file)
127     config.set(
128         'compute',
129         'fixed_network_name',
130         CONST.tempest_private_net_name)
131     if CONST.tempest_use_custom_images:
132         if IMAGE_ID is not None:
133             config.set('compute', 'image_ref', IMAGE_ID)
134         if IMAGE_ID_ALT is not None:
135             config.set('compute', 'image_ref_alt', IMAGE_ID_ALT)
136     if CONST.tempest_use_custom_flavors:
137         if FLAVOR_ID is not None:
138             config.set('compute', 'flavor_ref', FLAVOR_ID)
139         if FLAVOR_ID_ALT is not None:
140             config.set('compute', 'flavor_ref_alt', FLAVOR_ID_ALT)
141     config.set('identity', 'tenant_name', CONST.tempest_identity_tenant_name)
142     config.set('identity', 'username', CONST.tempest_identity_user_name)
143     config.set('identity', 'password', CONST.tempest_identity_user_password)
144     config.set(
145         'validation', 'ssh_timeout', CONST.tempest_validation_ssh_timeout)
146     config.set('object-storage', 'operator_role',
147                CONST.tempest_object_storage_operator_role)
148
149     if CONST.OS_ENDPOINT_TYPE is not None:
150         services_list = ['compute',
151                          'volume',
152                          'image',
153                          'network',
154                          'data-processing',
155                          'object-storage',
156                          'orchestration']
157         sections = config.sections()
158         for service in services_list:
159             if service not in sections:
160                 config.add_section(service)
161             config.set(service, 'endpoint_type',
162                        CONST.OS_ENDPOINT_TYPE)
163
164     with open(tempest_conf_file, 'wb') as config_file:
165         config.write(config_file)
166
167     # Copy tempest.conf to /home/opnfv/functest/results/tempest/
168     if not os.path.exists(TEMPEST_RESULTS_DIR):
169         os.makedirs(TEMPEST_RESULTS_DIR)
170
171     shutil.copyfile(tempest_conf_file,
172                     os.path.join(TEMPEST_RESULTS_DIR, 'tempest.conf'))
173
174
175 def configure_verifier(deployment_dir):
176     """
177     Execute rally verify configure-verifier, which generates tempest.conf
178     """
179     tempest_conf_file = os.path.join(deployment_dir, "tempest.conf")
180     if os.path.isfile(tempest_conf_file):
181         logger.debug("Verifier is already configured.")
182         logger.debug("Reconfiguring the current verifier...")
183         cmd = "rally verify configure-verifier --reconfigure"
184     else:
185         logger.info("Configuring the verifier...")
186         cmd = "rally verify configure-verifier"
187     ft_utils.execute_command(cmd)
188
189     logger.debug("Looking for tempest.conf file...")
190     if not os.path.isfile(tempest_conf_file):
191         logger.error("Tempest configuration file %s NOT found."
192                      % tempest_conf_file)
193         raise Exception("Tempest configuration file %s NOT found."
194                         % tempest_conf_file)
195
196
197 def configure_tempest_multisite(deployment_dir):
198     """
199     Add/update needed parameters into tempest.conf file generated by Rally
200     """
201     logger.debug("configure the tempest")
202     configure_tempest(deployment_dir)
203
204     logger.debug("Finding tempest.conf file...")
205     tempest_conf_old = os.path.join(deployment_dir, 'tempest.conf')
206     if not os.path.isfile(tempest_conf_old):
207         raise Exception("Tempest configuration file %s NOT found."
208                         % tempest_conf_old)
209
210     # Copy tempest.conf to /home/opnfv/functest/results/tempest/
211     cur_path = os.path.split(os.path.realpath(__file__))[0]
212     tempest_conf_file = os.path.join(cur_path, 'tempest_multisite.conf')
213     shutil.copyfile(tempest_conf_old, tempest_conf_file)
214
215     logger.debug("Updating selected tempest.conf parameters...")
216     config = ConfigParser.RawConfigParser()
217     config.read(tempest_conf_file)
218
219     config.set('service_available', 'kingbird', 'true')
220     # cmd = ("openstack endpoint show kingbird | grep publicurl |"
221     #       "awk '{print $4}' | awk -F '/' '{print $4}'")
222     # kingbird_api_version = os.popen(cmd).read()
223     kingbird_api_version = os_utils.get_endpoint(service_type='multisite')
224
225     if CI_INSTALLER_TYPE == 'fuel':
226         # For MOS based setup, the service is accessible
227         # via bind host
228         kingbird_conf_path = "/etc/kingbird/kingbird.conf"
229         installer_type = CI_INSTALLER_TYPE
230         installer_ip = CI_INSTALLER_IP
231         installer_username = CONST.__getattribute__(
232             'multisite_{}_installer_username'.format(installer_type))
233         installer_password = CONST.__getattribute__(
234             'multisite_{}_installer_password'.format(installer_type))
235
236         ssh_options = ("-o UserKnownHostsFile=/dev/null -o "
237                        "StrictHostKeyChecking=no")
238
239         # Get the controller IP from the fuel node
240         cmd = 'sshpass -p %s ssh 2>/dev/null %s %s@%s \
241                 \'fuel node --env 1| grep controller | grep "True\|  1" \
242                 | awk -F\| "{print \$5}"\'' % (installer_password,
243                                                ssh_options,
244                                                installer_username,
245                                                installer_ip)
246         multisite_controller_ip = "".join(os.popen(cmd).read().split())
247
248         # Login to controller and get bind host details
249         cmd = 'sshpass -p %s ssh 2>/dev/null  %s %s@%s "ssh %s \\" \
250             grep -e "^bind_" %s  \\""' % (installer_password,
251                                           ssh_options,
252                                           installer_username,
253                                           installer_ip,
254                                           multisite_controller_ip,
255                                           kingbird_conf_path)
256         bind_details = os.popen(cmd).read()
257         bind_details = "".join(bind_details.split())
258         # Extract port number from the bind details
259         bind_port = re.findall(r"\D(\d{4})", bind_details)[0]
260         # Extract ip address from the bind details
261         bind_host = re.findall(r"\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}",
262                                bind_details)[0]
263         kingbird_endpoint_url = "http://%s:%s/" % (bind_host, bind_port)
264     else:
265         # cmd = "openstack endpoint show kingbird | grep publicurl |\
266         #       awk '{print $4}' | awk -F '/' '{print $3}'"
267         # kingbird_endpoint_url = os.popen(cmd).read()
268         kingbird_endpoint_url = os_utils.get_endpoint(service_type='kingbird')
269
270     try:
271         config.add_section("kingbird")
272     except Exception:
273         logger.info('kingbird section exist')
274     config.set('kingbird', 'endpoint_type', 'publicURL')
275     config.set('kingbird', 'TIME_TO_SYNC', '20')
276     config.set('kingbird', 'endpoint_url', kingbird_endpoint_url)
277     config.set('kingbird', 'api_version', kingbird_api_version)
278     with open(tempest_conf_file, 'wb') as config_file:
279         config.write(config_file)