Create results/tempest dir for refstack config
[functest.git] / functest / opnfv_tests / openstack / tempest / conf_utils.py
1 #!/usr/bin/env 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 logging
12 import os
13 import pkg_resources
14 import shutil
15 import subprocess
16
17 import yaml
18
19 from functest.utils.constants import CONST
20 import functest.utils.functest_utils as ft_utils
21 import functest.utils.openstack_utils as os_utils
22
23
24 IMAGE_ID_ALT = None
25 FLAVOR_ID_ALT = None
26 GLANCE_IMAGE_PATH = os.path.join(
27     CONST.__getattribute__('dir_functest_images'),
28     CONST.__getattribute__('openstack_image_file_name'))
29 TEMPEST_RESULTS_DIR = os.path.join(CONST.__getattribute__('dir_results'),
30                                    'tempest')
31 TEMPEST_CUSTOM = pkg_resources.resource_filename(
32     'functest', 'opnfv_tests/openstack/tempest/custom_tests/test_list.txt')
33 TEMPEST_BLACKLIST = pkg_resources.resource_filename(
34     'functest', 'opnfv_tests/openstack/tempest/custom_tests/blacklist.txt')
35 TEMPEST_DEFCORE = pkg_resources.resource_filename(
36     'functest',
37     'opnfv_tests/openstack/tempest/custom_tests/defcore_req.txt')
38 TEMPEST_RAW_LIST = os.path.join(TEMPEST_RESULTS_DIR, 'test_raw_list.txt')
39 TEMPEST_LIST = os.path.join(TEMPEST_RESULTS_DIR, 'test_list.txt')
40 REFSTACK_RESULTS_DIR = os.path.join(CONST.__getattribute__('dir_results'),
41                                     'refstack')
42 TEMPEST_CONF_YAML = pkg_resources.resource_filename(
43     'functest', 'opnfv_tests/openstack/tempest/custom_tests/tempest_conf.yaml')
44 TEST_ACCOUNTS_FILE = pkg_resources.resource_filename(
45     'functest',
46     'opnfv_tests/openstack/tempest/custom_tests/test_accounts.yaml')
47
48 CI_INSTALLER_TYPE = CONST.__getattribute__('INSTALLER_TYPE')
49 CI_INSTALLER_IP = CONST.__getattribute__('INSTALLER_IP')
50
51 """ logging configuration """
52 logger = logging.getLogger(__name__)
53
54
55 def get_verifier_id():
56     """
57     Returns verifier id for current Tempest
58     """
59     cmd = ("rally verify list-verifiers | awk '/" +
60            CONST.__getattribute__('tempest_deployment_name') +
61            "/ {print $2}'")
62     p = subprocess.Popen(cmd, shell=True,
63                          stdout=subprocess.PIPE,
64                          stderr=subprocess.STDOUT)
65     deployment_uuid = p.stdout.readline().rstrip()
66     if deployment_uuid == "":
67         logger.error("Tempest verifier not found.")
68         raise Exception('Error with command:%s' % cmd)
69     return deployment_uuid
70
71
72 def get_verifier_deployment_id():
73     """
74     Returns deployment id for active Rally deployment
75     """
76     cmd = ("rally deployment list | awk '/" +
77            CONST.__getattribute__('rally_deployment_name') +
78            "/ {print $2}'")
79     p = subprocess.Popen(cmd, shell=True,
80                          stdout=subprocess.PIPE,
81                          stderr=subprocess.STDOUT)
82     deployment_uuid = p.stdout.readline().rstrip()
83     if deployment_uuid == "":
84         logger.error("Rally deployment not found.")
85         raise Exception('Error with command:%s' % cmd)
86     return deployment_uuid
87
88
89 def get_verifier_repo_dir(verifier_id):
90     """
91     Returns installed verifier repo directory for Tempest
92     """
93     if not verifier_id:
94         verifier_id = get_verifier_id()
95
96     return os.path.join(CONST.__getattribute__('dir_rally_inst'),
97                         'verification',
98                         'verifier-{}'.format(verifier_id),
99                         'repo')
100
101
102 def get_verifier_deployment_dir(verifier_id, deployment_id):
103     """
104     Returns Rally deployment directory for current verifier
105     """
106     if not verifier_id:
107         verifier_id = get_verifier_id()
108
109     if not deployment_id:
110         deployment_id = get_verifier_deployment_id()
111
112     return os.path.join(CONST.__getattribute__('dir_rally_inst'),
113                         'verification',
114                         'verifier-{}'.format(verifier_id),
115                         'for-deployment-{}'.format(deployment_id))
116
117
118 def get_repo_tag(repo):
119     """
120     Returns last tag of current branch
121     """
122     cmd = ("git -C {0} describe --abbrev=0 HEAD".format(repo))
123     p = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True)
124     tag = p.stdout.readline().rstrip()
125
126     return str(tag)
127
128
129 def backup_tempest_config(conf_file):
130     """
131     Copy config file to tempest results directory
132     """
133     if not os.path.exists(TEMPEST_RESULTS_DIR):
134         os.makedirs(TEMPEST_RESULTS_DIR)
135     shutil.copyfile(conf_file,
136                     os.path.join(TEMPEST_RESULTS_DIR, 'tempest.conf'))
137
138
139 def configure_tempest(deployment_dir, image_id=None, flavor_id=None,
140                       mode=None):
141     """
142     Calls rally verify and updates the generated tempest.conf with
143     given parameters
144     """
145     conf_file = configure_verifier(deployment_dir)
146     configure_tempest_update_params(conf_file, image_id, flavor_id)
147
148
149 def configure_tempest_defcore(deployment_dir, image_id, flavor_id,
150                               image_id_alt, flavor_id_alt, tenant_id):
151     """
152     Add/update needed parameters into tempest.conf file
153     """
154     conf_file = configure_verifier(deployment_dir)
155     configure_tempest_update_params(conf_file, image_id, flavor_id)
156
157     logger.debug("Updating selected tempest.conf parameters for defcore...")
158     config = ConfigParser.RawConfigParser()
159     config.read(conf_file)
160     config.set('DEFAULT', 'log_file', '{}/tempest.log'.format(deployment_dir))
161     config.set('oslo_concurrency', 'lock_path',
162                '{}/lock_files'.format(deployment_dir))
163     generate_test_accounts_file(tenant_id=tenant_id)
164     config.set('auth', 'test_accounts_file', TEST_ACCOUNTS_FILE)
165     config.set('scenario', 'img_dir', '{}'.format(deployment_dir))
166     config.set('scenario', 'img_file', 'tempest-image')
167     config.set('compute', 'image_ref', image_id)
168     config.set('compute', 'image_ref_alt', image_id_alt)
169     config.set('compute', 'flavor_ref', flavor_id)
170     config.set('compute', 'flavor_ref_alt', flavor_id_alt)
171
172     with open(conf_file, 'wb') as config_file:
173         config.write(config_file)
174
175     confpath = pkg_resources.resource_filename(
176         'functest',
177         'opnfv_tests/openstack/refstack_client/refstack_tempest.conf')
178     shutil.copyfile(conf_file, confpath)
179
180
181 def generate_test_accounts_file(tenant_id):
182     """
183     Add needed tenant and user params into test_accounts.yaml
184     """
185
186     logger.debug("Add needed params into test_accounts.yaml...")
187     accounts_list = [
188         {
189             'tenant_name':
190                 CONST.__getattribute__('tempest_identity_tenant_name'),
191             'tenant_id': str(tenant_id),
192             'username': CONST.__getattribute__('tempest_identity_user_name'),
193             'password':
194                 CONST.__getattribute__('tempest_identity_user_password')
195         }
196     ]
197
198     with open(TEST_ACCOUNTS_FILE, "w") as f:
199         yaml.dump(accounts_list, f, default_flow_style=False)
200
201
202 def configure_tempest_update_params(tempest_conf_file,
203                                     image_id=None, flavor_id=None):
204     """
205     Add/update needed parameters into tempest.conf file
206     """
207     logger.debug("Updating selected tempest.conf parameters...")
208     config = ConfigParser.RawConfigParser()
209     config.read(tempest_conf_file)
210     config.set(
211         'compute',
212         'fixed_network_name',
213         CONST.__getattribute__('tempest_private_net_name'))
214     config.set('compute', 'volume_device_name',
215                CONST.__getattribute__('tempest_volume_device_name'))
216     if CONST.__getattribute__('tempest_use_custom_images'):
217         if image_id is not None:
218             config.set('compute', 'image_ref', image_id)
219         if IMAGE_ID_ALT is not None:
220             config.set('compute', 'image_ref_alt', IMAGE_ID_ALT)
221     if CONST.__getattribute__('tempest_use_custom_flavors'):
222         if flavor_id is not None:
223             config.set('compute', 'flavor_ref', flavor_id)
224         if FLAVOR_ID_ALT is not None:
225             config.set('compute', 'flavor_ref_alt', FLAVOR_ID_ALT)
226     config.set('identity', 'region', 'RegionOne')
227     if os_utils.is_keystone_v3():
228         auth_version = 'v3'
229     else:
230         auth_version = 'v2'
231     config.set('identity', 'auth_version', auth_version)
232     config.set(
233         'validation', 'ssh_timeout',
234         CONST.__getattribute__('tempest_validation_ssh_timeout'))
235     config.set('object-storage', 'operator_role',
236                CONST.__getattribute__('tempest_object_storage_operator_role'))
237
238     if CONST.__getattribute__('OS_ENDPOINT_TYPE') is not None:
239         sections = config.sections()
240         if os_utils.is_keystone_v3():
241             config.set('identity', 'v3_endpoint_type',
242                        CONST.__getattribute__('OS_ENDPOINT_TYPE'))
243             if 'identity-feature-enabled' not in sections:
244                 config.add_section('identity-feature-enabled')
245                 config.set('identity-feature-enabled', 'api_v2', False)
246                 config.set('identity-feature-enabled', 'api_v2_admin', False)
247         services_list = ['compute',
248                          'volume',
249                          'image',
250                          'network',
251                          'data-processing',
252                          'object-storage',
253                          'orchestration']
254         for service in services_list:
255             if service not in sections:
256                 config.add_section(service)
257             config.set(service, 'endpoint_type',
258                        CONST.__getattribute__('OS_ENDPOINT_TYPE'))
259
260     logger.debug('Add/Update required params defined in tempest_conf.yaml '
261                  'into tempest.conf file')
262     with open(TEMPEST_CONF_YAML) as f:
263         conf_yaml = yaml.safe_load(f)
264     if conf_yaml:
265         sections = config.sections()
266         for section in conf_yaml:
267             if section not in sections:
268                 config.add_section(section)
269             sub_conf = conf_yaml.get(section)
270             for key, value in sub_conf.items():
271                 config.set(section, key, value)
272
273     with open(tempest_conf_file, 'wb') as config_file:
274         config.write(config_file)
275
276     backup_tempest_config(tempest_conf_file)
277
278
279 def configure_verifier(deployment_dir):
280     """
281     Execute rally verify configure-verifier, which generates tempest.conf
282     """
283     tempest_conf_file = os.path.join(deployment_dir, "tempest.conf")
284     if os.path.isfile(tempest_conf_file):
285         logger.debug("Verifier is already configured.")
286         logger.debug("Reconfiguring the current verifier...")
287         cmd = "rally verify configure-verifier --reconfigure"
288     else:
289         logger.info("Configuring the verifier...")
290         cmd = "rally verify configure-verifier"
291     ft_utils.execute_command(cmd)
292
293     logger.debug("Looking for tempest.conf file...")
294     if not os.path.isfile(tempest_conf_file):
295         logger.error("Tempest configuration file %s NOT found."
296                      % tempest_conf_file)
297         raise Exception("Tempest configuration file %s NOT found."
298                         % tempest_conf_file)
299     else:
300         return tempest_conf_file