blob: 5a9199daf1cb46eba2033364196889c1382a72cc [file] [log] [blame]
ZhiQiang Fan39f97222013-09-20 04:49:44 +08001# Copyright 2012 OpenStack Foundation
Jay Pipes3f981df2012-03-27 18:59:44 -04002# All Rights Reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15
Dirk Muellere746fc22013-06-29 16:29:29 +020016from __future__ import print_function
17
Jay Pipes7f757632011-12-02 15:53:32 -050018import os
Jay Pipes3f981df2012-03-27 18:59:44 -040019
Matthew Treinish90aedd12013-02-25 17:56:49 -050020from oslo.config import cfg
21
Matthew Treinishf4a9b0f2013-07-26 16:58:26 -040022from tempest.openstack.common import log as logging
Jay Pipes7f757632011-12-02 15:53:32 -050023
Daryl Walleck1465d612011-11-02 02:22:15 -050024
DennyZhang88a2dd82013-10-07 12:55:35 -050025def register_opt_group(conf, opt_group, options):
26 conf.register_group(opt_group)
27 for opt in options:
28 conf.register_opt(opt, group=opt_group.name)
29
30
Matthew Treinish39e48ef2012-12-21 13:36:15 -050031identity_group = cfg.OptGroup(name='identity',
32 title="Keystone Configuration Options")
Daryl Walleck1465d612011-11-02 02:22:15 -050033
Matthew Treinish39e48ef2012-12-21 13:36:15 -050034IdentityGroup = [
35 cfg.StrOpt('catalog_type',
36 default='identity',
37 help="Catalog type of the Identity service."),
Jay Pipescd8eaec2013-01-16 21:03:48 -050038 cfg.BoolOpt('disable_ssl_certificate_validation',
39 default=False,
40 help="Set to True if using self-signed SSL certificates."),
Jay Pipes7c88eb22013-01-16 21:32:43 -050041 cfg.StrOpt('uri',
42 default=None,
Brant Knudsonc7ca3342013-03-28 21:08:50 -050043 help="Full URI of the OpenStack Identity API (Keystone), v2"),
44 cfg.StrOpt('uri_v3',
45 help='Full URI of the OpenStack Identity API (Keystone), v3'),
Matthew Treinish39e48ef2012-12-21 13:36:15 -050046 cfg.StrOpt('region',
Attila Fazekascadcb1f2013-01-21 23:10:53 +010047 default='RegionOne',
Arata Notsu8f440392013-09-13 16:14:20 +090048 help="The identity region name to use. Also used as the other "
49 "services' region name unless they are set explicitly. "
50 "If no such region is found in the service catalog, the "
51 "first found one is used."),
Attila Fazekascadcb1f2013-01-21 23:10:53 +010052 cfg.StrOpt('username',
53 default='demo',
54 help="Username to use for Nova API requests."),
55 cfg.StrOpt('tenant_name',
56 default='demo',
57 help="Tenant name to use for Nova API requests."),
Russell Sim7f894a52013-09-13 10:35:21 +100058 cfg.StrOpt('admin_role',
59 default='admin',
60 help="Role required to administrate keystone."),
Attila Fazekascadcb1f2013-01-21 23:10:53 +010061 cfg.StrOpt('password',
62 default='pass',
63 help="API key to use when authenticating.",
64 secret=True),
65 cfg.StrOpt('alt_username',
66 default=None,
67 help="Username of alternate user to use for Nova API "
68 "requests."),
69 cfg.StrOpt('alt_tenant_name',
70 default=None,
71 help="Alternate user's Tenant name to use for Nova API "
72 "requests."),
73 cfg.StrOpt('alt_password',
74 default=None,
75 help="API key to use when authenticating as alternate user.",
76 secret=True),
77 cfg.StrOpt('admin_username',
78 default='admin',
Dirk Mueller14bd5622014-01-14 19:33:05 +010079 help="Administrative Username to use for "
Attila Fazekascadcb1f2013-01-21 23:10:53 +010080 "Keystone API requests."),
81 cfg.StrOpt('admin_tenant_name',
82 default='admin',
83 help="Administrative Tenant name to use for Keystone API "
84 "requests."),
85 cfg.StrOpt('admin_password',
86 default='pass',
87 help="API key to use when authenticating as admin.",
88 secret=True),
Matthew Treinish39e48ef2012-12-21 13:36:15 -050089]
Jay Pipes3f981df2012-03-27 18:59:44 -040090
Matthew Treinishd5021a72014-01-09 18:42:51 +000091identity_feature_group = cfg.OptGroup(name='identity-feature-enabled',
92 title='Enabled Identity Features')
93
94IdentityFeatureGroup = [
95 cfg.BoolOpt('trust',
96 default=True,
97 help='Does the identity service have delegation and '
98 'impersonation enabled')
99]
100
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500101compute_group = cfg.OptGroup(name='compute',
102 title='Compute Service Options')
Rohit Karajgie1b050d2011-12-02 16:13:18 -0800103
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500104ComputeGroup = [
105 cfg.BoolOpt('allow_tenant_isolation',
106 default=False,
107 help="Allows test cases to create/destroy tenants and "
108 "users. This option enables isolated test cases and "
109 "better parallel execution, but also requires that "
110 "OpenStack Identity API admin credentials are known."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500111 cfg.StrOpt('image_ref',
112 default="{$IMAGE_ID}",
113 help="Valid secondary image reference to be used in tests."),
114 cfg.StrOpt('image_ref_alt',
115 default="{$IMAGE_ID_ALT}",
116 help="Valid secondary image reference to be used in tests."),
Ken'ichi Ohmichi35772602013-11-14 15:03:27 +0900117 cfg.StrOpt('flavor_ref',
118 default="1",
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500119 help="Valid primary flavor to use in tests."),
Ken'ichi Ohmichi35772602013-11-14 15:03:27 +0900120 cfg.StrOpt('flavor_ref_alt',
121 default="2",
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500122 help='Valid secondary flavor to be used in tests.'),
Maru Newbyaf292e82013-05-20 21:32:28 +0000123 cfg.StrOpt('image_ssh_user',
124 default="root",
125 help="User name used to authenticate to an instance."),
Ryan Hsucb2e1252013-09-03 21:44:49 -0700126 cfg.StrOpt('image_ssh_password',
127 default="password",
128 help="Password used to authenticate to an instance."),
Maru Newbyaf292e82013-05-20 21:32:28 +0000129 cfg.StrOpt('image_alt_ssh_user',
130 default="root",
131 help="User name used to authenticate to an instance using "
132 "the alternate image."),
Ryan Hsucb2e1252013-09-03 21:44:49 -0700133 cfg.StrOpt('image_alt_ssh_password',
134 default="password",
135 help="Password used to authenticate to an instance using "
136 "the alternate image."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500137 cfg.IntOpt('build_interval',
138 default=10,
139 help="Time in seconds between build status checks."),
140 cfg.IntOpt('build_timeout',
141 default=300,
142 help="Timeout in seconds to wait for an instance to build."),
143 cfg.BoolOpt('run_ssh',
144 default=False,
Derek Higgins85cd5142013-12-17 17:10:11 +0000145 help="Should the tests ssh to instances?"),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500146 cfg.StrOpt('ssh_user',
147 default='root',
148 help="User name used to authenticate to an instance."),
Nachi Ueno6d580be2013-07-24 10:58:11 -0700149 cfg.IntOpt('ping_timeout',
Darragh O'Reilly6b636672014-01-24 12:17:40 +0000150 default=120,
Nachi Ueno6d580be2013-07-24 10:58:11 -0700151 help="Timeout in seconds to wait for ping to "
152 "succeed."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500153 cfg.IntOpt('ssh_timeout',
154 default=300,
Chris Yeoh76916042013-02-27 16:25:25 +1030155 help="Timeout in seconds to wait for authentication to "
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500156 "succeed."),
Attila Fazekas0abbc952013-07-01 19:19:42 +0200157 cfg.IntOpt('ready_wait',
158 default=0,
DennyZhang8912d012013-09-25 18:08:34 -0500159 help="Additional wait time for clean state, when there is "
160 "no OS-EXT-STS extension available"),
Chris Yeoh76916042013-02-27 16:25:25 +1030161 cfg.IntOpt('ssh_channel_timeout',
162 default=60,
163 help="Timeout in seconds to wait for output from ssh "
164 "channel."),
Attila Fazekasb0661652013-05-08 13:01:36 +0200165 cfg.StrOpt('fixed_network_name',
166 default='private',
167 help="Visible fixed network name "),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500168 cfg.StrOpt('network_for_ssh',
169 default='public',
170 help="Network used for SSH connections."),
171 cfg.IntOpt('ip_version_for_ssh',
172 default=4,
173 help="IP version used for SSH connections."),
fujioka yuuichia11994e2013-07-09 11:19:51 +0900174 cfg.BoolOpt('use_floatingip_for_ssh',
175 default=True,
176 help="Dose the SSH uses Floating IP?"),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500177 cfg.StrOpt('catalog_type',
178 default='compute',
179 help="Catalog type of the Compute service."),
Arata Notsu8f440392013-09-13 16:14:20 +0900180 cfg.StrOpt('region',
181 default='',
182 help="The compute region name to use. If empty, the value "
183 "of identity.region is used instead. If no such region "
184 "is found in the service catalog, the first found one is "
185 "used."),
ivan-zhu8f992be2013-07-31 14:56:58 +0800186 cfg.StrOpt('catalog_v3_type',
187 default='computev3',
188 help="Catalog type of the Compute v3 service."),
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100189 cfg.StrOpt('path_to_private_key',
190 default=None,
191 help="Path to a private key file for SSH access to remote "
192 "hosts"),
Ryan Hsucb2e1252013-09-03 21:44:49 -0700193 cfg.StrOpt('volume_device_name',
194 default='vdb',
195 help="Expected device name when a volume is attached to "
Ken'ichi Ohmichi39437e22013-10-06 00:21:38 +0900196 "an instance"),
197 cfg.IntOpt('shelved_offload_time',
198 default=0,
199 help='Time in seconds before a shelved instance is eligible '
200 'for removing from a host. -1 never offload, 0 offload '
201 'when shelved. This time should be the same as the time '
202 'of nova.conf, and some tests will run for as long as the '
203 'time.')
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500204]
Rohit Karajgie1b050d2011-12-02 16:13:18 -0800205
Matthew Treinishd5c96022013-10-17 21:51:23 +0000206compute_features_group = cfg.OptGroup(name='compute-feature-enabled',
207 title="Enabled Compute Service Features")
208
209ComputeFeaturesGroup = [
ivan-zhu8f992be2013-07-31 14:56:58 +0800210 cfg.BoolOpt('api_v3',
Chris Yeohfbc15de2013-11-26 10:20:08 +1030211 default=True,
ivan-zhu8f992be2013-07-31 14:56:58 +0800212 help="If false, skip all nova v3 tests."),
Matthew Treinishd5c96022013-10-17 21:51:23 +0000213 cfg.BoolOpt('disk_config',
214 default=True,
215 help="If false, skip disk config tests"),
Matthew Treinishe3d26142013-11-26 19:14:58 +0000216 cfg.ListOpt('api_extensions',
217 default=['all'],
218 help='A list of enabled extensions with a special entry all '
219 'which indicates every extension is enabled'),
220 cfg.ListOpt('api_v3_extensions',
221 default=['all'],
222 help='A list of enabled v3 extensions with a special entry all'
223 ' which indicates every extension is enabled'),
Matthew Treinishd5c96022013-10-17 21:51:23 +0000224 cfg.BoolOpt('change_password',
225 default=False,
226 help="Does the test environment support changing the admin "
227 "password?"),
228 cfg.BoolOpt('create_image',
229 default=False,
230 help="Does the test environment support snapshots?"),
231 cfg.BoolOpt('resize',
232 default=False,
233 help="Does the test environment support resizing?"),
234 cfg.BoolOpt('live_migration',
235 default=False,
236 help="Does the test environment support live migration "
237 "available?"),
238 cfg.BoolOpt('block_migration_for_live_migration',
239 default=False,
240 help="Does the test environment use block devices for live "
241 "migration"),
242 cfg.BoolOpt('block_migrate_cinder_iscsi',
243 default=False,
244 help="Does the test environment block migration support "
245 "cinder iSCSI volumes")
246]
247
248
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500249compute_admin_group = cfg.OptGroup(name='compute-admin',
250 title="Compute Admin Options")
donald-ngo7fb1efa2011-12-13 17:17:36 -0800251
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500252ComputeAdminGroup = [
253 cfg.StrOpt('username',
254 default='admin',
255 help="Administrative Username to use for Nova API requests."),
256 cfg.StrOpt('tenant_name',
257 default='admin',
258 help="Administrative Tenant name to use for Nova API "
259 "requests."),
260 cfg.StrOpt('password',
261 default='pass',
262 help="API key to use when authenticating as admin.",
263 secret=True),
264]
Daryl Walleck587385b2012-03-03 13:00:26 -0600265
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500266image_group = cfg.OptGroup(name='image',
267 title="Image Service Options")
Jay Pipesf38eaac2012-06-21 13:37:35 -0400268
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500269ImageGroup = [
Matthew Treinish72ea4422013-02-07 14:42:49 -0500270 cfg.StrOpt('catalog_type',
271 default='image',
Sean Dague83401992013-05-06 17:46:36 -0400272 help='Catalog type of the Image service.'),
Arata Notsu8f440392013-09-13 16:14:20 +0900273 cfg.StrOpt('region',
274 default='',
275 help="The image region name to use. If empty, the value "
276 "of identity.region is used instead. If no such region "
277 "is found in the service catalog, the first found one is "
278 "used."),
Sean Dague83401992013-05-06 17:46:36 -0400279 cfg.StrOpt('http_image',
280 default='http://download.cirros-cloud.net/0.3.1/'
281 'cirros-0.3.1-x86_64-uec.tar.gz',
DennyZhang8912d012013-09-25 18:08:34 -0500282 help='http accessible image')
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500283]
Jay Pipesf38eaac2012-06-21 13:37:35 -0400284
Matthew Treinish2b5287d2013-10-22 17:40:34 +0000285image_feature_group = cfg.OptGroup(name='image-feature-enabled',
286 title='Enabled image service features')
287
288ImageFeaturesGroup = [
289 cfg.BoolOpt('api_v2',
290 default=True,
291 help="Is the v2 image API enabled"),
292 cfg.BoolOpt('api_v1',
293 default=True,
294 help="Is the v1 image API enabled"),
295]
Jay Pipesf38eaac2012-06-21 13:37:35 -0400296
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500297network_group = cfg.OptGroup(name='network',
298 title='Network Service Options')
Daryl Walleck587385b2012-03-03 13:00:26 -0600299
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500300NetworkGroup = [
301 cfg.StrOpt('catalog_type',
302 default='network',
Mark McClainf2982e82013-07-06 17:48:03 -0400303 help='Catalog type of the Neutron service.'),
Arata Notsu8f440392013-09-13 16:14:20 +0900304 cfg.StrOpt('region',
305 default='',
306 help="The network region name to use. If empty, the value "
307 "of identity.region is used instead. If no such region "
308 "is found in the service catalog, the first found one is "
309 "used."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500310 cfg.StrOpt('tenant_network_cidr',
311 default="10.100.0.0/16",
312 help="The cidr block to allocate tenant networks from"),
313 cfg.IntOpt('tenant_network_mask_bits',
Attila Fazekas8ea181b2013-07-13 16:26:14 +0200314 default=28,
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500315 help="The mask bits for tenant networks"),
316 cfg.BoolOpt('tenant_networks_reachable',
317 default=False,
318 help="Whether tenant network connectivity should be "
319 "evaluated directly"),
320 cfg.StrOpt('public_network_id',
321 default="",
322 help="Id of the public network that provides external "
323 "connectivity"),
324 cfg.StrOpt('public_router_id',
325 default="",
326 help="Id of the public router that provides external "
327 "connectivity"),
328]
Jay Pipes3f981df2012-03-27 18:59:44 -0400329
Matthew Treinishe3d26142013-11-26 19:14:58 +0000330network_feature_group = cfg.OptGroup(name='network-feature-enabled',
331 title='Enabled network service features')
332
333NetworkFeaturesGroup = [
334 cfg.ListOpt('api_extensions',
335 default=['all'],
336 help='A list of enabled extensions with a special entry all '
337 'which indicates every extension is enabled'),
338]
339
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500340volume_group = cfg.OptGroup(name='volume',
341 title='Block Storage Options')
Daryl Walleck587385b2012-03-03 13:00:26 -0600342
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500343VolumeGroup = [
344 cfg.IntOpt('build_interval',
345 default=10,
346 help='Time in seconds between volume availability checks.'),
347 cfg.IntOpt('build_timeout',
348 default=300,
349 help='Timeout in seconds to wait for a volume to become'
350 'available.'),
351 cfg.StrOpt('catalog_type',
Matthew Treinisheb724512013-10-25 15:12:59 +0000352 default='volume',
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500353 help="Catalog type of the Volume Service"),
Arata Notsu8f440392013-09-13 16:14:20 +0900354 cfg.StrOpt('region',
355 default='',
356 help="The volume region name to use. If empty, the value "
357 "of identity.region is used instead. If no such region "
358 "is found in the service catalog, the first found one is "
359 "used."),
Jérôme Gallard86551ce2013-03-08 11:41:26 +0100360 cfg.StrOpt('backend1_name',
Giulio Fidentef4fa8942013-05-28 18:48:03 +0200361 default='BACKEND_1',
Jérôme Gallard86551ce2013-03-08 11:41:26 +0100362 help="Name of the backend1 (must be declared in cinder.conf)"),
363 cfg.StrOpt('backend2_name',
Giulio Fidentef4fa8942013-05-28 18:48:03 +0200364 default='BACKEND_2',
Jérôme Gallard86551ce2013-03-08 11:41:26 +0100365 help="Name of the backend2 (must be declared in cinder.conf)"),
Adam Gandelman827ad332013-06-24 17:04:09 -0700366 cfg.StrOpt('storage_protocol',
367 default='iSCSI',
368 help='Backend protocol to target when creating volume types'),
369 cfg.StrOpt('vendor_name',
370 default='Open Source',
371 help='Backend vendor to target when creating volume types'),
Ryan Hsua67f4632013-08-29 16:03:06 -0700372 cfg.StrOpt('disk_format',
373 default='raw',
374 help='Disk format to use when copying a volume to image'),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500375]
K Jonathan Harkerd6ba4b42012-12-18 13:50:47 -0800376
Matthew Treinishd5c96022013-10-17 21:51:23 +0000377volume_feature_group = cfg.OptGroup(name='volume-feature-enabled',
378 title='Enabled Cinder Features')
379
380VolumeFeaturesGroup = [
381 cfg.BoolOpt('multi_backend',
382 default=False,
Matthew Treinishe3d26142013-11-26 19:14:58 +0000383 help="Runs Cinder multi-backend test (requires 2 backends)"),
384 cfg.ListOpt('api_extensions',
385 default=['all'],
386 help='A list of enabled extensions with a special entry all '
387 'which indicates every extension is enabled'),
Zhi Kun Liubb363a22013-11-28 18:47:39 +0800388 cfg.BoolOpt('api_v1',
389 default=True,
390 help="Is the v1 volume API enabled"),
Matthew Treinishd5c96022013-10-17 21:51:23 +0000391]
392
Daryl Walleck587385b2012-03-03 13:00:26 -0600393
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500394object_storage_group = cfg.OptGroup(name='object-storage',
395 title='Object Storage Service Options')
Attila Fazekasa23f5002012-10-23 19:32:45 +0200396
DennyZhang1e71b612013-09-26 12:35:40 -0500397ObjectStoreGroup = [
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500398 cfg.StrOpt('catalog_type',
399 default='object-store',
400 help="Catalog type of the Object-Storage service."),
Arata Notsu8f440392013-09-13 16:14:20 +0900401 cfg.StrOpt('region',
402 default='',
403 help="The object-storage region name to use. If empty, the "
404 "value of identity.region is used instead. If no such "
405 "region is found in the service catalog, the first found "
406 "one is used."),
Matthew Treinishf319a732013-10-24 21:39:24 +0000407 cfg.IntOpt('container_sync_timeout',
nayna-patelb4989b32013-01-09 06:25:13 +0000408 default=120,
Fabien Boucher2178d312013-12-31 15:38:57 +0100409 help="Number of seconds to time on waiting for a container "
nayna-patelb4989b32013-01-09 06:25:13 +0000410 "to container synchronization complete."),
Matthew Treinishf319a732013-10-24 21:39:24 +0000411 cfg.IntOpt('container_sync_interval',
nayna-patelb4989b32013-01-09 06:25:13 +0000412 default=5,
Fabien Boucher2178d312013-12-31 15:38:57 +0100413 help="Number of seconds to wait while looping to check the "
nayna-patelb4989b32013-01-09 06:25:13 +0000414 "status of a container to container synchronization"),
Matthew Treinish3fdb80c2013-08-15 11:13:19 -0400415 cfg.StrOpt('operator_role',
416 default='Member',
417 help="Role to add to users created for swift tests to "
418 "enable creating containers"),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500419]
Attila Fazekasa23f5002012-10-23 19:32:45 +0200420
Matthew Treinishd5c96022013-10-17 21:51:23 +0000421object_storage_feature_group = cfg.OptGroup(
422 name='object-storage-feature-enabled',
423 title='Enabled object-storage features')
424
425ObjectStoreFeaturesGroup = [
Matthew Treinish20345382013-12-13 17:04:23 +0000426 cfg.ListOpt('discoverable_apis',
427 default=['all'],
428 help="A list of the enabled optional discoverable apis. "
429 "A single entry, all, indicates that all of these "
430 "features are expected to be 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)
Matthew Treinishd5021a72014-01-09 18:42:51 +0000735 register_opt_group(cfg.CONF, identity_feature_group,
736 IdentityFeatureGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500737 register_opt_group(cfg.CONF, image_group, ImageGroup)
Matthew Treinish2b5287d2013-10-22 17:40:34 +0000738 register_opt_group(cfg.CONF, image_feature_group, ImageFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500739 register_opt_group(cfg.CONF, network_group, NetworkGroup)
Matthew Treinishe3d26142013-11-26 19:14:58 +0000740 register_opt_group(cfg.CONF, network_feature_group,
741 NetworkFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500742 register_opt_group(cfg.CONF, volume_group, VolumeGroup)
Matthew Treinishd5c96022013-10-17 21:51:23 +0000743 register_opt_group(cfg.CONF, volume_feature_group,
744 VolumeFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500745 register_opt_group(cfg.CONF, object_storage_group, ObjectStoreGroup)
Matthew Treinishd5c96022013-10-17 21:51:23 +0000746 register_opt_group(cfg.CONF, object_storage_feature_group,
747 ObjectStoreFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500748 register_opt_group(cfg.CONF, orchestration_group, OrchestrationGroup)
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100749 register_opt_group(cfg.CONF, telemetry_group, TelemetryGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500750 register_opt_group(cfg.CONF, dashboard_group, DashboardGroup)
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400751 register_opt_group(cfg.CONF, data_processing_group,
752 DataProcessingGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500753 register_opt_group(cfg.CONF, boto_group, BotoGroup)
754 register_opt_group(cfg.CONF, compute_admin_group, ComputeAdminGroup)
755 register_opt_group(cfg.CONF, stress_group, StressGroup)
756 register_opt_group(cfg.CONF, scenario_group, ScenarioGroup)
757 register_opt_group(cfg.CONF, service_available_group,
758 ServiceAvailableGroup)
759 register_opt_group(cfg.CONF, debug_group, DebugGroup)
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300760 register_opt_group(cfg.CONF, baremetal_group, BaremetalGroup)
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000761 register_opt_group(cfg.CONF, input_scenario_group, InputScenarioGroup)
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500762 self.compute = cfg.CONF.compute
Matthew Treinishd5c96022013-10-17 21:51:23 +0000763 self.compute_feature_enabled = cfg.CONF['compute-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500764 self.identity = cfg.CONF.identity
Matthew Treinishd5021a72014-01-09 18:42:51 +0000765 self.identity_feature_enabled = cfg.CONF['identity-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500766 self.images = cfg.CONF.image
Matthew Treinish2b5287d2013-10-22 17:40:34 +0000767 self.image_feature_enabled = cfg.CONF['image-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500768 self.network = cfg.CONF.network
Matthew Treinishe3d26142013-11-26 19:14:58 +0000769 self.network_feature_enabled = cfg.CONF['network-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500770 self.volume = cfg.CONF.volume
Matthew Treinishd5c96022013-10-17 21:51:23 +0000771 self.volume_feature_enabled = cfg.CONF['volume-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500772 self.object_storage = cfg.CONF['object-storage']
Matthew Treinishd5c96022013-10-17 21:51:23 +0000773 self.object_storage_feature_enabled = cfg.CONF[
774 'object-storage-feature-enabled']
Steve Bakerc60e4e32013-05-06 15:22:41 +1200775 self.orchestration = cfg.CONF.orchestration
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100776 self.telemetry = cfg.CONF.telemetry
Julie Pichond1017642013-07-24 16:37:23 +0100777 self.dashboard = cfg.CONF.dashboard
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400778 self.data_processing = cfg.CONF.data_processing
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500779 self.boto = cfg.CONF.boto
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100780 self.compute_admin = cfg.CONF['compute-admin']
Matthew Treinish615ea6a2013-02-25 17:26:59 -0500781 self.stress = cfg.CONF.stress
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900782 self.scenario = cfg.CONF.scenario
Matthew Treinish4c412922013-07-16 15:27:42 -0400783 self.service_available = cfg.CONF.service_available
Attila Fazekas5fae7a32013-09-25 16:52:44 +0200784 self.debug = cfg.CONF.debug
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300785 self.baremetal = cfg.CONF.baremetal
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000786 self.input_scenario = cfg.CONF['input-scenario']
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100787 if not self.compute_admin.username:
788 self.compute_admin.username = self.identity.admin_username
789 self.compute_admin.password = self.identity.admin_password
790 self.compute_admin.tenant_name = self.identity.admin_tenant_name
Sean Dague86bd8422013-12-20 09:56:44 -0500791
792
793class TempestConfigProxy(object):
794 _config = None
795
796 def __getattr__(self, attr):
797 if not self._config:
Sean Dague3b9b1f32013-12-20 17:04:54 -0500798 self._config = TempestConfigPrivate()
Sean Dague86bd8422013-12-20 09:56:44 -0500799
800 return getattr(self._config, attr)
801
802
803CONF = TempestConfigProxy()