blob: f4df28bbf6479745be616256638068efaa3733ba [file] [log] [blame]
Steve Baker450aa7f2014-08-25 10:37:27 +12001# Licensed under the Apache License, Version 2.0 (the "License"); you may
2# not use this file except in compliance with the License. You may obtain
3# a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10# License for the specific language governing permissions and limitations
11# under the License.
12
13import os
Steve Baker450aa7f2014-08-25 10:37:27 +120014
Jens Rosenboom4f069fb2015-02-18 14:19:07 +010015from oslo_config import cfg
Steve Baker450aa7f2014-08-25 10:37:27 +120016
17import heat_integrationtests
18
Steve Baker39ed19e2016-08-01 00:55:34 +000019service_available_group = cfg.OptGroup(name="service_available",
20 title="Available OpenStack Services")
21
22ServiceAvailableGroup = [
23 cfg.BoolOpt("heat_plugin",
24 default=True,
25 help="Whether or not heat is expected to be available"),
26]
Steve Baker450aa7f2014-08-25 10:37:27 +120027
Steve Bakerdc769c32016-07-27 23:31:50 +000028heat_group = cfg.OptGroup(name="heat_plugin",
29 title="Heat Service Options")
Steve Baker450aa7f2014-08-25 10:37:27 +120030
Steve Bakerdc769c32016-07-27 23:31:50 +000031HeatGroup = [
32 cfg.StrOpt("catalog_type",
33 default="orchestration",
34 help="Catalog type of the orchestration service."),
Steve Baker450aa7f2014-08-25 10:37:27 +120035 cfg.StrOpt('username',
36 default=os.environ.get('OS_USERNAME'),
Rakesh H Sa286a132016-02-18 18:54:00 +053037 help="Username to use for non admin API requests."),
Steve Baker450aa7f2014-08-25 10:37:27 +120038 cfg.StrOpt('password',
39 default=os.environ.get('OS_PASSWORD'),
Rakesh H Sa286a132016-02-18 18:54:00 +053040 help="Non admin API key to use when authenticating.",
41 secret=True),
42 cfg.StrOpt('admin_username',
43 help="Username to use for admin API requests."),
44 cfg.StrOpt('admin_password',
45 help="Admin API key to use when authentication.",
Steve Baker450aa7f2014-08-25 10:37:27 +120046 secret=True),
47 cfg.StrOpt('tenant_name',
Steve Baker7c9115d2015-08-03 11:12:46 +120048 default=(os.environ.get('OS_PROJECT_NAME') or
49 os.environ.get('OS_TENANT_NAME')),
Steve Baker450aa7f2014-08-25 10:37:27 +120050 help="Tenant name to use for API requests."),
rabifd98a472016-05-24 10:18:33 +053051 cfg.StrOpt('admin_tenant_name',
52 default='admin',
53 help="Admin tenant name to use for admin API requests."),
Steve Baker450aa7f2014-08-25 10:37:27 +120054 cfg.StrOpt('auth_url',
55 default=os.environ.get('OS_AUTH_URL'),
Rabi Mishra65493fb2016-01-29 22:23:21 +053056 help="Full URI of the OpenStack Identity API (Keystone)"),
Rabi Mishra1d538742016-03-21 21:09:20 +053057 cfg.StrOpt('user_domain_name',
58 default=os.environ.get('OS_USER_DOMAIN_NAME'),
59 help="User domain name, if keystone v3 auth_url"
60 "is used"),
61 cfg.StrOpt('project_domain_name',
62 default=os.environ.get('OS_PROJECT_DOMAIN_NAME'),
63 help="Project domain name, if keystone v3 auth_url"
Rabi Mishra65493fb2016-01-29 22:23:21 +053064 "is used"),
Steve Baker450aa7f2014-08-25 10:37:27 +120065 cfg.StrOpt('region',
66 default=os.environ.get('OS_REGION_NAME'),
Rabi Mishra65493fb2016-01-29 22:23:21 +053067 help="The region name to use"),
Steve Baker450aa7f2014-08-25 10:37:27 +120068 cfg.StrOpt('instance_type',
Steve Baker450aa7f2014-08-25 10:37:27 +120069 help="Instance type for tests. Needs to be big enough for a "
70 "full OS plus the test workload"),
Pavlo Shchelokovskyy46e5cb22015-03-23 12:01:25 +000071 cfg.StrOpt('minimal_instance_type',
72 help="Instance type enough for simplest cases."),
Steve Baker450aa7f2014-08-25 10:37:27 +120073 cfg.StrOpt('image_ref',
Steve Baker450aa7f2014-08-25 10:37:27 +120074 help="Name of image to use for tests which boot servers."),
75 cfg.StrOpt('keypair_name',
Steve Baker450aa7f2014-08-25 10:37:27 +120076 help="Name of existing keypair to launch servers with."),
77 cfg.StrOpt('minimal_image_ref',
Steve Baker450aa7f2014-08-25 10:37:27 +120078 help="Name of minimal (e.g cirros) image to use when "
79 "launching test instances."),
Steve Baker450aa7f2014-08-25 10:37:27 +120080 cfg.BoolOpt('disable_ssl_certificate_validation',
81 default=False,
82 help="Set to True if using self-signed SSL certificates."),
tyagi39aa11a2016-03-07 04:47:00 -080083 cfg.StrOpt('ca_file',
tyagi39aa11a2016-03-07 04:47:00 -080084 help="CA certificate to pass for servers that have "
85 "https endpoint."),
Steve Baker450aa7f2014-08-25 10:37:27 +120086 cfg.IntOpt('build_interval',
87 default=4,
88 help="Time in seconds between build status checks."),
89 cfg.IntOpt('build_timeout',
90 default=1200,
91 help="Timeout in seconds to wait for a stack to build."),
92 cfg.StrOpt('network_for_ssh',
Rabi Mishraec4b03b2015-05-23 02:20:47 +053093 default='heat-net',
Steve Baker450aa7f2014-08-25 10:37:27 +120094 help="Network used for SSH connections."),
95 cfg.StrOpt('fixed_network_name',
Rabi Mishraec4b03b2015-05-23 02:20:47 +053096 default='heat-net',
Steve Baker450aa7f2014-08-25 10:37:27 +120097 help="Visible fixed network name "),
Pavlo Shchelokovskyy6fa23802015-03-23 11:22:35 +000098 cfg.StrOpt('floating_network_name',
99 default='public',
100 help="Visible floating network name "),
Steve Baker0b679bb2015-03-11 13:46:42 +1300101 cfg.StrOpt('boot_config_env',
Steve Baker803f1502015-03-11 13:47:08 +1300102 default=('heat_integrationtests/scenario/templates'
103 '/boot_config_none_env.yaml'),
Steve Baker0b679bb2015-03-11 13:46:42 +1300104 help="Path to environment file which defines the "
105 "resource type Heat::InstallConfigAgent. Needs to "
106 "be appropriate for the image_ref."),
kairat_kushaev0ab3d7c2015-01-27 21:48:46 +0300107 cfg.StrOpt('fixed_subnet_name',
Rabi Mishraec4b03b2015-05-23 02:20:47 +0530108 default='heat-subnet',
kairat_kushaev0ab3d7c2015-01-27 21:48:46 +0300109 help="Visible fixed sub-network name "),
Steve Baker450aa7f2014-08-25 10:37:27 +1200110 cfg.IntOpt('ssh_timeout',
111 default=300,
112 help="Timeout in seconds to wait for authentication to "
113 "succeed."),
114 cfg.IntOpt('ip_version_for_ssh',
115 default=4,
116 help="IP version used for SSH connections."),
117 cfg.IntOpt('ssh_channel_timeout',
118 default=60,
119 help="Timeout in seconds to wait for output from ssh "
120 "channel."),
121 cfg.IntOpt('tenant_network_mask_bits',
122 default=28,
123 help="The mask bits for tenant ipv4 subnets"),
Rabi Mishra477efc92015-07-31 13:01:45 +0530124 cfg.BoolOpt('skip_scenario_tests',
125 default=False,
126 help="Skip all scenario tests"),
127 cfg.BoolOpt('skip_functional_tests',
128 default=False,
129 help="Skip all functional tests"),
130 cfg.ListOpt('skip_functional_test_list',
Rabi Mishra94c43722015-08-12 18:39:38 +0530131 help="List of functional test class or class.method "
132 "names to skip ex. AutoscalingGroupTest,"
133 "InstanceGroupBasicTest.test_size_updates_work"),
Rabi Mishra477efc92015-07-31 13:01:45 +0530134 cfg.ListOpt('skip_scenario_test_list',
Rabi Mishra94c43722015-08-12 18:39:38 +0530135 help="List of scenario test class or class.method "
136 "names to skip ex. NeutronLoadBalancerTest, "
huangtianhua422c1ba2016-06-08 15:50:39 +0800137 "AodhAlarmTest.test_alarm"),
Rabi Mishra477efc92015-07-31 13:01:45 +0530138 cfg.ListOpt('skip_test_stack_action_list',
139 help="List of stack actions in tests to skip "
140 "ex. ABANDON, ADOPT, SUSPEND, RESUME"),
Steve Baker450aa7f2014-08-25 10:37:27 +1200141 cfg.IntOpt('volume_size',
142 default=1,
143 help='Default size in GB for volumes created by volumes tests'),
Anastasia Kuznetsova3e0ab4d2015-03-06 18:10:13 +0400144 cfg.IntOpt('connectivity_timeout',
145 default=120,
146 help="Timeout in seconds to wait for connectivity to "
147 "server."),
Oleksii Chuprykov4be023a2015-07-08 07:17:08 -0400148 cfg.IntOpt('sighup_timeout',
rabicfffc832016-07-28 12:15:32 +0530149 default=120,
Oleksii Chuprykov4be023a2015-07-08 07:17:08 -0400150 help="Timeout in seconds to wait for adding or removing child"
Thomas Herve2ce4bda2016-01-22 17:55:55 +0100151 "process after receiving of sighup signal"),
Peter Razumovsky483e64b2016-03-04 17:04:28 +0300152 cfg.IntOpt('sighup_config_edit_retries',
153 default=10,
154 help='Count of retries to edit config file during sighup. If '
155 'another worker already edit config file, file can be '
156 'busy, so need to wait and try edit file again.'),
Thomas Herve2ce4bda2016-01-22 17:55:55 +0100157 cfg.StrOpt('heat-config-notify-script',
158 default=('heat-config-notify'),
159 help="Path to the script heat-config-notify"),
Rabi Mishra65493fb2016-01-29 22:23:21 +0530160
Steve Baker450aa7f2014-08-25 10:37:27 +1200161]
162
163
164def init_conf(read_conf=True):
165
166 default_config_files = None
167 if read_conf:
168 confpath = os.path.join(
169 os.path.dirname(os.path.realpath(heat_integrationtests.__file__)),
170 'heat_integrationtests.conf')
171 if os.path.isfile(confpath):
172 default_config_files = [confpath]
173
174 conf = cfg.ConfigOpts()
175 conf(args=[], project='heat_integrationtests',
176 default_config_files=default_config_files)
177
Steve Bakerdc769c32016-07-27 23:31:50 +0000178 for group, opts in list_opts():
179 conf.register_opts(opts, group=group)
Steve Baker450aa7f2014-08-25 10:37:27 +1200180 return conf
181
182
Thomas Hervecd3622e2014-12-17 10:36:51 +0100183def list_opts():
Steve Bakerdc769c32016-07-27 23:31:50 +0000184 yield heat_group.name, HeatGroup
Steve Baker39ed19e2016-08-01 00:55:34 +0000185 yield service_available_group.name, ServiceAvailableGroup