blob: 0ea39ab4e0ed4ee516625ee3e83ec2a7a8fb49ba [file] [log] [blame]
Jay Pipes3f981df2012-03-27 18:59:44 -04001# vim: tabstop=4 shiftwidth=4 softtabstop=4
2
ZhiQiang Fan39f97222013-09-20 04:49:44 +08003# Copyright 2012 OpenStack Foundation
Jay Pipes3f981df2012-03-27 18:59:44 -04004# All Rights Reserved.
5#
6# Licensed under the Apache License, Version 2.0 (the "License"); you may
7# not use this file except in compliance with the License. You may obtain
8# a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15# License for the specific language governing permissions and limitations
16# under the License.
17
Dirk Muellere746fc22013-06-29 16:29:29 +020018from __future__ import print_function
19
Jay Pipes7f757632011-12-02 15:53:32 -050020import os
Jay Pipes3f981df2012-03-27 18:59:44 -040021
Matthew Treinish90aedd12013-02-25 17:56:49 -050022from oslo.config import cfg
23
Matthew Treinishf4a9b0f2013-07-26 16:58:26 -040024from tempest.openstack.common import log as logging
Jay Pipes7f757632011-12-02 15:53:32 -050025
Daryl Walleck1465d612011-11-02 02:22:15 -050026
DennyZhang88a2dd82013-10-07 12:55:35 -050027def register_opt_group(conf, opt_group, options):
28 conf.register_group(opt_group)
29 for opt in options:
30 conf.register_opt(opt, group=opt_group.name)
31
32
Matthew Treinish39e48ef2012-12-21 13:36:15 -050033identity_group = cfg.OptGroup(name='identity',
34 title="Keystone Configuration Options")
Daryl Walleck1465d612011-11-02 02:22:15 -050035
Matthew Treinish39e48ef2012-12-21 13:36:15 -050036IdentityGroup = [
37 cfg.StrOpt('catalog_type',
38 default='identity',
39 help="Catalog type of the Identity service."),
Jay Pipescd8eaec2013-01-16 21:03:48 -050040 cfg.BoolOpt('disable_ssl_certificate_validation',
41 default=False,
42 help="Set to True if using self-signed SSL certificates."),
Jay Pipes7c88eb22013-01-16 21:32:43 -050043 cfg.StrOpt('uri',
44 default=None,
Brant Knudsonc7ca3342013-03-28 21:08:50 -050045 help="Full URI of the OpenStack Identity API (Keystone), v2"),
46 cfg.StrOpt('uri_v3',
47 help='Full URI of the OpenStack Identity API (Keystone), v3'),
Matthew Treinish39e48ef2012-12-21 13:36:15 -050048 cfg.StrOpt('region',
Attila Fazekascadcb1f2013-01-21 23:10:53 +010049 default='RegionOne',
Arata Notsu8f440392013-09-13 16:14:20 +090050 help="The identity region name to use. Also used as the other "
51 "services' region name unless they are set explicitly. "
52 "If no such region is found in the service catalog, the "
53 "first found one is used."),
Attila Fazekascadcb1f2013-01-21 23:10:53 +010054 cfg.StrOpt('username',
55 default='demo',
56 help="Username to use for Nova API requests."),
57 cfg.StrOpt('tenant_name',
58 default='demo',
59 help="Tenant name to use for Nova API requests."),
Russell Sim7f894a52013-09-13 10:35:21 +100060 cfg.StrOpt('admin_role',
61 default='admin',
62 help="Role required to administrate keystone."),
Attila Fazekascadcb1f2013-01-21 23:10:53 +010063 cfg.StrOpt('password',
64 default='pass',
65 help="API key to use when authenticating.",
66 secret=True),
67 cfg.StrOpt('alt_username',
68 default=None,
69 help="Username of alternate user to use for Nova API "
70 "requests."),
71 cfg.StrOpt('alt_tenant_name',
72 default=None,
73 help="Alternate user's Tenant name to use for Nova API "
74 "requests."),
75 cfg.StrOpt('alt_password',
76 default=None,
77 help="API key to use when authenticating as alternate user.",
78 secret=True),
79 cfg.StrOpt('admin_username',
80 default='admin',
81 help="Administrative Username to use for"
82 "Keystone API requests."),
83 cfg.StrOpt('admin_tenant_name',
84 default='admin',
85 help="Administrative Tenant name to use for Keystone API "
86 "requests."),
87 cfg.StrOpt('admin_password',
88 default='pass',
89 help="API key to use when authenticating as admin.",
90 secret=True),
Matthew Treinish39e48ef2012-12-21 13:36:15 -050091]
Jay Pipes3f981df2012-03-27 18:59:44 -040092
Matthew Treinish39e48ef2012-12-21 13:36:15 -050093compute_group = cfg.OptGroup(name='compute',
94 title='Compute Service Options')
Rohit Karajgie1b050d2011-12-02 16:13:18 -080095
Matthew Treinish39e48ef2012-12-21 13:36:15 -050096ComputeGroup = [
97 cfg.BoolOpt('allow_tenant_isolation',
98 default=False,
99 help="Allows test cases to create/destroy tenants and "
100 "users. This option enables isolated test cases and "
101 "better parallel execution, but also requires that "
102 "OpenStack Identity API admin credentials are known."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500103 cfg.StrOpt('image_ref',
104 default="{$IMAGE_ID}",
105 help="Valid secondary image reference to be used in tests."),
106 cfg.StrOpt('image_ref_alt',
107 default="{$IMAGE_ID_ALT}",
108 help="Valid secondary image reference to be used in tests."),
Ken'ichi Ohmichi35772602013-11-14 15:03:27 +0900109 cfg.StrOpt('flavor_ref',
110 default="1",
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500111 help="Valid primary flavor to use in tests."),
Ken'ichi Ohmichi35772602013-11-14 15:03:27 +0900112 cfg.StrOpt('flavor_ref_alt',
113 default="2",
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500114 help='Valid secondary flavor to be used in tests.'),
Maru Newbyaf292e82013-05-20 21:32:28 +0000115 cfg.StrOpt('image_ssh_user',
116 default="root",
117 help="User name used to authenticate to an instance."),
Ryan Hsucb2e1252013-09-03 21:44:49 -0700118 cfg.StrOpt('image_ssh_password',
119 default="password",
120 help="Password used to authenticate to an instance."),
Maru Newbyaf292e82013-05-20 21:32:28 +0000121 cfg.StrOpt('image_alt_ssh_user',
122 default="root",
123 help="User name used to authenticate to an instance using "
124 "the alternate image."),
Ryan Hsucb2e1252013-09-03 21:44:49 -0700125 cfg.StrOpt('image_alt_ssh_password',
126 default="password",
127 help="Password used to authenticate to an instance using "
128 "the alternate image."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500129 cfg.IntOpt('build_interval',
130 default=10,
131 help="Time in seconds between build status checks."),
132 cfg.IntOpt('build_timeout',
133 default=300,
134 help="Timeout in seconds to wait for an instance to build."),
135 cfg.BoolOpt('run_ssh',
136 default=False,
Derek Higgins85cd5142013-12-17 17:10:11 +0000137 help="Should the tests ssh to instances?"),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500138 cfg.StrOpt('ssh_user',
139 default='root',
140 help="User name used to authenticate to an instance."),
Nachi Ueno6d580be2013-07-24 10:58:11 -0700141 cfg.IntOpt('ping_timeout',
142 default=60,
143 help="Timeout in seconds to wait for ping to "
144 "succeed."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500145 cfg.IntOpt('ssh_timeout',
146 default=300,
Chris Yeoh76916042013-02-27 16:25:25 +1030147 help="Timeout in seconds to wait for authentication to "
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500148 "succeed."),
Attila Fazekas0abbc952013-07-01 19:19:42 +0200149 cfg.IntOpt('ready_wait',
150 default=0,
DennyZhang8912d012013-09-25 18:08:34 -0500151 help="Additional wait time for clean state, when there is "
152 "no OS-EXT-STS extension available"),
Chris Yeoh76916042013-02-27 16:25:25 +1030153 cfg.IntOpt('ssh_channel_timeout',
154 default=60,
155 help="Timeout in seconds to wait for output from ssh "
156 "channel."),
Attila Fazekasb0661652013-05-08 13:01:36 +0200157 cfg.StrOpt('fixed_network_name',
158 default='private',
159 help="Visible fixed network name "),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500160 cfg.StrOpt('network_for_ssh',
161 default='public',
162 help="Network used for SSH connections."),
163 cfg.IntOpt('ip_version_for_ssh',
164 default=4,
165 help="IP version used for SSH connections."),
fujioka yuuichia11994e2013-07-09 11:19:51 +0900166 cfg.BoolOpt('use_floatingip_for_ssh',
167 default=True,
168 help="Dose the SSH uses Floating IP?"),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500169 cfg.StrOpt('catalog_type',
170 default='compute',
171 help="Catalog type of the Compute service."),
Arata Notsu8f440392013-09-13 16:14:20 +0900172 cfg.StrOpt('region',
173 default='',
174 help="The compute region name to use. If empty, the value "
175 "of identity.region is used instead. If no such region "
176 "is found in the service catalog, the first found one is "
177 "used."),
ivan-zhu8f992be2013-07-31 14:56:58 +0800178 cfg.StrOpt('catalog_v3_type',
179 default='computev3',
180 help="Catalog type of the Compute v3 service."),
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100181 cfg.StrOpt('path_to_private_key',
182 default=None,
183 help="Path to a private key file for SSH access to remote "
184 "hosts"),
Ryan Hsucb2e1252013-09-03 21:44:49 -0700185 cfg.StrOpt('volume_device_name',
186 default='vdb',
187 help="Expected device name when a volume is attached to "
Ken'ichi Ohmichi39437e22013-10-06 00:21:38 +0900188 "an instance"),
189 cfg.IntOpt('shelved_offload_time',
190 default=0,
191 help='Time in seconds before a shelved instance is eligible '
192 'for removing from a host. -1 never offload, 0 offload '
193 'when shelved. This time should be the same as the time '
194 'of nova.conf, and some tests will run for as long as the '
195 'time.')
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500196]
Rohit Karajgie1b050d2011-12-02 16:13:18 -0800197
Matthew Treinishd5c96022013-10-17 21:51:23 +0000198compute_features_group = cfg.OptGroup(name='compute-feature-enabled',
199 title="Enabled Compute Service Features")
200
201ComputeFeaturesGroup = [
ivan-zhu8f992be2013-07-31 14:56:58 +0800202 cfg.BoolOpt('api_v3',
Chris Yeohfbc15de2013-11-26 10:20:08 +1030203 default=True,
ivan-zhu8f992be2013-07-31 14:56:58 +0800204 help="If false, skip all nova v3 tests."),
Matthew Treinishd5c96022013-10-17 21:51:23 +0000205 cfg.BoolOpt('disk_config',
206 default=True,
207 help="If false, skip disk config tests"),
Matthew Treinishe3d26142013-11-26 19:14:58 +0000208 cfg.ListOpt('api_extensions',
209 default=['all'],
210 help='A list of enabled extensions with a special entry all '
211 'which indicates every extension is enabled'),
212 cfg.ListOpt('api_v3_extensions',
213 default=['all'],
214 help='A list of enabled v3 extensions with a special entry all'
215 ' which indicates every extension is enabled'),
Matthew Treinishd5c96022013-10-17 21:51:23 +0000216 cfg.BoolOpt('change_password',
217 default=False,
218 help="Does the test environment support changing the admin "
219 "password?"),
220 cfg.BoolOpt('create_image',
221 default=False,
222 help="Does the test environment support snapshots?"),
223 cfg.BoolOpt('resize',
224 default=False,
225 help="Does the test environment support resizing?"),
226 cfg.BoolOpt('live_migration',
227 default=False,
228 help="Does the test environment support live migration "
229 "available?"),
230 cfg.BoolOpt('block_migration_for_live_migration',
231 default=False,
232 help="Does the test environment use block devices for live "
233 "migration"),
234 cfg.BoolOpt('block_migrate_cinder_iscsi',
235 default=False,
236 help="Does the test environment block migration support "
237 "cinder iSCSI volumes")
238]
239
240
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500241compute_admin_group = cfg.OptGroup(name='compute-admin',
242 title="Compute Admin Options")
donald-ngo7fb1efa2011-12-13 17:17:36 -0800243
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500244ComputeAdminGroup = [
245 cfg.StrOpt('username',
246 default='admin',
247 help="Administrative Username to use for Nova API requests."),
248 cfg.StrOpt('tenant_name',
249 default='admin',
250 help="Administrative Tenant name to use for Nova API "
251 "requests."),
252 cfg.StrOpt('password',
253 default='pass',
254 help="API key to use when authenticating as admin.",
255 secret=True),
256]
Daryl Walleck587385b2012-03-03 13:00:26 -0600257
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500258image_group = cfg.OptGroup(name='image',
259 title="Image Service Options")
Jay Pipesf38eaac2012-06-21 13:37:35 -0400260
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500261ImageGroup = [
Matthew Treinish72ea4422013-02-07 14:42:49 -0500262 cfg.StrOpt('catalog_type',
263 default='image',
Sean Dague83401992013-05-06 17:46:36 -0400264 help='Catalog type of the Image service.'),
Arata Notsu8f440392013-09-13 16:14:20 +0900265 cfg.StrOpt('region',
266 default='',
267 help="The image region name to use. If empty, the value "
268 "of identity.region is used instead. If no such region "
269 "is found in the service catalog, the first found one is "
270 "used."),
Sean Dague83401992013-05-06 17:46:36 -0400271 cfg.StrOpt('http_image',
272 default='http://download.cirros-cloud.net/0.3.1/'
273 'cirros-0.3.1-x86_64-uec.tar.gz',
DennyZhang8912d012013-09-25 18:08:34 -0500274 help='http accessible image')
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500275]
Jay Pipesf38eaac2012-06-21 13:37:35 -0400276
Matthew Treinish2b5287d2013-10-22 17:40:34 +0000277image_feature_group = cfg.OptGroup(name='image-feature-enabled',
278 title='Enabled image service features')
279
280ImageFeaturesGroup = [
281 cfg.BoolOpt('api_v2',
282 default=True,
283 help="Is the v2 image API enabled"),
284 cfg.BoolOpt('api_v1',
285 default=True,
286 help="Is the v1 image API enabled"),
287]
Jay Pipesf38eaac2012-06-21 13:37:35 -0400288
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500289network_group = cfg.OptGroup(name='network',
290 title='Network Service Options')
Daryl Walleck587385b2012-03-03 13:00:26 -0600291
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500292NetworkGroup = [
293 cfg.StrOpt('catalog_type',
294 default='network',
Mark McClainf2982e82013-07-06 17:48:03 -0400295 help='Catalog type of the Neutron service.'),
Arata Notsu8f440392013-09-13 16:14:20 +0900296 cfg.StrOpt('region',
297 default='',
298 help="The network region name to use. If empty, the value "
299 "of identity.region is used instead. If no such region "
300 "is found in the service catalog, the first found one is "
301 "used."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500302 cfg.StrOpt('tenant_network_cidr',
303 default="10.100.0.0/16",
304 help="The cidr block to allocate tenant networks from"),
305 cfg.IntOpt('tenant_network_mask_bits',
Attila Fazekas8ea181b2013-07-13 16:26:14 +0200306 default=28,
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500307 help="The mask bits for tenant networks"),
308 cfg.BoolOpt('tenant_networks_reachable',
309 default=False,
310 help="Whether tenant network connectivity should be "
311 "evaluated directly"),
312 cfg.StrOpt('public_network_id',
313 default="",
314 help="Id of the public network that provides external "
315 "connectivity"),
316 cfg.StrOpt('public_router_id',
317 default="",
318 help="Id of the public router that provides external "
319 "connectivity"),
320]
Jay Pipes3f981df2012-03-27 18:59:44 -0400321
Matthew Treinishe3d26142013-11-26 19:14:58 +0000322network_feature_group = cfg.OptGroup(name='network-feature-enabled',
323 title='Enabled network service features')
324
325NetworkFeaturesGroup = [
326 cfg.ListOpt('api_extensions',
327 default=['all'],
328 help='A list of enabled extensions with a special entry all '
329 'which indicates every extension is enabled'),
330]
331
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500332volume_group = cfg.OptGroup(name='volume',
333 title='Block Storage Options')
Daryl Walleck587385b2012-03-03 13:00:26 -0600334
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500335VolumeGroup = [
336 cfg.IntOpt('build_interval',
337 default=10,
338 help='Time in seconds between volume availability checks.'),
339 cfg.IntOpt('build_timeout',
340 default=300,
341 help='Timeout in seconds to wait for a volume to become'
342 'available.'),
343 cfg.StrOpt('catalog_type',
Matthew Treinisheb724512013-10-25 15:12:59 +0000344 default='volume',
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500345 help="Catalog type of the Volume Service"),
Arata Notsu8f440392013-09-13 16:14:20 +0900346 cfg.StrOpt('region',
347 default='',
348 help="The volume region name to use. If empty, the value "
349 "of identity.region is used instead. If no such region "
350 "is found in the service catalog, the first found one is "
351 "used."),
Jérôme Gallard86551ce2013-03-08 11:41:26 +0100352 cfg.StrOpt('backend1_name',
Giulio Fidentef4fa8942013-05-28 18:48:03 +0200353 default='BACKEND_1',
Jérôme Gallard86551ce2013-03-08 11:41:26 +0100354 help="Name of the backend1 (must be declared in cinder.conf)"),
355 cfg.StrOpt('backend2_name',
Giulio Fidentef4fa8942013-05-28 18:48:03 +0200356 default='BACKEND_2',
Jérôme Gallard86551ce2013-03-08 11:41:26 +0100357 help="Name of the backend2 (must be declared in cinder.conf)"),
Adam Gandelman827ad332013-06-24 17:04:09 -0700358 cfg.StrOpt('storage_protocol',
359 default='iSCSI',
360 help='Backend protocol to target when creating volume types'),
361 cfg.StrOpt('vendor_name',
362 default='Open Source',
363 help='Backend vendor to target when creating volume types'),
Ryan Hsua67f4632013-08-29 16:03:06 -0700364 cfg.StrOpt('disk_format',
365 default='raw',
366 help='Disk format to use when copying a volume to image'),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500367]
K Jonathan Harkerd6ba4b42012-12-18 13:50:47 -0800368
Matthew Treinishd5c96022013-10-17 21:51:23 +0000369volume_feature_group = cfg.OptGroup(name='volume-feature-enabled',
370 title='Enabled Cinder Features')
371
372VolumeFeaturesGroup = [
373 cfg.BoolOpt('multi_backend',
374 default=False,
Matthew Treinishe3d26142013-11-26 19:14:58 +0000375 help="Runs Cinder multi-backend test (requires 2 backends)"),
376 cfg.ListOpt('api_extensions',
377 default=['all'],
378 help='A list of enabled extensions with a special entry all '
379 'which indicates every extension is enabled'),
Zhi Kun Liubb363a22013-11-28 18:47:39 +0800380 cfg.BoolOpt('api_v1',
381 default=True,
382 help="Is the v1 volume API enabled"),
Matthew Treinishd5c96022013-10-17 21:51:23 +0000383]
384
Daryl Walleck587385b2012-03-03 13:00:26 -0600385
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500386object_storage_group = cfg.OptGroup(name='object-storage',
387 title='Object Storage Service Options')
Attila Fazekasa23f5002012-10-23 19:32:45 +0200388
DennyZhang1e71b612013-09-26 12:35:40 -0500389ObjectStoreGroup = [
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500390 cfg.StrOpt('catalog_type',
391 default='object-store',
392 help="Catalog type of the Object-Storage service."),
Arata Notsu8f440392013-09-13 16:14:20 +0900393 cfg.StrOpt('region',
394 default='',
395 help="The object-storage region name to use. If empty, the "
396 "value of identity.region is used instead. If no such "
397 "region is found in the service catalog, the first found "
398 "one is used."),
Matthew Treinishf319a732013-10-24 21:39:24 +0000399 cfg.IntOpt('container_sync_timeout',
nayna-patelb4989b32013-01-09 06:25:13 +0000400 default=120,
Fabien Boucher2178d312013-12-31 15:38:57 +0100401 help="Number of seconds to time on waiting for a container "
nayna-patelb4989b32013-01-09 06:25:13 +0000402 "to container synchronization complete."),
Matthew Treinishf319a732013-10-24 21:39:24 +0000403 cfg.IntOpt('container_sync_interval',
nayna-patelb4989b32013-01-09 06:25:13 +0000404 default=5,
Fabien Boucher2178d312013-12-31 15:38:57 +0100405 help="Number of seconds to wait while looping to check the "
nayna-patelb4989b32013-01-09 06:25:13 +0000406 "status of a container to container synchronization"),
Matthew Treinish3fdb80c2013-08-15 11:13:19 -0400407 cfg.StrOpt('operator_role',
408 default='Member',
409 help="Role to add to users created for swift tests to "
410 "enable creating containers"),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500411]
Attila Fazekasa23f5002012-10-23 19:32:45 +0200412
Matthew Treinishd5c96022013-10-17 21:51:23 +0000413object_storage_feature_group = cfg.OptGroup(
414 name='object-storage-feature-enabled',
415 title='Enabled object-storage features')
416
417ObjectStoreFeaturesGroup = [
418 cfg.BoolOpt('container_quotas',
419 default=True,
Joe H. Rahme3f2d4c62013-11-19 18:25:31 +0100420 help="Set to True if the Container Quota middleware "
Matthew Treinishd5c96022013-10-17 21:51:23 +0000421 "is enabled"),
422 cfg.BoolOpt('accounts_quotas',
423 default=True,
424 help="Set to True if the Account Quota middleware is enabled"),
Joe H. Rahme836da3f2013-10-09 15:47:16 +0200425 cfg.BoolOpt('crossdomain',
426 default=True,
427 help="Set to True if the Crossdomain middleware is enabled"),
Joe H. Rahme3f2d4c62013-11-19 18:25:31 +0100428 cfg.BoolOpt('tempurl',
429 default=True,
430 help="Set to True if the TempURL middleware is enabled"),
Matthew Treinishd5c96022013-10-17 21:51:23 +0000431]
432
Attila Fazekasa23f5002012-10-23 19:32:45 +0200433
Steve Bakerc60e4e32013-05-06 15:22:41 +1200434orchestration_group = cfg.OptGroup(name='orchestration',
435 title='Orchestration Service Options')
436
437OrchestrationGroup = [
438 cfg.StrOpt('catalog_type',
439 default='orchestration',
440 help="Catalog type of the Orchestration service."),
Arata Notsu8f440392013-09-13 16:14:20 +0900441 cfg.StrOpt('region',
442 default='',
443 help="The orchestration region name to use. If empty, the "
444 "value of identity.region is used instead. If no such "
445 "region is found in the service catalog, the first found "
446 "one is used."),
Steve Bakerc60e4e32013-05-06 15:22:41 +1200447 cfg.BoolOpt('allow_tenant_isolation',
448 default=False,
449 help="Allows test cases to create/destroy tenants and "
450 "users. This option enables isolated test cases and "
451 "better parallel execution, but also requires that "
452 "OpenStack Identity API admin credentials are known."),
453 cfg.IntOpt('build_interval',
454 default=1,
455 help="Time in seconds between build status checks."),
456 cfg.IntOpt('build_timeout',
457 default=300,
458 help="Timeout in seconds to wait for a stack to build."),
Steve Bakerc60e4e32013-05-06 15:22:41 +1200459 cfg.StrOpt('instance_type',
Steve Baker9e86b832013-05-22 15:40:28 +1200460 default='m1.micro',
Steve Bakerc60e4e32013-05-06 15:22:41 +1200461 help="Instance type for tests. Needs to be big enough for a "
462 "full OS plus the test workload"),
463 cfg.StrOpt('image_ref',
464 default=None,
465 help="Name of heat-cfntools enabled image to use when "
466 "launching test instances."),
467 cfg.StrOpt('keypair_name',
468 default=None,
469 help="Name of existing keypair to launch servers with."),
Clint Byrum71f27632013-09-09 11:41:32 -0700470 cfg.IntOpt('max_template_size',
Joe Gordon0e51b222013-10-24 14:11:10 +0100471 default=524288,
Clint Byrum71f27632013-09-09 11:41:32 -0700472 help="Value must match heat configuration of the same name."),
Steve Bakerc60e4e32013-05-06 15:22:41 +1200473]
474
475
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100476telemetry_group = cfg.OptGroup(name='telemetry',
477 title='Telemetry Service Options')
478
479TelemetryGroup = [
480 cfg.StrOpt('catalog_type',
481 default='metering',
482 help="Catalog type of the Telemetry service."),
483]
484
485
Julie Pichond1017642013-07-24 16:37:23 +0100486dashboard_group = cfg.OptGroup(name="dashboard",
487 title="Dashboard options")
488
489DashboardGroup = [
490 cfg.StrOpt('dashboard_url',
491 default='http://localhost/',
492 help="Where the dashboard can be found"),
493 cfg.StrOpt('login_url',
494 default='http://localhost/auth/login/',
495 help="Login page for the dashboard"),
496]
497
498
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400499data_processing_group = cfg.OptGroup(name="data_processing",
500 title="Data Processing options")
501
502DataProcessingGroup = [
503 cfg.StrOpt('catalog_type',
504 default='data_processing',
505 help="Catalog type of the data processing service.")
506]
507
508
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500509boto_group = cfg.OptGroup(name='boto',
510 title='EC2/S3 options')
DennyZhang1e71b612013-09-26 12:35:40 -0500511BotoGroup = [
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500512 cfg.StrOpt('ec2_url',
513 default="http://localhost:8773/services/Cloud",
514 help="EC2 URL"),
515 cfg.StrOpt('s3_url',
516 default="http://localhost:8080",
517 help="S3 URL"),
518 cfg.StrOpt('aws_secret',
519 default=None,
520 help="AWS Secret Key",
521 secret=True),
522 cfg.StrOpt('aws_access',
523 default=None,
524 help="AWS Access Key"),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500525 cfg.StrOpt('s3_materials_path',
526 default="/opt/stack/devstack/files/images/"
527 "s3-materials/cirros-0.3.0",
528 help="S3 Materials Path"),
529 cfg.StrOpt('ari_manifest',
530 default="cirros-0.3.0-x86_64-initrd.manifest.xml",
531 help="ARI Ramdisk Image manifest"),
532 cfg.StrOpt('ami_manifest',
533 default="cirros-0.3.0-x86_64-blank.img.manifest.xml",
534 help="AMI Machine Image manifest"),
535 cfg.StrOpt('aki_manifest',
536 default="cirros-0.3.0-x86_64-vmlinuz.manifest.xml",
537 help="AKI Kernel Image manifest"),
538 cfg.StrOpt('instance_type',
539 default="m1.tiny",
540 help="Instance type"),
541 cfg.IntOpt('http_socket_timeout',
542 default=3,
543 help="boto Http socket timeout"),
544 cfg.IntOpt('num_retries',
545 default=1,
546 help="boto num_retries on error"),
547 cfg.IntOpt('build_timeout',
548 default=60,
549 help="Status Change Timeout"),
550 cfg.IntOpt('build_interval',
551 default=1,
552 help="Status Change Test Interval"),
553]
Attila Fazekasf7f2d932012-12-13 09:14:38 +0100554
Matthew Treinish615ea6a2013-02-25 17:26:59 -0500555stress_group = cfg.OptGroup(name='stress', title='Stress Test Options')
556
557StressGroup = [
558 cfg.StrOpt('nova_logdir',
559 default=None,
560 help='Directory containing log files on the compute nodes'),
561 cfg.IntOpt('max_instances',
562 default=16,
563 help='Maximum number of instances to create during test.'),
564 cfg.StrOpt('controller',
565 default=None,
David Kranzb9d97502013-05-01 15:55:04 -0400566 help='Controller host.'),
567 # new stress options
568 cfg.StrOpt('target_controller',
569 default=None,
570 help='Controller host.'),
571 cfg.StrOpt('target_ssh_user',
572 default=None,
573 help='ssh user.'),
574 cfg.StrOpt('target_private_key_path',
575 default=None,
576 help='Path to private key.'),
577 cfg.StrOpt('target_logfiles',
578 default=None,
579 help='regexp for list of log files.'),
Matthew Treinishf319a732013-10-24 21:39:24 +0000580 cfg.IntOpt('log_check_interval',
David Kranzb9d97502013-05-01 15:55:04 -0400581 default=60,
Marc Koderer32221b8e2013-08-23 13:57:50 +0200582 help='time (in seconds) between log file error checks.'),
Matthew Treinishf319a732013-10-24 21:39:24 +0000583 cfg.IntOpt('default_thread_number_per_action',
Marc Koderer32221b8e2013-08-23 13:57:50 +0200584 default=4,
585 help='The number of threads created while stress test.')
Matthew Treinish615ea6a2013-02-25 17:26:59 -0500586]
587
588
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900589scenario_group = cfg.OptGroup(name='scenario', title='Scenario Test Options')
590
591ScenarioGroup = [
592 cfg.StrOpt('img_dir',
593 default='/opt/stack/new/devstack/files/images/'
594 'cirros-0.3.1-x86_64-uec',
595 help='Directory containing image files'),
596 cfg.StrOpt('ami_img_file',
597 default='cirros-0.3.1-x86_64-blank.img',
598 help='AMI image file name'),
599 cfg.StrOpt('ari_img_file',
600 default='cirros-0.3.1-x86_64-initrd',
601 help='ARI image file name'),
602 cfg.StrOpt('aki_img_file',
603 default='cirros-0.3.1-x86_64-vmlinuz',
604 help='AKI image file name'),
605 cfg.StrOpt('ssh_user',
606 default='cirros',
Joe Gordonb5e10cd2013-07-10 15:51:12 +0000607 help='ssh username for the image file'),
608 cfg.IntOpt(
609 'large_ops_number',
610 default=0,
611 help="specifies how many resources to request at once. Used "
612 "for large operations testing.")
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900613]
614
615
Matthew Treinish4c412922013-07-16 15:27:42 -0400616service_available_group = cfg.OptGroup(name="service_available",
617 title="Available OpenStack Services")
618
619ServiceAvailableGroup = [
620 cfg.BoolOpt('cinder',
621 default=True,
622 help="Whether or not cinder is expected to be available"),
Matthew Treinishfaa340d2013-07-19 16:26:21 -0400623 cfg.BoolOpt('neutron',
624 default=False,
625 help="Whether or not neutron is expected to be available"),
Matthew Treinish853ae442013-07-19 16:36:07 -0400626 cfg.BoolOpt('glance',
627 default=True,
628 help="Whether or not glance is expected to be available"),
Matthew Treinish61e332b2013-07-19 16:42:31 -0400629 cfg.BoolOpt('swift',
630 default=True,
631 help="Whether or not swift is expected to be available"),
Matthew Treinish6b41e242013-07-19 16:49:28 -0400632 cfg.BoolOpt('nova',
633 default=True,
634 help="Whether or not nova is expected to be available"),
Matthew Treinisha9d43882013-07-19 16:54:52 -0400635 cfg.BoolOpt('heat',
636 default=False,
637 help="Whether or not Heat is expected to be available"),
Mehdi Abaakouk8581c0b2013-10-04 10:45:42 +0200638 cfg.BoolOpt('ceilometer',
639 default=True,
640 help="Whether or not Ceilometer is expected to be available"),
Julie Pichond1017642013-07-24 16:37:23 +0100641 cfg.BoolOpt('horizon',
642 default=True,
643 help="Whether or not Horizon is expected to be available"),
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400644 cfg.BoolOpt('savanna',
645 default=False,
646 help="Whether or not Savanna is expected to be available"),
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300647 cfg.BoolOpt('ironic',
648 default=False,
649 help="Whether or not Ironic is expected to be available"),
Matthew Treinish4c412922013-07-16 15:27:42 -0400650]
651
Attila Fazekasaeeeefd2013-08-06 17:01:56 +0200652debug_group = cfg.OptGroup(name="debug",
653 title="Debug System")
654
655DebugGroup = [
656 cfg.BoolOpt('enable',
657 default=True,
658 help="Enable diagnostic commands"),
659]
660
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000661input_scenario_group = cfg.OptGroup(name="input-scenario",
662 title="Filters and values for"
663 " input scenarios")
664
665InputScenarioGroup = [
666 cfg.StrOpt('image_regex',
667 default='^cirros-0.3.1-x86_64-uec$',
668 help="Matching images become parameters for scenario tests"),
669 cfg.StrOpt('flavor_regex',
670 default='^m1.(micro|nano|tiny)$',
671 help="Matching flavors become parameters for scenario tests"),
672 cfg.StrOpt('non_ssh_image_regex',
673 default='^.*[Ww]in.*$',
674 help="SSH verification in tests is skipped"
675 "for matching images"),
676 cfg.StrOpt('ssh_user_regex',
677 default="[[\"^.*[Cc]irros.*$\", \"root\"]]",
678 help="List of user mapped to regex "
679 "to matching image names."),
680]
681
Attila Fazekasaeeeefd2013-08-06 17:01:56 +0200682
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300683baremetal_group = cfg.OptGroup(name='baremetal',
684 title='Baremetal provisioning service options')
685
686BaremetalGroup = [
687 cfg.StrOpt('catalog_type',
688 default='baremetal',
689 help="Catalog type of the baremetal provisioning service."),
690]
691
692
Sean Dague3b9b1f32013-12-20 17:04:54 -0500693# this should never be called outside of this class
694class TempestConfigPrivate(object):
Daryl Walleck1465d612011-11-02 02:22:15 -0500695 """Provides OpenStack configuration information."""
696
Brian Waldon738cd632011-12-12 18:45:09 -0500697 DEFAULT_CONFIG_DIR = os.path.join(
Zhongyue Luoa1343de2013-01-04 16:21:35 +0800698 os.path.abspath(os.path.dirname(os.path.dirname(__file__))),
Brian Waldon738cd632011-12-12 18:45:09 -0500699 "etc")
Daryl Walleck1465d612011-11-02 02:22:15 -0500700
Brian Waldon738cd632011-12-12 18:45:09 -0500701 DEFAULT_CONFIG_FILE = "tempest.conf"
702
Sean Dague2ec4c2c2013-12-22 11:30:06 -0500703 def __init__(self, parse_conf=True):
Brian Waldon738cd632011-12-12 18:45:09 -0500704 """Initialize a configuration from a conf directory and conf file."""
Sean Dague3b9b1f32013-12-20 17:04:54 -0500705 super(TempestConfigPrivate, self).__init__()
Sean Dague2416cf32013-04-10 08:29:07 -0400706 config_files = []
Sean Dague2416cf32013-04-10 08:29:07 -0400707 failsafe_path = "/etc/tempest/" + self.DEFAULT_CONFIG_FILE
Brian Waldon738cd632011-12-12 18:45:09 -0500708
709 # Environment variables override defaults...
710 conf_dir = os.environ.get('TEMPEST_CONFIG_DIR',
Zhongyue Luo79d8d362012-09-25 13:49:27 +0800711 self.DEFAULT_CONFIG_DIR)
712 conf_file = os.environ.get('TEMPEST_CONFIG', self.DEFAULT_CONFIG_FILE)
Brian Waldon738cd632011-12-12 18:45:09 -0500713
Jay Pipes7f757632011-12-02 15:53:32 -0500714 path = os.path.join(conf_dir, conf_file)
715
Zhongyue Luoafd43eb2013-02-04 11:32:57 +0800716 if not (os.path.isfile(path) or
717 'TEMPEST_CONFIG_DIR' in os.environ or
718 'TEMPEST_CONFIG' in os.environ):
Sean Dague2416cf32013-04-10 08:29:07 -0400719 path = failsafe_path
Attila Fazekas5abb2532012-12-04 11:30:49 +0100720
Sean Dague2ec4c2c2013-12-22 11:30:06 -0500721 # only parse the config file if we expect one to exist. This is needed
722 # to remove an issue with the config file up to date checker.
723 if parse_conf:
Sean Dague2416cf32013-04-10 08:29:07 -0400724 config_files.append(path)
Jay Pipes7f757632011-12-02 15:53:32 -0500725
Sean Dague2416cf32013-04-10 08:29:07 -0400726 cfg.CONF([], project='tempest', default_config_files=config_files)
Matthew Treinishf4a9b0f2013-07-26 16:58:26 -0400727 logging.setup('tempest')
728 LOG = logging.getLogger('tempest')
729 LOG.info("Using tempest config file %s" % path)
Daryl Walleck1465d612011-11-02 02:22:15 -0500730
DennyZhang88a2dd82013-10-07 12:55:35 -0500731 register_opt_group(cfg.CONF, compute_group, ComputeGroup)
Matthew Treinishd5c96022013-10-17 21:51:23 +0000732 register_opt_group(cfg.CONF, compute_features_group,
733 ComputeFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500734 register_opt_group(cfg.CONF, identity_group, IdentityGroup)
735 register_opt_group(cfg.CONF, image_group, ImageGroup)
Matthew Treinish2b5287d2013-10-22 17:40:34 +0000736 register_opt_group(cfg.CONF, image_feature_group, ImageFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500737 register_opt_group(cfg.CONF, network_group, NetworkGroup)
Matthew Treinishe3d26142013-11-26 19:14:58 +0000738 register_opt_group(cfg.CONF, network_feature_group,
739 NetworkFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500740 register_opt_group(cfg.CONF, volume_group, VolumeGroup)
Matthew Treinishd5c96022013-10-17 21:51:23 +0000741 register_opt_group(cfg.CONF, volume_feature_group,
742 VolumeFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500743 register_opt_group(cfg.CONF, object_storage_group, ObjectStoreGroup)
Matthew Treinishd5c96022013-10-17 21:51:23 +0000744 register_opt_group(cfg.CONF, object_storage_feature_group,
745 ObjectStoreFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500746 register_opt_group(cfg.CONF, orchestration_group, OrchestrationGroup)
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100747 register_opt_group(cfg.CONF, telemetry_group, TelemetryGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500748 register_opt_group(cfg.CONF, dashboard_group, DashboardGroup)
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400749 register_opt_group(cfg.CONF, data_processing_group,
750 DataProcessingGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500751 register_opt_group(cfg.CONF, boto_group, BotoGroup)
752 register_opt_group(cfg.CONF, compute_admin_group, ComputeAdminGroup)
753 register_opt_group(cfg.CONF, stress_group, StressGroup)
754 register_opt_group(cfg.CONF, scenario_group, ScenarioGroup)
755 register_opt_group(cfg.CONF, service_available_group,
756 ServiceAvailableGroup)
757 register_opt_group(cfg.CONF, debug_group, DebugGroup)
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300758 register_opt_group(cfg.CONF, baremetal_group, BaremetalGroup)
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000759 register_opt_group(cfg.CONF, input_scenario_group, InputScenarioGroup)
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500760 self.compute = cfg.CONF.compute
Matthew Treinishd5c96022013-10-17 21:51:23 +0000761 self.compute_feature_enabled = cfg.CONF['compute-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500762 self.identity = cfg.CONF.identity
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500763 self.images = cfg.CONF.image
Matthew Treinish2b5287d2013-10-22 17:40:34 +0000764 self.image_feature_enabled = cfg.CONF['image-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500765 self.network = cfg.CONF.network
Matthew Treinishe3d26142013-11-26 19:14:58 +0000766 self.network_feature_enabled = cfg.CONF['network-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500767 self.volume = cfg.CONF.volume
Matthew Treinishd5c96022013-10-17 21:51:23 +0000768 self.volume_feature_enabled = cfg.CONF['volume-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500769 self.object_storage = cfg.CONF['object-storage']
Matthew Treinishd5c96022013-10-17 21:51:23 +0000770 self.object_storage_feature_enabled = cfg.CONF[
771 'object-storage-feature-enabled']
Steve Bakerc60e4e32013-05-06 15:22:41 +1200772 self.orchestration = cfg.CONF.orchestration
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100773 self.telemetry = cfg.CONF.telemetry
Julie Pichond1017642013-07-24 16:37:23 +0100774 self.dashboard = cfg.CONF.dashboard
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400775 self.data_processing = cfg.CONF.data_processing
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500776 self.boto = cfg.CONF.boto
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100777 self.compute_admin = cfg.CONF['compute-admin']
Matthew Treinish615ea6a2013-02-25 17:26:59 -0500778 self.stress = cfg.CONF.stress
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900779 self.scenario = cfg.CONF.scenario
Matthew Treinish4c412922013-07-16 15:27:42 -0400780 self.service_available = cfg.CONF.service_available
Attila Fazekas5fae7a32013-09-25 16:52:44 +0200781 self.debug = cfg.CONF.debug
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300782 self.baremetal = cfg.CONF.baremetal
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000783 self.input_scenario = cfg.CONF['input-scenario']
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100784 if not self.compute_admin.username:
785 self.compute_admin.username = self.identity.admin_username
786 self.compute_admin.password = self.identity.admin_password
787 self.compute_admin.tenant_name = self.identity.admin_tenant_name
Sean Dague86bd8422013-12-20 09:56:44 -0500788
789
790class TempestConfigProxy(object):
791 _config = None
792
793 def __getattr__(self, attr):
794 if not self._config:
Sean Dague3b9b1f32013-12-20 17:04:54 -0500795 self._config = TempestConfigPrivate()
Sean Dague86bd8422013-12-20 09:56:44 -0500796
797 return getattr(self._config, attr)
798
799
800CONF = TempestConfigProxy()