Fix config file name setting
[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_file = configure_verifier(deployment_dir)
115     configure_tempest_update_params(conf_file,
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     else:
196         return tempest_conf_file
197
198
199 def configure_tempest_multisite(deployment_dir):
200     """
201     Add/update needed parameters into tempest.conf file generated by Rally
202     """
203     logger.debug("configure the tempest")
204     configure_tempest(deployment_dir)
205
206     logger.debug("Finding tempest.conf file...")
207     tempest_conf_old = os.path.join(deployment_dir, 'tempest.conf')
208     if not os.path.isfile(tempest_conf_old):
209         raise Exception("Tempest configuration file %s NOT found."
210                         % tempest_conf_old)
211
212     # Copy tempest.conf to /home/opnfv/functest/results/tempest/
213     cur_path = os.path.split(os.path.realpath(__file__))[0]
214     tempest_conf_file = os.path.join(cur_path, 'tempest_multisite.conf')
215     shutil.copyfile(tempest_conf_old, tempest_conf_file)
216
217     logger.debug("Updating selected tempest.conf parameters...")
218     config = ConfigParser.RawConfigParser()
219     config.read(tempest_conf_file)
220
221     config.set('service_available', 'kingbird', 'true')
222     # cmd = ("openstack endpoint show kingbird | grep publicurl |"
223     #       "awk '{print $4}' | awk -F '/' '{print $4}'")
224     # kingbird_api_version = os.popen(cmd).read()
225     kingbird_api_version = os_utils.get_endpoint(service_type='multisite')
226
227     if CI_INSTALLER_TYPE == 'fuel':
228         # For MOS based setup, the service is accessible
229         # via bind host
230         kingbird_conf_path = "/etc/kingbird/kingbird.conf"
231         installer_type = CI_INSTALLER_TYPE
232         installer_ip = CI_INSTALLER_IP
233         installer_username = CONST.__getattribute__(
234             'multisite_{}_installer_username'.format(installer_type))
235         installer_password = CONST.__getattribute__(
236             'multisite_{}_installer_password'.format(installer_type))
237
238         ssh_options = ("-o UserKnownHostsFile=/dev/null -o "
239                        "StrictHostKeyChecking=no")
240
241         # Get the controller IP from the fuel node
242         cmd = 'sshpass -p %s ssh 2>/dev/null %s %s@%s \
243                 \'fuel node --env 1| grep controller | grep "True\|  1" \
244                 | awk -F\| "{print \$5}"\'' % (installer_password,
245                                                ssh_options,
246                                                installer_username,
247                                                installer_ip)
248         multisite_controller_ip = "".join(os.popen(cmd).read().split())
249
250         # Login to controller and get bind host details
251         cmd = 'sshpass -p %s ssh 2>/dev/null  %s %s@%s "ssh %s \\" \
252             grep -e "^bind_" %s  \\""' % (installer_password,
253                                           ssh_options,
254                                           installer_username,
255                                           installer_ip,
256                                           multisite_controller_ip,
257                                           kingbird_conf_path)
258         bind_details = os.popen(cmd).read()
259         bind_details = "".join(bind_details.split())
260         # Extract port number from the bind details
261         bind_port = re.findall(r"\D(\d{4})", bind_details)[0]
262         # Extract ip address from the bind details
263         bind_host = re.findall(r"\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}",
264                                bind_details)[0]
265         kingbird_endpoint_url = "http://%s:%s/" % (bind_host, bind_port)
266     else:
267         # cmd = "openstack endpoint show kingbird | grep publicurl |\
268         #       awk '{print $4}' | awk -F '/' '{print $3}'"
269         # kingbird_endpoint_url = os.popen(cmd).read()
270         kingbird_endpoint_url = os_utils.get_endpoint(service_type='kingbird')
271
272     try:
273         config.add_section("kingbird")
274     except Exception:
275         logger.info('kingbird section exist')
276     config.set('kingbird', 'endpoint_type', 'publicURL')
277     config.set('kingbird', 'TIME_TO_SYNC', '20')
278     config.set('kingbird', 'endpoint_url', kingbird_endpoint_url)
279     config.set('kingbird', 'api_version', kingbird_api_version)
280     with open(tempest_conf_file, 'wb') as config_file:
281         config.write(config_file)