blob: a632f84a8cb515e8a5fda70acbeb6463bd310179 [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'),
Andrea Frittoli8bbdb162014-01-06 11:06:13 +000046 cfg.StrOpt('auth_version',
47 default='v2',
48 help="Identity API version to be used for authentication "
49 "for API tests. Planned to extend to tenant isolation, "
50 "scenario tests and CLI tests."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -050051 cfg.StrOpt('region',
Attila Fazekascadcb1f2013-01-21 23:10:53 +010052 default='RegionOne',
Arata Notsu8f440392013-09-13 16:14:20 +090053 help="The identity region name to use. Also used as the other "
54 "services' region name unless they are set explicitly. "
55 "If no such region is found in the service catalog, the "
56 "first found one is used."),
Attila Fazekascadcb1f2013-01-21 23:10:53 +010057 cfg.StrOpt('username',
58 default='demo',
59 help="Username to use for Nova API requests."),
60 cfg.StrOpt('tenant_name',
61 default='demo',
62 help="Tenant name to use for Nova API requests."),
Russell Sim7f894a52013-09-13 10:35:21 +100063 cfg.StrOpt('admin_role',
64 default='admin',
65 help="Role required to administrate keystone."),
Attila Fazekascadcb1f2013-01-21 23:10:53 +010066 cfg.StrOpt('password',
67 default='pass',
68 help="API key to use when authenticating.",
69 secret=True),
70 cfg.StrOpt('alt_username',
71 default=None,
72 help="Username of alternate user to use for Nova API "
73 "requests."),
74 cfg.StrOpt('alt_tenant_name',
75 default=None,
76 help="Alternate user's Tenant name to use for Nova API "
77 "requests."),
78 cfg.StrOpt('alt_password',
79 default=None,
80 help="API key to use when authenticating as alternate user.",
81 secret=True),
82 cfg.StrOpt('admin_username',
83 default='admin',
Dirk Mueller14bd5622014-01-14 19:33:05 +010084 help="Administrative Username to use for "
Attila Fazekascadcb1f2013-01-21 23:10:53 +010085 "Keystone API requests."),
86 cfg.StrOpt('admin_tenant_name',
87 default='admin',
88 help="Administrative Tenant name to use for Keystone API "
89 "requests."),
90 cfg.StrOpt('admin_password',
91 default='pass',
92 help="API key to use when authenticating as admin.",
93 secret=True),
Matthew Treinish39e48ef2012-12-21 13:36:15 -050094]
Jay Pipes3f981df2012-03-27 18:59:44 -040095
Matthew Treinishd5021a72014-01-09 18:42:51 +000096identity_feature_group = cfg.OptGroup(name='identity-feature-enabled',
97 title='Enabled Identity Features')
98
99IdentityFeatureGroup = [
100 cfg.BoolOpt('trust',
101 default=True,
102 help='Does the identity service have delegation and '
103 'impersonation enabled')
104]
105
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500106compute_group = cfg.OptGroup(name='compute',
107 title='Compute Service Options')
Rohit Karajgie1b050d2011-12-02 16:13:18 -0800108
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500109ComputeGroup = [
110 cfg.BoolOpt('allow_tenant_isolation',
111 default=False,
112 help="Allows test cases to create/destroy tenants and "
113 "users. This option enables isolated test cases and "
114 "better parallel execution, but also requires that "
115 "OpenStack Identity API admin credentials are known."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500116 cfg.StrOpt('image_ref',
117 default="{$IMAGE_ID}",
118 help="Valid secondary image reference to be used in tests."),
119 cfg.StrOpt('image_ref_alt',
120 default="{$IMAGE_ID_ALT}",
121 help="Valid secondary image reference to be used in tests."),
Ken'ichi Ohmichi35772602013-11-14 15:03:27 +0900122 cfg.StrOpt('flavor_ref',
123 default="1",
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500124 help="Valid primary flavor to use in tests."),
Ken'ichi Ohmichi35772602013-11-14 15:03:27 +0900125 cfg.StrOpt('flavor_ref_alt',
126 default="2",
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500127 help='Valid secondary flavor to be used in tests.'),
Maru Newbyaf292e82013-05-20 21:32:28 +0000128 cfg.StrOpt('image_ssh_user',
129 default="root",
130 help="User name used to authenticate to an instance."),
Ryan Hsucb2e1252013-09-03 21:44:49 -0700131 cfg.StrOpt('image_ssh_password',
132 default="password",
133 help="Password used to authenticate to an instance."),
Maru Newbyaf292e82013-05-20 21:32:28 +0000134 cfg.StrOpt('image_alt_ssh_user',
135 default="root",
136 help="User name used to authenticate to an instance using "
137 "the alternate image."),
Ryan Hsucb2e1252013-09-03 21:44:49 -0700138 cfg.StrOpt('image_alt_ssh_password',
139 default="password",
140 help="Password used to authenticate to an instance using "
141 "the alternate image."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500142 cfg.IntOpt('build_interval',
143 default=10,
144 help="Time in seconds between build status checks."),
145 cfg.IntOpt('build_timeout',
146 default=300,
147 help="Timeout in seconds to wait for an instance to build."),
148 cfg.BoolOpt('run_ssh',
149 default=False,
Derek Higgins85cd5142013-12-17 17:10:11 +0000150 help="Should the tests ssh to instances?"),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500151 cfg.StrOpt('ssh_user',
152 default='root',
153 help="User name used to authenticate to an instance."),
Nachi Ueno6d580be2013-07-24 10:58:11 -0700154 cfg.IntOpt('ping_timeout',
Darragh O'Reilly6b636672014-01-24 12:17:40 +0000155 default=120,
Nachi Ueno6d580be2013-07-24 10:58:11 -0700156 help="Timeout in seconds to wait for ping to "
157 "succeed."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500158 cfg.IntOpt('ssh_timeout',
159 default=300,
Chris Yeoh76916042013-02-27 16:25:25 +1030160 help="Timeout in seconds to wait for authentication to "
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500161 "succeed."),
Attila Fazekas0abbc952013-07-01 19:19:42 +0200162 cfg.IntOpt('ready_wait',
163 default=0,
DennyZhang8912d012013-09-25 18:08:34 -0500164 help="Additional wait time for clean state, when there is "
165 "no OS-EXT-STS extension available"),
Chris Yeoh76916042013-02-27 16:25:25 +1030166 cfg.IntOpt('ssh_channel_timeout',
167 default=60,
168 help="Timeout in seconds to wait for output from ssh "
169 "channel."),
Attila Fazekasb0661652013-05-08 13:01:36 +0200170 cfg.StrOpt('fixed_network_name',
171 default='private',
172 help="Visible fixed network name "),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500173 cfg.StrOpt('network_for_ssh',
174 default='public',
175 help="Network used for SSH connections."),
176 cfg.IntOpt('ip_version_for_ssh',
177 default=4,
178 help="IP version used for SSH connections."),
fujioka yuuichia11994e2013-07-09 11:19:51 +0900179 cfg.BoolOpt('use_floatingip_for_ssh',
180 default=True,
181 help="Dose the SSH uses Floating IP?"),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500182 cfg.StrOpt('catalog_type',
183 default='compute',
184 help="Catalog type of the Compute service."),
Arata Notsu8f440392013-09-13 16:14:20 +0900185 cfg.StrOpt('region',
186 default='',
187 help="The compute region name to use. If empty, the value "
188 "of identity.region is used instead. If no such region "
189 "is found in the service catalog, the first found one is "
190 "used."),
ivan-zhu8f992be2013-07-31 14:56:58 +0800191 cfg.StrOpt('catalog_v3_type',
192 default='computev3',
193 help="Catalog type of the Compute v3 service."),
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100194 cfg.StrOpt('path_to_private_key',
195 default=None,
196 help="Path to a private key file for SSH access to remote "
197 "hosts"),
Ryan Hsucb2e1252013-09-03 21:44:49 -0700198 cfg.StrOpt('volume_device_name',
199 default='vdb',
200 help="Expected device name when a volume is attached to "
Ken'ichi Ohmichi39437e22013-10-06 00:21:38 +0900201 "an instance"),
202 cfg.IntOpt('shelved_offload_time',
203 default=0,
204 help='Time in seconds before a shelved instance is eligible '
205 'for removing from a host. -1 never offload, 0 offload '
206 'when shelved. This time should be the same as the time '
207 'of nova.conf, and some tests will run for as long as the '
208 'time.')
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500209]
Rohit Karajgie1b050d2011-12-02 16:13:18 -0800210
Matthew Treinishd5c96022013-10-17 21:51:23 +0000211compute_features_group = cfg.OptGroup(name='compute-feature-enabled',
212 title="Enabled Compute Service Features")
213
214ComputeFeaturesGroup = [
ivan-zhu8f992be2013-07-31 14:56:58 +0800215 cfg.BoolOpt('api_v3',
Chris Yeohfbc15de2013-11-26 10:20:08 +1030216 default=True,
ivan-zhu8f992be2013-07-31 14:56:58 +0800217 help="If false, skip all nova v3 tests."),
Matthew Treinishd5c96022013-10-17 21:51:23 +0000218 cfg.BoolOpt('disk_config',
219 default=True,
220 help="If false, skip disk config tests"),
Matthew Treinishe3d26142013-11-26 19:14:58 +0000221 cfg.ListOpt('api_extensions',
222 default=['all'],
223 help='A list of enabled extensions with a special entry all '
224 'which indicates every extension is enabled'),
225 cfg.ListOpt('api_v3_extensions',
226 default=['all'],
227 help='A list of enabled v3 extensions with a special entry all'
228 ' which indicates every extension is enabled'),
Matthew Treinishd5c96022013-10-17 21:51:23 +0000229 cfg.BoolOpt('change_password',
230 default=False,
231 help="Does the test environment support changing the admin "
232 "password?"),
233 cfg.BoolOpt('create_image',
234 default=False,
235 help="Does the test environment support snapshots?"),
236 cfg.BoolOpt('resize',
237 default=False,
238 help="Does the test environment support resizing?"),
239 cfg.BoolOpt('live_migration',
240 default=False,
241 help="Does the test environment support live migration "
242 "available?"),
243 cfg.BoolOpt('block_migration_for_live_migration',
244 default=False,
245 help="Does the test environment use block devices for live "
246 "migration"),
247 cfg.BoolOpt('block_migrate_cinder_iscsi',
248 default=False,
249 help="Does the test environment block migration support "
250 "cinder iSCSI volumes")
251]
252
253
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500254compute_admin_group = cfg.OptGroup(name='compute-admin',
255 title="Compute Admin Options")
donald-ngo7fb1efa2011-12-13 17:17:36 -0800256
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500257ComputeAdminGroup = [
258 cfg.StrOpt('username',
259 default='admin',
260 help="Administrative Username to use for Nova API requests."),
261 cfg.StrOpt('tenant_name',
262 default='admin',
263 help="Administrative Tenant name to use for Nova API "
264 "requests."),
265 cfg.StrOpt('password',
266 default='pass',
267 help="API key to use when authenticating as admin.",
268 secret=True),
269]
Daryl Walleck587385b2012-03-03 13:00:26 -0600270
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500271image_group = cfg.OptGroup(name='image',
272 title="Image Service Options")
Jay Pipesf38eaac2012-06-21 13:37:35 -0400273
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500274ImageGroup = [
Matthew Treinish72ea4422013-02-07 14:42:49 -0500275 cfg.StrOpt('catalog_type',
276 default='image',
Sean Dague83401992013-05-06 17:46:36 -0400277 help='Catalog type of the Image service.'),
Arata Notsu8f440392013-09-13 16:14:20 +0900278 cfg.StrOpt('region',
279 default='',
280 help="The image region name to use. If empty, the value "
281 "of identity.region is used instead. If no such region "
282 "is found in the service catalog, the first found one is "
283 "used."),
Sean Dague83401992013-05-06 17:46:36 -0400284 cfg.StrOpt('http_image',
285 default='http://download.cirros-cloud.net/0.3.1/'
286 'cirros-0.3.1-x86_64-uec.tar.gz',
DennyZhang8912d012013-09-25 18:08:34 -0500287 help='http accessible image')
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500288]
Jay Pipesf38eaac2012-06-21 13:37:35 -0400289
Matthew Treinish2b5287d2013-10-22 17:40:34 +0000290image_feature_group = cfg.OptGroup(name='image-feature-enabled',
291 title='Enabled image service features')
292
293ImageFeaturesGroup = [
294 cfg.BoolOpt('api_v2',
295 default=True,
296 help="Is the v2 image API enabled"),
297 cfg.BoolOpt('api_v1',
298 default=True,
299 help="Is the v1 image API enabled"),
300]
Jay Pipesf38eaac2012-06-21 13:37:35 -0400301
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500302network_group = cfg.OptGroup(name='network',
303 title='Network Service Options')
Daryl Walleck587385b2012-03-03 13:00:26 -0600304
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500305NetworkGroup = [
306 cfg.StrOpt('catalog_type',
307 default='network',
Mark McClainf2982e82013-07-06 17:48:03 -0400308 help='Catalog type of the Neutron service.'),
Arata Notsu8f440392013-09-13 16:14:20 +0900309 cfg.StrOpt('region',
310 default='',
311 help="The network region name to use. If empty, the value "
312 "of identity.region is used instead. If no such region "
313 "is found in the service catalog, the first found one is "
314 "used."),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500315 cfg.StrOpt('tenant_network_cidr',
316 default="10.100.0.0/16",
317 help="The cidr block to allocate tenant networks from"),
318 cfg.IntOpt('tenant_network_mask_bits',
Attila Fazekas8ea181b2013-07-13 16:26:14 +0200319 default=28,
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500320 help="The mask bits for tenant networks"),
321 cfg.BoolOpt('tenant_networks_reachable',
322 default=False,
323 help="Whether tenant network connectivity should be "
324 "evaluated directly"),
325 cfg.StrOpt('public_network_id',
326 default="",
327 help="Id of the public network that provides external "
328 "connectivity"),
329 cfg.StrOpt('public_router_id',
330 default="",
331 help="Id of the public router that provides external "
332 "connectivity"),
333]
Jay Pipes3f981df2012-03-27 18:59:44 -0400334
Matthew Treinishe3d26142013-11-26 19:14:58 +0000335network_feature_group = cfg.OptGroup(name='network-feature-enabled',
336 title='Enabled network service features')
337
338NetworkFeaturesGroup = [
339 cfg.ListOpt('api_extensions',
340 default=['all'],
341 help='A list of enabled extensions with a special entry all '
342 'which indicates every extension is enabled'),
343]
344
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500345volume_group = cfg.OptGroup(name='volume',
346 title='Block Storage Options')
Daryl Walleck587385b2012-03-03 13:00:26 -0600347
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500348VolumeGroup = [
349 cfg.IntOpt('build_interval',
350 default=10,
351 help='Time in seconds between volume availability checks.'),
352 cfg.IntOpt('build_timeout',
353 default=300,
354 help='Timeout in seconds to wait for a volume to become'
355 'available.'),
356 cfg.StrOpt('catalog_type',
Matthew Treinisheb724512013-10-25 15:12:59 +0000357 default='volume',
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500358 help="Catalog type of the Volume Service"),
Arata Notsu8f440392013-09-13 16:14:20 +0900359 cfg.StrOpt('region',
360 default='',
361 help="The volume region name to use. If empty, the value "
362 "of identity.region is used instead. If no such region "
363 "is found in the service catalog, the first found one is "
364 "used."),
Jérôme Gallard86551ce2013-03-08 11:41:26 +0100365 cfg.StrOpt('backend1_name',
Giulio Fidentef4fa8942013-05-28 18:48:03 +0200366 default='BACKEND_1',
Jérôme Gallard86551ce2013-03-08 11:41:26 +0100367 help="Name of the backend1 (must be declared in cinder.conf)"),
368 cfg.StrOpt('backend2_name',
Giulio Fidentef4fa8942013-05-28 18:48:03 +0200369 default='BACKEND_2',
Jérôme Gallard86551ce2013-03-08 11:41:26 +0100370 help="Name of the backend2 (must be declared in cinder.conf)"),
Adam Gandelman827ad332013-06-24 17:04:09 -0700371 cfg.StrOpt('storage_protocol',
372 default='iSCSI',
373 help='Backend protocol to target when creating volume types'),
374 cfg.StrOpt('vendor_name',
375 default='Open Source',
376 help='Backend vendor to target when creating volume types'),
Ryan Hsua67f4632013-08-29 16:03:06 -0700377 cfg.StrOpt('disk_format',
378 default='raw',
379 help='Disk format to use when copying a volume to image'),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500380]
K Jonathan Harkerd6ba4b42012-12-18 13:50:47 -0800381
Matthew Treinishd5c96022013-10-17 21:51:23 +0000382volume_feature_group = cfg.OptGroup(name='volume-feature-enabled',
383 title='Enabled Cinder Features')
384
385VolumeFeaturesGroup = [
386 cfg.BoolOpt('multi_backend',
387 default=False,
Matthew Treinishe3d26142013-11-26 19:14:58 +0000388 help="Runs Cinder multi-backend test (requires 2 backends)"),
389 cfg.ListOpt('api_extensions',
390 default=['all'],
391 help='A list of enabled extensions with a special entry all '
392 'which indicates every extension is enabled'),
Zhi Kun Liubb363a22013-11-28 18:47:39 +0800393 cfg.BoolOpt('api_v1',
394 default=True,
395 help="Is the v1 volume API enabled"),
Zhi Kun Liu8cc3c842014-01-07 10:44:34 +0800396 cfg.BoolOpt('api_v2',
397 default=True,
398 help="Is the v2 volume API enabled"),
Matthew Treinishd5c96022013-10-17 21:51:23 +0000399]
400
Daryl Walleck587385b2012-03-03 13:00:26 -0600401
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500402object_storage_group = cfg.OptGroup(name='object-storage',
403 title='Object Storage Service Options')
Attila Fazekasa23f5002012-10-23 19:32:45 +0200404
DennyZhang1e71b612013-09-26 12:35:40 -0500405ObjectStoreGroup = [
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500406 cfg.StrOpt('catalog_type',
407 default='object-store',
408 help="Catalog type of the Object-Storage service."),
Arata Notsu8f440392013-09-13 16:14:20 +0900409 cfg.StrOpt('region',
410 default='',
411 help="The object-storage region name to use. If empty, the "
412 "value of identity.region is used instead. If no such "
413 "region is found in the service catalog, the first found "
414 "one is used."),
Matthew Treinishf319a732013-10-24 21:39:24 +0000415 cfg.IntOpt('container_sync_timeout',
nayna-patelb4989b32013-01-09 06:25:13 +0000416 default=120,
Fabien Boucher2178d312013-12-31 15:38:57 +0100417 help="Number of seconds to time on waiting for a container "
nayna-patelb4989b32013-01-09 06:25:13 +0000418 "to container synchronization complete."),
Matthew Treinishf319a732013-10-24 21:39:24 +0000419 cfg.IntOpt('container_sync_interval',
nayna-patelb4989b32013-01-09 06:25:13 +0000420 default=5,
Fabien Boucher2178d312013-12-31 15:38:57 +0100421 help="Number of seconds to wait while looping to check the "
nayna-patelb4989b32013-01-09 06:25:13 +0000422 "status of a container to container synchronization"),
Matthew Treinish3fdb80c2013-08-15 11:13:19 -0400423 cfg.StrOpt('operator_role',
424 default='Member',
425 help="Role to add to users created for swift tests to "
426 "enable creating containers"),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500427]
Attila Fazekasa23f5002012-10-23 19:32:45 +0200428
Matthew Treinishd5c96022013-10-17 21:51:23 +0000429object_storage_feature_group = cfg.OptGroup(
430 name='object-storage-feature-enabled',
431 title='Enabled object-storage features')
432
433ObjectStoreFeaturesGroup = [
Matthew Treinish20345382013-12-13 17:04:23 +0000434 cfg.ListOpt('discoverable_apis',
435 default=['all'],
436 help="A list of the enabled optional discoverable apis. "
437 "A single entry, all, indicates that all of these "
438 "features are expected to be enabled"),
Matthew Treinishd5c96022013-10-17 21:51:23 +0000439]
440
Attila Fazekasa23f5002012-10-23 19:32:45 +0200441
Steve Bakerc60e4e32013-05-06 15:22:41 +1200442orchestration_group = cfg.OptGroup(name='orchestration',
443 title='Orchestration Service Options')
444
445OrchestrationGroup = [
446 cfg.StrOpt('catalog_type',
447 default='orchestration',
448 help="Catalog type of the Orchestration service."),
Arata Notsu8f440392013-09-13 16:14:20 +0900449 cfg.StrOpt('region',
450 default='',
451 help="The orchestration region name to use. If empty, the "
452 "value of identity.region is used instead. If no such "
453 "region is found in the service catalog, the first found "
454 "one is used."),
Steve Bakerc60e4e32013-05-06 15:22:41 +1200455 cfg.BoolOpt('allow_tenant_isolation',
456 default=False,
457 help="Allows test cases to create/destroy tenants and "
458 "users. This option enables isolated test cases and "
459 "better parallel execution, but also requires that "
460 "OpenStack Identity API admin credentials are known."),
461 cfg.IntOpt('build_interval',
462 default=1,
463 help="Time in seconds between build status checks."),
464 cfg.IntOpt('build_timeout',
465 default=300,
466 help="Timeout in seconds to wait for a stack to build."),
Steve Bakerc60e4e32013-05-06 15:22:41 +1200467 cfg.StrOpt('instance_type',
Steve Baker9e86b832013-05-22 15:40:28 +1200468 default='m1.micro',
Steve Bakerc60e4e32013-05-06 15:22:41 +1200469 help="Instance type for tests. Needs to be big enough for a "
470 "full OS plus the test workload"),
471 cfg.StrOpt('image_ref',
472 default=None,
473 help="Name of heat-cfntools enabled image to use when "
474 "launching test instances."),
475 cfg.StrOpt('keypair_name',
476 default=None,
477 help="Name of existing keypair to launch servers with."),
Clint Byrum71f27632013-09-09 11:41:32 -0700478 cfg.IntOpt('max_template_size',
Joe Gordon0e51b222013-10-24 14:11:10 +0100479 default=524288,
Clint Byrum71f27632013-09-09 11:41:32 -0700480 help="Value must match heat configuration of the same name."),
Steve Bakerc60e4e32013-05-06 15:22:41 +1200481]
482
483
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100484telemetry_group = cfg.OptGroup(name='telemetry',
485 title='Telemetry Service Options')
486
487TelemetryGroup = [
488 cfg.StrOpt('catalog_type',
489 default='metering',
490 help="Catalog type of the Telemetry service."),
491]
492
493
Julie Pichond1017642013-07-24 16:37:23 +0100494dashboard_group = cfg.OptGroup(name="dashboard",
495 title="Dashboard options")
496
497DashboardGroup = [
498 cfg.StrOpt('dashboard_url',
499 default='http://localhost/',
500 help="Where the dashboard can be found"),
501 cfg.StrOpt('login_url',
502 default='http://localhost/auth/login/',
503 help="Login page for the dashboard"),
504]
505
506
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400507data_processing_group = cfg.OptGroup(name="data_processing",
508 title="Data Processing options")
509
510DataProcessingGroup = [
511 cfg.StrOpt('catalog_type',
512 default='data_processing',
513 help="Catalog type of the data processing service.")
514]
515
516
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500517boto_group = cfg.OptGroup(name='boto',
518 title='EC2/S3 options')
DennyZhang1e71b612013-09-26 12:35:40 -0500519BotoGroup = [
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500520 cfg.StrOpt('ec2_url',
521 default="http://localhost:8773/services/Cloud",
522 help="EC2 URL"),
523 cfg.StrOpt('s3_url',
524 default="http://localhost:8080",
525 help="S3 URL"),
526 cfg.StrOpt('aws_secret',
527 default=None,
528 help="AWS Secret Key",
529 secret=True),
530 cfg.StrOpt('aws_access',
531 default=None,
532 help="AWS Access Key"),
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500533 cfg.StrOpt('s3_materials_path',
534 default="/opt/stack/devstack/files/images/"
535 "s3-materials/cirros-0.3.0",
536 help="S3 Materials Path"),
537 cfg.StrOpt('ari_manifest',
538 default="cirros-0.3.0-x86_64-initrd.manifest.xml",
539 help="ARI Ramdisk Image manifest"),
540 cfg.StrOpt('ami_manifest',
541 default="cirros-0.3.0-x86_64-blank.img.manifest.xml",
542 help="AMI Machine Image manifest"),
543 cfg.StrOpt('aki_manifest',
544 default="cirros-0.3.0-x86_64-vmlinuz.manifest.xml",
545 help="AKI Kernel Image manifest"),
546 cfg.StrOpt('instance_type',
547 default="m1.tiny",
548 help="Instance type"),
549 cfg.IntOpt('http_socket_timeout',
550 default=3,
551 help="boto Http socket timeout"),
552 cfg.IntOpt('num_retries',
553 default=1,
554 help="boto num_retries on error"),
555 cfg.IntOpt('build_timeout',
556 default=60,
557 help="Status Change Timeout"),
558 cfg.IntOpt('build_interval',
559 default=1,
560 help="Status Change Test Interval"),
561]
Attila Fazekasf7f2d932012-12-13 09:14:38 +0100562
Matthew Treinish615ea6a2013-02-25 17:26:59 -0500563stress_group = cfg.OptGroup(name='stress', title='Stress Test Options')
564
565StressGroup = [
566 cfg.StrOpt('nova_logdir',
567 default=None,
568 help='Directory containing log files on the compute nodes'),
569 cfg.IntOpt('max_instances',
570 default=16,
571 help='Maximum number of instances to create during test.'),
572 cfg.StrOpt('controller',
573 default=None,
David Kranzb9d97502013-05-01 15:55:04 -0400574 help='Controller host.'),
575 # new stress options
576 cfg.StrOpt('target_controller',
577 default=None,
578 help='Controller host.'),
579 cfg.StrOpt('target_ssh_user',
580 default=None,
581 help='ssh user.'),
582 cfg.StrOpt('target_private_key_path',
583 default=None,
584 help='Path to private key.'),
585 cfg.StrOpt('target_logfiles',
586 default=None,
587 help='regexp for list of log files.'),
Matthew Treinishf319a732013-10-24 21:39:24 +0000588 cfg.IntOpt('log_check_interval',
David Kranzb9d97502013-05-01 15:55:04 -0400589 default=60,
Marc Koderer32221b8e2013-08-23 13:57:50 +0200590 help='time (in seconds) between log file error checks.'),
Matthew Treinishf319a732013-10-24 21:39:24 +0000591 cfg.IntOpt('default_thread_number_per_action',
Marc Koderer32221b8e2013-08-23 13:57:50 +0200592 default=4,
Julien Leloup04d40f72014-01-28 11:17:18 +0100593 help='The number of threads created while stress test.'),
594 cfg.BoolOpt('leave_dirty_stack',
595 default=False,
596 help='Prevent the cleaning (tearDownClass()) between'
597 ' each stress test run if an exception occurs'
598 ' during this run.')
Matthew Treinish615ea6a2013-02-25 17:26:59 -0500599]
600
601
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900602scenario_group = cfg.OptGroup(name='scenario', title='Scenario Test Options')
603
604ScenarioGroup = [
605 cfg.StrOpt('img_dir',
606 default='/opt/stack/new/devstack/files/images/'
607 'cirros-0.3.1-x86_64-uec',
608 help='Directory containing image files'),
609 cfg.StrOpt('ami_img_file',
610 default='cirros-0.3.1-x86_64-blank.img',
611 help='AMI image file name'),
612 cfg.StrOpt('ari_img_file',
613 default='cirros-0.3.1-x86_64-initrd',
614 help='ARI image file name'),
615 cfg.StrOpt('aki_img_file',
616 default='cirros-0.3.1-x86_64-vmlinuz',
617 help='AKI image file name'),
618 cfg.StrOpt('ssh_user',
619 default='cirros',
Joe Gordonb5e10cd2013-07-10 15:51:12 +0000620 help='ssh username for the image file'),
621 cfg.IntOpt(
622 'large_ops_number',
623 default=0,
624 help="specifies how many resources to request at once. Used "
625 "for large operations testing.")
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900626]
627
628
Matthew Treinish4c412922013-07-16 15:27:42 -0400629service_available_group = cfg.OptGroup(name="service_available",
630 title="Available OpenStack Services")
631
632ServiceAvailableGroup = [
633 cfg.BoolOpt('cinder',
634 default=True,
635 help="Whether or not cinder is expected to be available"),
Matthew Treinishfaa340d2013-07-19 16:26:21 -0400636 cfg.BoolOpt('neutron',
637 default=False,
638 help="Whether or not neutron is expected to be available"),
Matthew Treinish853ae442013-07-19 16:36:07 -0400639 cfg.BoolOpt('glance',
640 default=True,
641 help="Whether or not glance is expected to be available"),
Matthew Treinish61e332b2013-07-19 16:42:31 -0400642 cfg.BoolOpt('swift',
643 default=True,
644 help="Whether or not swift is expected to be available"),
Matthew Treinish6b41e242013-07-19 16:49:28 -0400645 cfg.BoolOpt('nova',
646 default=True,
647 help="Whether or not nova is expected to be available"),
Matthew Treinisha9d43882013-07-19 16:54:52 -0400648 cfg.BoolOpt('heat',
649 default=False,
650 help="Whether or not Heat is expected to be available"),
Mehdi Abaakouk8581c0b2013-10-04 10:45:42 +0200651 cfg.BoolOpt('ceilometer',
652 default=True,
653 help="Whether or not Ceilometer is expected to be available"),
Julie Pichond1017642013-07-24 16:37:23 +0100654 cfg.BoolOpt('horizon',
655 default=True,
656 help="Whether or not Horizon is expected to be available"),
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400657 cfg.BoolOpt('savanna',
658 default=False,
659 help="Whether or not Savanna is expected to be available"),
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300660 cfg.BoolOpt('ironic',
661 default=False,
662 help="Whether or not Ironic is expected to be available"),
Matthew Treinish4c412922013-07-16 15:27:42 -0400663]
664
Attila Fazekasaeeeefd2013-08-06 17:01:56 +0200665debug_group = cfg.OptGroup(name="debug",
666 title="Debug System")
667
668DebugGroup = [
669 cfg.BoolOpt('enable',
670 default=True,
671 help="Enable diagnostic commands"),
672]
673
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000674input_scenario_group = cfg.OptGroup(name="input-scenario",
675 title="Filters and values for"
676 " input scenarios")
677
678InputScenarioGroup = [
679 cfg.StrOpt('image_regex',
680 default='^cirros-0.3.1-x86_64-uec$',
681 help="Matching images become parameters for scenario tests"),
682 cfg.StrOpt('flavor_regex',
Andrea Frittoli99901c02014-01-30 18:06:49 +0000683 default='^m1.nano$',
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000684 help="Matching flavors become parameters for scenario tests"),
685 cfg.StrOpt('non_ssh_image_regex',
686 default='^.*[Ww]in.*$',
687 help="SSH verification in tests is skipped"
688 "for matching images"),
689 cfg.StrOpt('ssh_user_regex',
690 default="[[\"^.*[Cc]irros.*$\", \"root\"]]",
691 help="List of user mapped to regex "
692 "to matching image names."),
693]
694
Attila Fazekasaeeeefd2013-08-06 17:01:56 +0200695
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300696baremetal_group = cfg.OptGroup(name='baremetal',
697 title='Baremetal provisioning service options')
698
699BaremetalGroup = [
700 cfg.StrOpt('catalog_type',
701 default='baremetal',
702 help="Catalog type of the baremetal provisioning service."),
703]
704
Matthew Treinishe2b56b52014-01-29 19:25:50 +0000705cli_group = cfg.OptGroup(name='cli', title="cli Configuration Options")
706
707CLIGroup = [
708 cfg.BoolOpt('enabled',
709 default=True,
710 help="enable cli tests"),
711 cfg.StrOpt('cli_dir',
712 default='/usr/local/bin',
713 help="directory where python client binaries are located"),
714 cfg.IntOpt('timeout',
715 default=15,
716 help="Number of seconds to wait on a CLI timeout"),
717]
718
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300719
Sean Dague3b9b1f32013-12-20 17:04:54 -0500720# this should never be called outside of this class
721class TempestConfigPrivate(object):
Daryl Walleck1465d612011-11-02 02:22:15 -0500722 """Provides OpenStack configuration information."""
723
Brian Waldon738cd632011-12-12 18:45:09 -0500724 DEFAULT_CONFIG_DIR = os.path.join(
Zhongyue Luoa1343de2013-01-04 16:21:35 +0800725 os.path.abspath(os.path.dirname(os.path.dirname(__file__))),
Brian Waldon738cd632011-12-12 18:45:09 -0500726 "etc")
Daryl Walleck1465d612011-11-02 02:22:15 -0500727
Brian Waldon738cd632011-12-12 18:45:09 -0500728 DEFAULT_CONFIG_FILE = "tempest.conf"
729
Sean Dague2ec4c2c2013-12-22 11:30:06 -0500730 def __init__(self, parse_conf=True):
Brian Waldon738cd632011-12-12 18:45:09 -0500731 """Initialize a configuration from a conf directory and conf file."""
Sean Dague3b9b1f32013-12-20 17:04:54 -0500732 super(TempestConfigPrivate, self).__init__()
Sean Dague2416cf32013-04-10 08:29:07 -0400733 config_files = []
Sean Dague2416cf32013-04-10 08:29:07 -0400734 failsafe_path = "/etc/tempest/" + self.DEFAULT_CONFIG_FILE
Brian Waldon738cd632011-12-12 18:45:09 -0500735
736 # Environment variables override defaults...
737 conf_dir = os.environ.get('TEMPEST_CONFIG_DIR',
Zhongyue Luo79d8d362012-09-25 13:49:27 +0800738 self.DEFAULT_CONFIG_DIR)
739 conf_file = os.environ.get('TEMPEST_CONFIG', self.DEFAULT_CONFIG_FILE)
Brian Waldon738cd632011-12-12 18:45:09 -0500740
Jay Pipes7f757632011-12-02 15:53:32 -0500741 path = os.path.join(conf_dir, conf_file)
742
Matthew Treinish56041db2014-01-21 23:30:43 +0000743 if not os.path.isfile(path):
Sean Dague2416cf32013-04-10 08:29:07 -0400744 path = failsafe_path
Attila Fazekas5abb2532012-12-04 11:30:49 +0100745
Sean Dague2ec4c2c2013-12-22 11:30:06 -0500746 # only parse the config file if we expect one to exist. This is needed
747 # to remove an issue with the config file up to date checker.
748 if parse_conf:
Sean Dague2416cf32013-04-10 08:29:07 -0400749 config_files.append(path)
Jay Pipes7f757632011-12-02 15:53:32 -0500750
Sean Dague2416cf32013-04-10 08:29:07 -0400751 cfg.CONF([], project='tempest', default_config_files=config_files)
Matthew Treinishf4a9b0f2013-07-26 16:58:26 -0400752 logging.setup('tempest')
753 LOG = logging.getLogger('tempest')
754 LOG.info("Using tempest config file %s" % path)
Daryl Walleck1465d612011-11-02 02:22:15 -0500755
DennyZhang88a2dd82013-10-07 12:55:35 -0500756 register_opt_group(cfg.CONF, compute_group, ComputeGroup)
Matthew Treinishd5c96022013-10-17 21:51:23 +0000757 register_opt_group(cfg.CONF, compute_features_group,
758 ComputeFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500759 register_opt_group(cfg.CONF, identity_group, IdentityGroup)
Matthew Treinishd5021a72014-01-09 18:42:51 +0000760 register_opt_group(cfg.CONF, identity_feature_group,
761 IdentityFeatureGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500762 register_opt_group(cfg.CONF, image_group, ImageGroup)
Matthew Treinish2b5287d2013-10-22 17:40:34 +0000763 register_opt_group(cfg.CONF, image_feature_group, ImageFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500764 register_opt_group(cfg.CONF, network_group, NetworkGroup)
Matthew Treinishe3d26142013-11-26 19:14:58 +0000765 register_opt_group(cfg.CONF, network_feature_group,
766 NetworkFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500767 register_opt_group(cfg.CONF, volume_group, VolumeGroup)
Matthew Treinishd5c96022013-10-17 21:51:23 +0000768 register_opt_group(cfg.CONF, volume_feature_group,
769 VolumeFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500770 register_opt_group(cfg.CONF, object_storage_group, ObjectStoreGroup)
Matthew Treinishd5c96022013-10-17 21:51:23 +0000771 register_opt_group(cfg.CONF, object_storage_feature_group,
772 ObjectStoreFeaturesGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500773 register_opt_group(cfg.CONF, orchestration_group, OrchestrationGroup)
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100774 register_opt_group(cfg.CONF, telemetry_group, TelemetryGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500775 register_opt_group(cfg.CONF, dashboard_group, DashboardGroup)
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400776 register_opt_group(cfg.CONF, data_processing_group,
777 DataProcessingGroup)
DennyZhang88a2dd82013-10-07 12:55:35 -0500778 register_opt_group(cfg.CONF, boto_group, BotoGroup)
779 register_opt_group(cfg.CONF, compute_admin_group, ComputeAdminGroup)
780 register_opt_group(cfg.CONF, stress_group, StressGroup)
781 register_opt_group(cfg.CONF, scenario_group, ScenarioGroup)
782 register_opt_group(cfg.CONF, service_available_group,
783 ServiceAvailableGroup)
784 register_opt_group(cfg.CONF, debug_group, DebugGroup)
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300785 register_opt_group(cfg.CONF, baremetal_group, BaremetalGroup)
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000786 register_opt_group(cfg.CONF, input_scenario_group, InputScenarioGroup)
Matthew Treinishe2b56b52014-01-29 19:25:50 +0000787 register_opt_group(cfg.CONF, cli_group, CLIGroup)
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500788 self.compute = cfg.CONF.compute
Matthew Treinishd5c96022013-10-17 21:51:23 +0000789 self.compute_feature_enabled = cfg.CONF['compute-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500790 self.identity = cfg.CONF.identity
Matthew Treinishd5021a72014-01-09 18:42:51 +0000791 self.identity_feature_enabled = cfg.CONF['identity-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500792 self.images = cfg.CONF.image
Matthew Treinish2b5287d2013-10-22 17:40:34 +0000793 self.image_feature_enabled = cfg.CONF['image-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500794 self.network = cfg.CONF.network
Matthew Treinishe3d26142013-11-26 19:14:58 +0000795 self.network_feature_enabled = cfg.CONF['network-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500796 self.volume = cfg.CONF.volume
Matthew Treinishd5c96022013-10-17 21:51:23 +0000797 self.volume_feature_enabled = cfg.CONF['volume-feature-enabled']
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500798 self.object_storage = cfg.CONF['object-storage']
Matthew Treinishd5c96022013-10-17 21:51:23 +0000799 self.object_storage_feature_enabled = cfg.CONF[
800 'object-storage-feature-enabled']
Steve Bakerc60e4e32013-05-06 15:22:41 +1200801 self.orchestration = cfg.CONF.orchestration
Yassine Lamgarchalb158d412013-12-27 19:29:42 +0100802 self.telemetry = cfg.CONF.telemetry
Julie Pichond1017642013-07-24 16:37:23 +0100803 self.dashboard = cfg.CONF.dashboard
Sergey Lukjanovcec6c3f2013-12-10 12:38:21 +0400804 self.data_processing = cfg.CONF.data_processing
Matthew Treinish39e48ef2012-12-21 13:36:15 -0500805 self.boto = cfg.CONF.boto
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100806 self.compute_admin = cfg.CONF['compute-admin']
Matthew Treinish615ea6a2013-02-25 17:26:59 -0500807 self.stress = cfg.CONF.stress
Masayuki Igawa73d9f3a2013-05-24 10:30:01 +0900808 self.scenario = cfg.CONF.scenario
Matthew Treinish4c412922013-07-16 15:27:42 -0400809 self.service_available = cfg.CONF.service_available
Attila Fazekas5fae7a32013-09-25 16:52:44 +0200810 self.debug = cfg.CONF.debug
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +0300811 self.baremetal = cfg.CONF.baremetal
Andrea Frittolif5da28b2013-12-06 07:08:07 +0000812 self.input_scenario = cfg.CONF['input-scenario']
Matthew Treinishe2b56b52014-01-29 19:25:50 +0000813 self.cli = cfg.CONF.cli
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100814 if not self.compute_admin.username:
815 self.compute_admin.username = self.identity.admin_username
816 self.compute_admin.password = self.identity.admin_password
817 self.compute_admin.tenant_name = self.identity.admin_tenant_name
Sean Dague86bd8422013-12-20 09:56:44 -0500818
819
820class TempestConfigProxy(object):
821 _config = None
822
823 def __getattr__(self, attr):
824 if not self._config:
Sean Dague3b9b1f32013-12-20 17:04:54 -0500825 self._config = TempestConfigPrivate()
Sean Dague86bd8422013-12-20 09:56:44 -0500826
827 return getattr(self._config, attr)
828
829
830CONF = TempestConfigProxy()