blob: 7ea22e6688c87d790807c97fc5e0ec657e5afc58 [file] [log] [blame]
Daniel Mellado3c0aeab2016-01-29 11:30:25 +00001# Copyright 2012 OpenStack Foundation
2# 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
Ihar Hrachyshka59382252016-04-05 15:54:33 +020016import functools
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +020017import math
Lajos Katona2f904652018-08-23 14:04:56 +020018import time
Ihar Hrachyshka59382252016-04-05 15:54:33 +020019
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000020import netaddr
Chandan Kumarc125fd12017-11-15 19:41:01 +053021from neutron_lib import constants as const
Lajos Katona2f904652018-08-23 14:04:56 +020022from oslo_log import log
Chandan Kumarc125fd12017-11-15 19:41:01 +053023from tempest.common import utils as tutils
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000024from tempest.lib.common.utils import data_utils
25from tempest.lib import exceptions as lib_exc
26from tempest import test
27
Chandan Kumar667d3d32017-09-22 12:24:06 +053028from neutron_tempest_plugin.api import clients
29from neutron_tempest_plugin.common import constants
30from neutron_tempest_plugin.common import utils
31from neutron_tempest_plugin import config
32from neutron_tempest_plugin import exceptions
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000033
34CONF = config.CONF
35
Lajos Katona2f904652018-08-23 14:04:56 +020036LOG = log.getLogger(__name__)
37
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000038
39class BaseNetworkTest(test.BaseTestCase):
40
Brian Haleyae328b92018-10-09 19:51:54 -040041 """Base class for Neutron tests that use the Tempest Neutron REST client
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000042
43 Per the Neutron API Guide, API v1.x was removed from the source code tree
44 (docs.openstack.org/api/openstack-network/2.0/content/Overview-d1e71.html)
45 Therefore, v2.x of the Neutron API is assumed. It is also assumed that the
46 following options are defined in the [network] section of etc/tempest.conf:
47
48 project_network_cidr with a block of cidr's from which smaller blocks
49 can be allocated for tenant networks
50
51 project_network_mask_bits with the mask bits to be used to partition
52 the block defined by tenant-network_cidr
53
54 Finally, it is assumed that the following option is defined in the
55 [service_available] section of etc/tempest.conf
56
57 neutron as True
58 """
59
60 force_tenant_isolation = False
61 credentials = ['primary']
62
63 # Default to ipv4.
Federico Ressi0ddc93b2018-04-09 12:01:48 +020064 _ip_version = const.IP_VERSION_4
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000065
Federico Ressi61b564e2018-07-06 08:10:31 +020066 # Derive from BaseAdminNetworkTest class to have this initialized
67 admin_client = None
68
Federico Ressia69dcd52018-07-06 09:45:34 +020069 external_network_id = CONF.network.public_network_id
70
Maor Blausteinfc274a02024-02-08 13:35:15 +020071 __is_driver_ovn = None
72
73 @classmethod
74 def _is_driver_ovn(cls):
75 ovn_agents = cls.os_admin.network_client.list_agents(
76 binary='ovn-controller')['agents']
77 return len(ovn_agents) > 0
78
79 @property
80 def is_driver_ovn(self):
81 if self.__is_driver_ovn is None:
82 if hasattr(self, 'os_admin'):
83 self.__is_driver_ovn = self._is_driver_ovn()
84 return self.__is_driver_ovn
85
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000086 @classmethod
87 def get_client_manager(cls, credential_type=None, roles=None,
88 force_new=None):
Genadi Chereshnyacc395c02016-07-25 12:17:37 +030089 manager = super(BaseNetworkTest, cls).get_client_manager(
90 credential_type=credential_type,
91 roles=roles,
92 force_new=force_new
93 )
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000094 # Neutron uses a different clients manager than the one in the Tempest
Jens Harbott860b46a2017-11-15 21:23:15 +000095 # save the original in case mixed tests need it
96 if credential_type == 'primary':
97 cls.os_tempest = manager
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000098 return clients.Manager(manager.credentials)
99
100 @classmethod
101 def skip_checks(cls):
102 super(BaseNetworkTest, cls).skip_checks()
103 if not CONF.service_available.neutron:
104 raise cls.skipException("Neutron support is required")
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200105 if (cls._ip_version == const.IP_VERSION_6 and
106 not CONF.network_feature_enabled.ipv6):
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000107 raise cls.skipException("IPv6 Tests are disabled.")
Jakub Libosvar1982aa12017-05-30 11:15:33 +0000108 for req_ext in getattr(cls, 'required_extensions', []):
Chandan Kumarc125fd12017-11-15 19:41:01 +0530109 if not tutils.is_extension_enabled(req_ext, 'network'):
Jakub Libosvar1982aa12017-05-30 11:15:33 +0000110 msg = "%s extension not enabled." % req_ext
111 raise cls.skipException(msg)
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000112
113 @classmethod
114 def setup_credentials(cls):
115 # Create no network resources for these test.
116 cls.set_network_resources()
117 super(BaseNetworkTest, cls).setup_credentials()
118
119 @classmethod
120 def setup_clients(cls):
121 super(BaseNetworkTest, cls).setup_clients()
fumihiko kakumaa216fc12017-07-14 10:43:29 +0900122 cls.client = cls.os_primary.network_client
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000123
Vasyl Saienko8245ad02021-10-22 14:34:41 +0300124 # NOTE(vsaienko): when using static accounts we need
125 # to fill *_id information like project_id, user_id
126 # by authenticating in keystone
127 cls.client.auth_provider.get_token()
128
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000129 @classmethod
130 def resource_setup(cls):
131 super(BaseNetworkTest, cls).resource_setup()
132
133 cls.networks = []
Miguel Lavalle124378b2016-09-21 16:41:47 -0500134 cls.admin_networks = []
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000135 cls.subnets = []
Kevin Bentonba3651c2017-09-01 17:13:01 -0700136 cls.admin_subnets = []
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000137 cls.ports = []
138 cls.routers = []
139 cls.floating_ips = []
Slawek Kaplonski003fcae2019-05-26 22:38:35 +0200140 cls.port_forwardings = []
Nurmatov Mamatisa3f2bbb52021-10-20 14:33:54 +0300141 cls.local_ips = []
142 cls.local_ip_associations = []
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000143 cls.metering_labels = []
144 cls.service_profiles = []
145 cls.flavors = []
146 cls.metering_label_rules = []
147 cls.qos_rules = []
148 cls.qos_policies = []
149 cls.ethertype = "IPv" + str(cls._ip_version)
Miguel Lavalleb1c7a3d2021-01-31 19:05:22 -0600150 cls.address_groups = []
151 cls.admin_address_groups = []
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000152 cls.address_scopes = []
153 cls.admin_address_scopes = []
154 cls.subnetpools = []
155 cls.admin_subnetpools = []
Itzik Brownbac51dc2016-10-31 12:25:04 +0000156 cls.security_groups = []
Dongcan Ye2de722e2018-07-04 11:01:37 +0000157 cls.admin_security_groups = []
Slawek Kaplonskiaa22c9e2023-05-18 18:59:26 +0200158 cls.sg_rule_templates = []
Chandan Kumarc125fd12017-11-15 19:41:01 +0530159 cls.projects = []
Nguyen Phuong An67993fc2017-11-24 11:30:25 +0700160 cls.log_objects = []
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200161 cls.reserved_subnet_cidrs = set()
Federico Ressiab286e42018-06-19 09:52:10 +0200162 cls.keypairs = []
Federico Ressi82e83e32018-07-03 14:19:55 +0200163 cls.trunks = []
Kailun Qineaaf9782018-12-20 04:45:01 +0800164 cls.network_segment_ranges = []
Harald Jensåsc9782fa2019-06-03 22:35:41 +0200165 cls.conntrack_helpers = []
yangjianfeng2936a292022-02-04 11:22:11 +0800166 cls.ndp_proxies = []
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000167
168 @classmethod
yangjianfeng23e40c22020-11-22 08:42:18 +0000169 def reserve_external_subnet_cidrs(cls):
170 client = cls.os_admin.network_client
171 ext_nets = client.list_networks(
172 **{"router:external": True})['networks']
173 for ext_net in ext_nets:
174 ext_subnets = client.list_subnets(
175 network_id=ext_net['id'])['subnets']
176 for ext_subnet in ext_subnets:
177 cls.reserve_subnet_cidr(ext_subnet['cidr'])
178
179 @classmethod
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000180 def resource_cleanup(cls):
181 if CONF.service_available.neutron:
Federico Ressi82e83e32018-07-03 14:19:55 +0200182 # Clean up trunks
183 for trunk in cls.trunks:
184 cls._try_delete_resource(cls.delete_trunk, trunk)
185
yangjianfeng2936a292022-02-04 11:22:11 +0800186 # Clean up ndp proxy
187 for ndp_proxy in cls.ndp_proxies:
188 cls._try_delete_resource(cls.delete_ndp_proxy, ndp_proxy)
189
Slawek Kaplonski003fcae2019-05-26 22:38:35 +0200190 # Clean up port forwardings
191 for pf in cls.port_forwardings:
192 cls._try_delete_resource(cls.delete_port_forwarding, pf)
193
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000194 # Clean up floating IPs
195 for floating_ip in cls.floating_ips:
Federico Ressia69dcd52018-07-06 09:45:34 +0200196 cls._try_delete_resource(cls.delete_floatingip, floating_ip)
197
Nurmatov Mamatisa3f2bbb52021-10-20 14:33:54 +0300198 # Clean up Local IP Associations
199 for association in cls.local_ip_associations:
200 cls._try_delete_resource(cls.delete_local_ip_association,
201 association)
202 # Clean up Local IPs
203 for local_ip in cls.local_ips:
204 cls._try_delete_resource(cls.delete_local_ip,
205 local_ip)
206
Harald Jensåsc9782fa2019-06-03 22:35:41 +0200207 # Clean up conntrack helpers
208 for cth in cls.conntrack_helpers:
209 cls._try_delete_resource(cls.delete_conntrack_helper, cth)
210
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000211 # Clean up routers
212 for router in cls.routers:
213 cls._try_delete_resource(cls.delete_router,
214 router)
215 # Clean up metering label rules
216 for metering_label_rule in cls.metering_label_rules:
217 cls._try_delete_resource(
218 cls.admin_client.delete_metering_label_rule,
219 metering_label_rule['id'])
220 # Clean up metering labels
221 for metering_label in cls.metering_labels:
222 cls._try_delete_resource(
223 cls.admin_client.delete_metering_label,
224 metering_label['id'])
225 # Clean up flavors
226 for flavor in cls.flavors:
227 cls._try_delete_resource(
228 cls.admin_client.delete_flavor,
229 flavor['id'])
230 # Clean up service profiles
231 for service_profile in cls.service_profiles:
232 cls._try_delete_resource(
233 cls.admin_client.delete_service_profile,
234 service_profile['id'])
235 # Clean up ports
236 for port in cls.ports:
237 cls._try_delete_resource(cls.client.delete_port,
238 port['id'])
239 # Clean up subnets
240 for subnet in cls.subnets:
241 cls._try_delete_resource(cls.client.delete_subnet,
242 subnet['id'])
Kevin Bentonba3651c2017-09-01 17:13:01 -0700243 # Clean up admin subnets
244 for subnet in cls.admin_subnets:
245 cls._try_delete_resource(cls.admin_client.delete_subnet,
246 subnet['id'])
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000247 # Clean up networks
248 for network in cls.networks:
Federico Ressi61b564e2018-07-06 08:10:31 +0200249 cls._try_delete_resource(cls.delete_network, network)
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000250
Miguel Lavalle124378b2016-09-21 16:41:47 -0500251 # Clean up admin networks
252 for network in cls.admin_networks:
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000253 cls._try_delete_resource(cls.admin_client.delete_network,
254 network['id'])
255
Itzik Brownbac51dc2016-10-31 12:25:04 +0000256 # Clean up security groups
Federico Ressi4c590d72018-10-10 14:01:08 +0200257 for security_group in cls.security_groups:
258 cls._try_delete_resource(cls.delete_security_group,
259 security_group)
Itzik Brownbac51dc2016-10-31 12:25:04 +0000260
Dongcan Ye2de722e2018-07-04 11:01:37 +0000261 # Clean up admin security groups
Federico Ressi4c590d72018-10-10 14:01:08 +0200262 for security_group in cls.admin_security_groups:
263 cls._try_delete_resource(cls.delete_security_group,
264 security_group,
265 client=cls.admin_client)
Dongcan Ye2de722e2018-07-04 11:01:37 +0000266
Slawek Kaplonskiaa22c9e2023-05-18 18:59:26 +0200267 # Clean up security group rule templates
268 for sg_rule_template in cls.sg_rule_templates:
269 cls._try_delete_resource(
270 cls.admin_client.delete_default_security_group_rule,
271 sg_rule_template['id'])
272
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000273 for subnetpool in cls.subnetpools:
274 cls._try_delete_resource(cls.client.delete_subnetpool,
275 subnetpool['id'])
276
277 for subnetpool in cls.admin_subnetpools:
278 cls._try_delete_resource(cls.admin_client.delete_subnetpool,
279 subnetpool['id'])
280
281 for address_scope in cls.address_scopes:
282 cls._try_delete_resource(cls.client.delete_address_scope,
283 address_scope['id'])
284
285 for address_scope in cls.admin_address_scopes:
286 cls._try_delete_resource(
287 cls.admin_client.delete_address_scope,
288 address_scope['id'])
289
Chandan Kumarc125fd12017-11-15 19:41:01 +0530290 for project in cls.projects:
291 cls._try_delete_resource(
292 cls.identity_admin_client.delete_project,
293 project['id'])
294
Sławek Kapłońskie100c4d2017-08-23 21:18:34 +0000295 # Clean up QoS rules
296 for qos_rule in cls.qos_rules:
297 cls._try_delete_resource(cls.admin_client.delete_qos_rule,
298 qos_rule['id'])
299 # Clean up QoS policies
300 # as all networks and ports are already removed, QoS policies
301 # shouldn't be "in use"
302 for qos_policy in cls.qos_policies:
303 cls._try_delete_resource(cls.admin_client.delete_qos_policy,
304 qos_policy['id'])
305
Nguyen Phuong An67993fc2017-11-24 11:30:25 +0700306 # Clean up log_objects
307 for log_object in cls.log_objects:
308 cls._try_delete_resource(cls.admin_client.delete_log,
309 log_object['id'])
310
Federico Ressiab286e42018-06-19 09:52:10 +0200311 for keypair in cls.keypairs:
312 cls._try_delete_resource(cls.delete_keypair, keypair)
313
Kailun Qineaaf9782018-12-20 04:45:01 +0800314 # Clean up network_segment_ranges
315 for network_segment_range in cls.network_segment_ranges:
316 cls._try_delete_resource(
317 cls.admin_client.delete_network_segment_range,
318 network_segment_range['id'])
319
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000320 super(BaseNetworkTest, cls).resource_cleanup()
321
322 @classmethod
323 def _try_delete_resource(cls, delete_callable, *args, **kwargs):
324 """Cleanup resources in case of test-failure
325
326 Some resources are explicitly deleted by the test.
327 If the test failed to delete a resource, this method will execute
328 the appropriate delete methods. Otherwise, the method ignores NotFound
329 exceptions thrown for resources that were correctly deleted by the
330 test.
331
332 :param delete_callable: delete method
333 :param args: arguments for delete method
334 :param kwargs: keyword arguments for delete method
335 """
336 try:
337 delete_callable(*args, **kwargs)
338 # if resource is not found, this means it was deleted in the test
339 except lib_exc.NotFound:
340 pass
341
342 @classmethod
Federico Ressi61b564e2018-07-06 08:10:31 +0200343 def create_network(cls, network_name=None, client=None, external=None,
344 shared=None, provider_network_type=None,
345 provider_physical_network=None,
346 provider_segmentation_id=None, **kwargs):
347 """Create a network.
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000348
Federico Ressi61b564e2018-07-06 08:10:31 +0200349 When client is not provider and admin_client is attribute is not None
350 (for example when using BaseAdminNetworkTest base class) and using any
351 of the convenience parameters (external, shared, provider_network_type,
352 provider_physical_network and provider_segmentation_id) it silently
353 uses admin_client. If the network is not shared then it uses the same
354 project_id as regular client.
355
356 :param network_name: Human-readable name of the network
357
358 :param client: client to be used for connecting to network service
359
360 :param external: indicates whether the network has an external routing
361 facility that's not managed by the networking service.
362
363 :param shared: indicates whether this resource is shared across all
364 projects. By default, only administrative users can change this value.
365 If True and admin_client attribute is not None, then the network is
366 created under administrative project.
367
368 :param provider_network_type: the type of physical network that this
369 network should be mapped to. For example, 'flat', 'vlan', 'vxlan', or
370 'gre'. Valid values depend on a networking back-end.
371
372 :param provider_physical_network: the physical network where this
373 network should be implemented. The Networking API v2.0 does not provide
374 a way to list available physical networks. For example, the Open
375 vSwitch plug-in configuration file defines a symbolic name that maps to
376 specific bridges on each compute host.
377
378 :param provider_segmentation_id: The ID of the isolated segment on the
379 physical network. The network_type attribute defines the segmentation
380 model. For example, if the network_type value is 'vlan', this ID is a
381 vlan identifier. If the network_type value is 'gre', this ID is a gre
382 key.
383
384 :param **kwargs: extra parameters to be forwarded to network service
385 """
386
387 name = (network_name or kwargs.pop('name', None) or
388 data_utils.rand_name('test-network-'))
389
390 # translate convenience parameters
391 admin_client_required = False
392 if provider_network_type:
393 admin_client_required = True
394 kwargs['provider:network_type'] = provider_network_type
395 if provider_physical_network:
396 admin_client_required = True
397 kwargs['provider:physical_network'] = provider_physical_network
398 if provider_segmentation_id:
399 admin_client_required = True
400 kwargs['provider:segmentation_id'] = provider_segmentation_id
401 if external is not None:
402 admin_client_required = True
403 kwargs['router:external'] = bool(external)
404 if shared is not None:
405 admin_client_required = True
406 kwargs['shared'] = bool(shared)
407
408 if not client:
409 if admin_client_required and cls.admin_client:
410 # For convenience silently switch to admin client
411 client = cls.admin_client
412 if not shared:
413 # Keep this network visible from current project
414 project_id = (kwargs.get('project_id') or
415 kwargs.get('tenant_id') or
Takashi Kajinamida451772023-03-22 00:19:39 +0900416 cls.client.project_id)
Federico Ressi61b564e2018-07-06 08:10:31 +0200417 kwargs.update(project_id=project_id, tenant_id=project_id)
418 else:
419 # Use default client
420 client = cls.client
421
422 network = client.create_network(name=name, **kwargs)['network']
423 network['client'] = client
424 cls.networks.append(network)
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000425 return network
426
427 @classmethod
Federico Ressi61b564e2018-07-06 08:10:31 +0200428 def delete_network(cls, network, client=None):
429 client = client or network.get('client') or cls.client
430 client.delete_network(network['id'])
431
432 @classmethod
433 def create_shared_network(cls, network_name=None, **kwargs):
434 return cls.create_network(name=network_name, shared=True, **kwargs)
Miguel Lavalle124378b2016-09-21 16:41:47 -0500435
436 @classmethod
Sławek Kapłońskid98e27d2018-05-07 16:16:28 +0200437 def create_subnet(cls, network, gateway='', cidr=None, mask_bits=None,
Federico Ressi98f20ec2018-05-11 06:09:49 +0200438 ip_version=None, client=None, reserve_cidr=True,
Rodolfo Alonso Hernandez780d81e2024-01-14 10:02:13 +0000439 allocation_pool_size=None, **kwargs):
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200440 """Wrapper utility that returns a test subnet.
441
442 Convenient wrapper for client.create_subnet method. It reserves and
443 allocates CIDRs to avoid creating overlapping subnets.
444
445 :param network: network where to create the subnet
446 network['id'] must contain the ID of the network
447
448 :param gateway: gateway IP address
449 It can be a str or a netaddr.IPAddress
450 If gateway is not given, then it will use default address for
451 given subnet CIDR, like "192.168.0.1" for "192.168.0.0/24" CIDR
Sławek Kapłońskid98e27d2018-05-07 16:16:28 +0200452 if gateway is given as None then no gateway will be assigned
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200453
454 :param cidr: CIDR of the subnet to create
455 It can be either None, a str or a netaddr.IPNetwork instance
456
457 :param mask_bits: CIDR prefix length
458 It can be either None or a numeric value.
459 If cidr parameter is given then mask_bits is used to determinate a
460 sequence of valid CIDR to use as generated.
461 Please see netaddr.IPNetwork.subnet method documentation[1]
462
463 :param ip_version: ip version of generated subnet CIDRs
464 It can be None, IP_VERSION_4 or IP_VERSION_6
465 It has to match given either given CIDR and gateway
466
467 :param ip_version: numeric value (either IP_VERSION_4 or IP_VERSION_6)
468 this value must match CIDR and gateway IP versions if any of them is
469 given
470
471 :param client: client to be used to connect to network service
472
Federico Ressi98f20ec2018-05-11 06:09:49 +0200473 :param reserve_cidr: if True then it reserves assigned CIDR to avoid
474 using the same CIDR for further subnets in the scope of the same
475 test case class
476
Rodolfo Alonso Hernandez780d81e2024-01-14 10:02:13 +0000477 :param allocation_pool_size: if the CIDR is not defined, this method
478 will assign one in ``get_subnet_cidrs``. Once done, the allocation pool
479 will be defined reserving the number of IP addresses requested,
480 starting from the end of the assigned CIDR.
481
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200482 :param **kwargs: optional parameters to be forwarded to wrapped method
483
484 [1] http://netaddr.readthedocs.io/en/latest/tutorial_01.html#supernets-and-subnets # noqa
485 """
Rodolfo Alonso Hernandez780d81e2024-01-14 10:02:13 +0000486 def allocation_pool(cidr, pool_size):
487 start = str(netaddr.IPAddress(cidr.last) - pool_size)
488 end = str(netaddr.IPAddress(cidr.last) - 1)
489 return {'start': start, 'end': end}
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000490
491 # allow tests to use admin client
492 if not client:
493 client = cls.client
494
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200495 if gateway:
496 gateway_ip = netaddr.IPAddress(gateway)
497 if ip_version:
498 if ip_version != gateway_ip.version:
499 raise ValueError(
500 "Gateway IP version doesn't match IP version")
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000501 else:
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200502 ip_version = gateway_ip.version
Sławek Kapłońskid98e27d2018-05-07 16:16:28 +0200503 else:
504 ip_version = ip_version or cls._ip_version
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200505
506 for subnet_cidr in cls.get_subnet_cidrs(
507 ip_version=ip_version, cidr=cidr, mask_bits=mask_bits):
Federico Ressi98f20ec2018-05-11 06:09:49 +0200508 if gateway is not None:
509 kwargs['gateway_ip'] = str(gateway or (subnet_cidr.ip + 1))
Slawek Kaplonski21f53422018-11-02 16:02:09 +0100510 else:
511 kwargs['gateway_ip'] = None
Rodolfo Alonso Hernandez780d81e2024-01-14 10:02:13 +0000512 if allocation_pool_size:
513 kwargs['allocation_pools'] = [
514 allocation_pool(subnet_cidr, allocation_pool_size)]
Federico Ressi98f20ec2018-05-11 06:09:49 +0200515 try:
516 body = client.create_subnet(
517 network_id=network['id'],
518 cidr=str(subnet_cidr),
519 ip_version=subnet_cidr.version,
520 **kwargs)
521 break
522 except lib_exc.BadRequest as e:
523 if 'overlaps with another subnet' not in str(e):
524 raise
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000525 else:
526 message = 'Available CIDR for subnet creation could not be found'
527 raise ValueError(message)
528 subnet = body['subnet']
Kevin Bentonba3651c2017-09-01 17:13:01 -0700529 if client is cls.client:
530 cls.subnets.append(subnet)
531 else:
532 cls.admin_subnets.append(subnet)
Federico Ressi98f20ec2018-05-11 06:09:49 +0200533 if reserve_cidr:
534 cls.reserve_subnet_cidr(subnet_cidr)
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000535 return subnet
536
537 @classmethod
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200538 def reserve_subnet_cidr(cls, addr, **ipnetwork_kwargs):
Slawek Kaplonski17e95512024-05-02 14:12:31 +0200539 """Reserve given subnet CIDR making sure it's not used by create_subnet
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200540
541 :param addr: the CIDR address to be reserved
542 It can be a str or netaddr.IPNetwork instance
543
544 :param **ipnetwork_kwargs: optional netaddr.IPNetwork constructor
545 parameters
546 """
547
548 if not cls.try_reserve_subnet_cidr(addr, **ipnetwork_kwargs):
Bernard Cafarellic3bec862020-09-10 13:59:49 +0200549 raise ValueError('Subnet CIDR already reserved: {0!r}'.format(
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200550 addr))
551
552 @classmethod
553 def try_reserve_subnet_cidr(cls, addr, **ipnetwork_kwargs):
554 """Reserve given subnet CIDR if it hasn't been reserved before
555
556 :param addr: the CIDR address to be reserved
557 It can be a str or netaddr.IPNetwork instance
558
559 :param **ipnetwork_kwargs: optional netaddr.IPNetwork constructor
560 parameters
561
562 :return: True if it wasn't reserved before, False elsewhere.
563 """
564
565 subnet_cidr = netaddr.IPNetwork(addr, **ipnetwork_kwargs)
566 if subnet_cidr in cls.reserved_subnet_cidrs:
567 return False
568 else:
569 cls.reserved_subnet_cidrs.add(subnet_cidr)
570 return True
571
572 @classmethod
573 def get_subnet_cidrs(
574 cls, cidr=None, mask_bits=None, ip_version=None):
575 """Iterate over a sequence of unused subnet CIDR for IP version
576
577 :param cidr: CIDR of the subnet to create
578 It can be either None, a str or a netaddr.IPNetwork instance
579
580 :param mask_bits: CIDR prefix length
581 It can be either None or a numeric value.
582 If cidr parameter is given then mask_bits is used to determinate a
583 sequence of valid CIDR to use as generated.
584 Please see netaddr.IPNetwork.subnet method documentation[1]
585
586 :param ip_version: ip version of generated subnet CIDRs
587 It can be None, IP_VERSION_4 or IP_VERSION_6
588 It has to match given CIDR if given
589
590 :return: iterator over reserved CIDRs of type netaddr.IPNetwork
591
592 [1] http://netaddr.readthedocs.io/en/latest/tutorial_01.html#supernets-and-subnets # noqa
593 """
594
595 if cidr:
596 # Generate subnet CIDRs starting from given CIDR
597 # checking it is of requested IP version
598 cidr = netaddr.IPNetwork(cidr, version=ip_version)
599 else:
600 # Generate subnet CIDRs starting from configured values
601 ip_version = ip_version or cls._ip_version
602 if ip_version == const.IP_VERSION_4:
Takashi Kajinami938f2c72024-11-23 02:33:10 +0900603 mask_bits = mask_bits or CONF.network.project_network_mask_bits
604 cidr = netaddr.IPNetwork(CONF.network.project_network_cidr)
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200605 elif ip_version == const.IP_VERSION_6:
Takashi Kajinami938f2c72024-11-23 02:33:10 +0900606 mask_bits = CONF.network.project_network_v6_mask_bits
607 cidr = netaddr.IPNetwork(CONF.network.project_network_v6_cidr)
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200608 else:
609 raise ValueError('Invalid IP version: {!r}'.format(ip_version))
610
611 if mask_bits:
612 subnet_cidrs = cidr.subnet(mask_bits)
613 else:
614 subnet_cidrs = iter([cidr])
615
616 for subnet_cidr in subnet_cidrs:
617 if subnet_cidr not in cls.reserved_subnet_cidrs:
618 yield subnet_cidr
619
620 @classmethod
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000621 def create_port(cls, network, **kwargs):
622 """Wrapper utility that returns a test port."""
Edan Davidd75e48e2018-01-03 02:49:52 -0500623 if CONF.network.port_vnic_type and 'binding:vnic_type' not in kwargs:
624 kwargs['binding:vnic_type'] = CONF.network.port_vnic_type
Glenn Van de Water5d9b1402020-09-16 15:14:14 +0200625 if CONF.network.port_profile and 'binding:profile' not in kwargs:
626 kwargs['binding:profile'] = CONF.network.port_profile
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000627 body = cls.client.create_port(network_id=network['id'],
628 **kwargs)
629 port = body['port']
630 cls.ports.append(port)
631 return port
632
633 @classmethod
634 def update_port(cls, port, **kwargs):
635 """Wrapper utility that updates a test port."""
636 body = cls.client.update_port(port['id'],
637 **kwargs)
638 return body['port']
639
640 @classmethod
Genadi Chereshnyac0411e92016-07-11 16:59:42 +0300641 def _create_router_with_client(
642 cls, client, router_name=None, admin_state_up=False,
643 external_network_id=None, enable_snat=None, **kwargs
644 ):
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000645 ext_gw_info = {}
646 if external_network_id:
647 ext_gw_info['network_id'] = external_network_id
YAMAMOTO Takashi9bd4f972017-06-20 12:49:30 +0900648 if enable_snat is not None:
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000649 ext_gw_info['enable_snat'] = enable_snat
Genadi Chereshnyac0411e92016-07-11 16:59:42 +0300650 body = client.create_router(
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000651 router_name, external_gateway_info=ext_gw_info,
652 admin_state_up=admin_state_up, **kwargs)
653 router = body['router']
654 cls.routers.append(router)
655 return router
656
657 @classmethod
Genadi Chereshnyac0411e92016-07-11 16:59:42 +0300658 def create_router(cls, *args, **kwargs):
659 return cls._create_router_with_client(cls.client, *args, **kwargs)
660
661 @classmethod
662 def create_admin_router(cls, *args, **kwargs):
rajat294495c042017-06-28 15:37:16 +0530663 return cls._create_router_with_client(cls.os_admin.network_client,
Genadi Chereshnyac0411e92016-07-11 16:59:42 +0300664 *args, **kwargs)
665
666 @classmethod
Federico Ressia69dcd52018-07-06 09:45:34 +0200667 def create_floatingip(cls, external_network_id=None, port=None,
668 client=None, **kwargs):
669 """Creates a floating IP.
670
671 Create a floating IP and schedule it for later deletion.
672 If a client is passed, then it is used for deleting the IP too.
673
674 :param external_network_id: network ID where to create
675 By default this is 'CONF.network.public_network_id'.
676
677 :param port: port to bind floating IP to
678 This is translated to 'port_id=port['id']'
679 By default it is None.
680
681 :param client: network client to be used for creating and cleaning up
682 the floating IP.
683
684 :param **kwargs: additional creation parameters to be forwarded to
685 networking server.
686 """
687
688 client = client or cls.client
689 external_network_id = (external_network_id or
690 cls.external_network_id)
691
692 if port:
Federico Ressi47f6ae42018-09-24 16:19:14 +0200693 port_id = kwargs.setdefault('port_id', port['id'])
694 if port_id != port['id']:
695 message = "Port ID specified twice: {!s} != {!s}".format(
696 port_id, port['id'])
697 raise ValueError(message)
Federico Ressia69dcd52018-07-06 09:45:34 +0200698
699 fip = client.create_floatingip(external_network_id,
700 **kwargs)['floatingip']
701
702 # save client to be used later in cls.delete_floatingip
703 # for final cleanup
704 fip['client'] = client
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000705 cls.floating_ips.append(fip)
706 return fip
707
708 @classmethod
Federico Ressia69dcd52018-07-06 09:45:34 +0200709 def delete_floatingip(cls, floating_ip, client=None):
710 """Delete floating IP
711
712 :param client: Client to be used
713 If client is not given it will use the client used to create
714 the floating IP, or cls.client if unknown.
715 """
716
717 client = client or floating_ip.get('client') or cls.client
718 client.delete_floatingip(floating_ip['id'])
719
720 @classmethod
Slawek Kaplonski003fcae2019-05-26 22:38:35 +0200721 def create_port_forwarding(cls, fip_id, internal_port_id,
722 internal_port, external_port,
723 internal_ip_address=None, protocol="tcp",
724 client=None):
725 """Creates a port forwarding.
726
727 Create a port forwarding and schedule it for later deletion.
728 If a client is passed, then it is used for deleting the PF too.
729
730 :param fip_id: The ID of the floating IP address.
731
732 :param internal_port_id: The ID of the Neutron port associated to
733 the floating IP port forwarding.
734
735 :param internal_port: The TCP/UDP/other protocol port number of the
736 Neutron port fixed IP address associated to the floating ip
737 port forwarding.
738
739 :param external_port: The TCP/UDP/other protocol port number of
740 the port forwarding floating IP address.
741
742 :param internal_ip_address: The fixed IPv4 address of the Neutron
743 port associated to the floating IP port forwarding.
744
745 :param protocol: The IP protocol used in the floating IP port
746 forwarding.
747
748 :param client: network client to be used for creating and cleaning up
749 the floating IP port forwarding.
750 """
751
752 client = client or cls.client
753
754 pf = client.create_port_forwarding(
755 fip_id, internal_port_id, internal_port, external_port,
756 internal_ip_address, protocol)['port_forwarding']
757
758 # save ID of floating IP associated with port forwarding for final
759 # cleanup
760 pf['floatingip_id'] = fip_id
761
762 # save client to be used later in cls.delete_port_forwarding
763 # for final cleanup
764 pf['client'] = client
765 cls.port_forwardings.append(pf)
766 return pf
767
768 @classmethod
Flavio Fernandesa1952c62020-10-02 06:39:08 -0400769 def update_port_forwarding(cls, fip_id, pf_id, client=None, **kwargs):
770 """Wrapper utility for update_port_forwarding."""
771 client = client or cls.client
772 return client.update_port_forwarding(fip_id, pf_id, **kwargs)
773
774 @classmethod
Slawek Kaplonski003fcae2019-05-26 22:38:35 +0200775 def delete_port_forwarding(cls, pf, client=None):
776 """Delete port forwarding
777
778 :param client: Client to be used
779 If client is not given it will use the client used to create
780 the port forwarding, or cls.client if unknown.
781 """
782
783 client = client or pf.get('client') or cls.client
784 client.delete_port_forwarding(pf['floatingip_id'], pf['id'])
785
Nurmatov Mamatisa3f2bbb52021-10-20 14:33:54 +0300786 def create_local_ip(cls, network_id=None,
787 client=None, **kwargs):
788 """Creates a Local IP.
789
790 Create a Local IP and schedule it for later deletion.
791 If a client is passed, then it is used for deleting the IP too.
792
793 :param network_id: network ID where to create
794 By default this is 'CONF.network.public_network_id'.
795
796 :param client: network client to be used for creating and cleaning up
797 the Local IP.
798
799 :param **kwargs: additional creation parameters to be forwarded to
800 networking server.
801 """
802
803 client = client or cls.client
804 network_id = (network_id or
805 cls.external_network_id)
806
807 local_ip = client.create_local_ip(network_id,
808 **kwargs)['local_ip']
809
810 # save client to be used later in cls.delete_local_ip
811 # for final cleanup
812 local_ip['client'] = client
813 cls.local_ips.append(local_ip)
814 return local_ip
815
816 @classmethod
817 def delete_local_ip(cls, local_ip, client=None):
818 """Delete Local IP
819
820 :param client: Client to be used
821 If client is not given it will use the client used to create
822 the Local IP, or cls.client if unknown.
823 """
824
825 client = client or local_ip.get('client') or cls.client
826 client.delete_local_ip(local_ip['id'])
827
828 @classmethod
829 def create_local_ip_association(cls, local_ip_id, fixed_port_id,
830 fixed_ip_address=None, client=None):
831 """Creates a Local IP association.
832
833 Create a Local IP Association and schedule it for later deletion.
834 If a client is passed, then it is used for deleting the association
835 too.
836
837 :param local_ip_id: The ID of the Local IP.
838
839 :param fixed_port_id: The ID of the Neutron port
840 to be associated with the Local IP
841
842 :param fixed_ip_address: The fixed IPv4 address of the Neutron
843 port to be associated with the Local IP
844
845 :param client: network client to be used for creating and cleaning up
846 the Local IP Association.
847 """
848
849 client = client or cls.client
850
851 association = client.create_local_ip_association(
852 local_ip_id, fixed_port_id,
853 fixed_ip_address)['port_association']
854
855 # save ID of Local IP for final cleanup
856 association['local_ip_id'] = local_ip_id
857
858 # save client to be used later in
859 # cls.delete_local_ip_association for final cleanup
860 association['client'] = client
861 cls.local_ip_associations.append(association)
862 return association
863
864 @classmethod
865 def delete_local_ip_association(cls, association, client=None):
866
867 """Delete Local IP Association
868
869 :param client: Client to be used
870 If client is not given it will use the client used to create
871 the local IP association, or cls.client if unknown.
872 """
873
874 client = client or association.get('client') or cls.client
875 client.delete_local_ip_association(association['local_ip_id'],
876 association['fixed_port_id'])
877
Slawek Kaplonski003fcae2019-05-26 22:38:35 +0200878 @classmethod
Frode Nordahl1bb8e622023-10-16 15:16:34 +0200879 def create_router_interface(cls, router_id, subnet_id, client=None):
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000880 """Wrapper utility that returns a router interface."""
Frode Nordahl1bb8e622023-10-16 15:16:34 +0200881 client = client or cls.client
882 interface = client.add_router_interface_with_subnet_id(
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000883 router_id, subnet_id)
884 return interface
885
886 @classmethod
Bence Romsics46bd3af2019-09-13 10:52:41 +0200887 def add_extra_routes_atomic(cls, *args, **kwargs):
888 return cls.client.add_extra_routes_atomic(*args, **kwargs)
889
890 @classmethod
891 def remove_extra_routes_atomic(cls, *args, **kwargs):
892 return cls.client.remove_extra_routes_atomic(*args, **kwargs)
893
894 @classmethod
Sławek Kapłońskiff294062016-12-04 15:00:54 +0000895 def get_supported_qos_rule_types(cls):
896 body = cls.client.list_qos_rule_types()
897 return [rule_type['type'] for rule_type in body['rule_types']]
898
899 @classmethod
Ihar Hrachyshkab7940d92016-06-10 13:44:22 +0200900 def create_qos_policy(cls, name, description=None, shared=False,
Rodolfo Alonso Hernandeze2d062f2020-01-14 17:11:42 +0000901 project_id=None, is_default=False):
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000902 """Wrapper utility that returns a test QoS policy."""
903 body = cls.admin_client.create_qos_policy(
Rodolfo Alonso Hernandeze2d062f2020-01-14 17:11:42 +0000904 name, description, shared, project_id, is_default)
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000905 qos_policy = body['policy']
906 cls.qos_policies.append(qos_policy)
907 return qos_policy
908
909 @classmethod
elajkatdbb0b482021-05-04 17:20:07 +0200910 def create_qos_dscp_marking_rule(cls, policy_id, dscp_mark):
911 """Wrapper utility that creates and returns a QoS dscp rule."""
912 body = cls.admin_client.create_dscp_marking_rule(
913 policy_id, dscp_mark)
914 qos_rule = body['dscp_marking_rule']
915 cls.qos_rules.append(qos_rule)
916 return qos_rule
917
918 @classmethod
Jakub Libosvar83704832017-12-06 16:02:28 +0000919 def delete_router(cls, router, client=None):
920 client = client or cls.client
Aditya Vaja49819a72018-11-26 14:20:10 -0800921 if 'routes' in router:
922 client.remove_router_extra_routes(router['id'])
Jakub Libosvar83704832017-12-06 16:02:28 +0000923 body = client.list_router_interfaces(router['id'])
Chandan Kumarc125fd12017-11-15 19:41:01 +0530924 interfaces = [port for port in body['ports']
925 if port['device_owner'] in const.ROUTER_INTERFACE_OWNERS]
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000926 for i in interfaces:
927 try:
Jakub Libosvar83704832017-12-06 16:02:28 +0000928 client.remove_router_interface_with_subnet_id(
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000929 router['id'], i['fixed_ips'][0]['subnet_id'])
930 except lib_exc.NotFound:
931 pass
Jakub Libosvar83704832017-12-06 16:02:28 +0000932 client.delete_router(router['id'])
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000933
934 @classmethod
935 def create_address_scope(cls, name, is_admin=False, **kwargs):
936 if is_admin:
937 body = cls.admin_client.create_address_scope(name=name, **kwargs)
938 cls.admin_address_scopes.append(body['address_scope'])
939 else:
940 body = cls.client.create_address_scope(name=name, **kwargs)
941 cls.address_scopes.append(body['address_scope'])
942 return body['address_scope']
943
944 @classmethod
Igor Malinovskiyb80f1d02020-03-06 13:39:52 +0200945 def create_subnetpool(cls, name, is_admin=False, client=None, **kwargs):
946 if client is None:
947 client = cls.admin_client if is_admin else cls.client
948
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000949 if is_admin:
Igor Malinovskiyb80f1d02020-03-06 13:39:52 +0200950 body = client.create_subnetpool(name, **kwargs)
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000951 cls.admin_subnetpools.append(body['subnetpool'])
952 else:
Igor Malinovskiyb80f1d02020-03-06 13:39:52 +0200953 body = client.create_subnetpool(name, **kwargs)
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000954 cls.subnetpools.append(body['subnetpool'])
955 return body['subnetpool']
956
Chandan Kumarc125fd12017-11-15 19:41:01 +0530957 @classmethod
Miguel Lavalleb1c7a3d2021-01-31 19:05:22 -0600958 def create_address_group(cls, name, is_admin=False, **kwargs):
959 if is_admin:
960 body = cls.admin_client.create_address_group(name=name, **kwargs)
961 cls.admin_address_groups.append(body['address_group'])
962 else:
963 body = cls.client.create_address_group(name=name, **kwargs)
964 cls.address_groups.append(body['address_group'])
965 return body['address_group']
966
967 @classmethod
Chandan Kumarc125fd12017-11-15 19:41:01 +0530968 def create_project(cls, name=None, description=None):
969 test_project = name or data_utils.rand_name('test_project_')
970 test_description = description or data_utils.rand_name('desc_')
971 project = cls.identity_admin_client.create_project(
972 name=test_project,
973 description=test_description)['project']
974 cls.projects.append(project)
Dongcan Ye2de722e2018-07-04 11:01:37 +0000975 # Create a project will create a default security group.
Dongcan Ye2de722e2018-07-04 11:01:37 +0000976 sgs_list = cls.admin_client.list_security_groups(
977 tenant_id=project['id'])['security_groups']
Federico Ressi4c590d72018-10-10 14:01:08 +0200978 for security_group in sgs_list:
979 # Make sure delete_security_group method will use
980 # the admin client for this group
981 security_group['client'] = cls.admin_client
982 cls.security_groups.append(security_group)
Chandan Kumarc125fd12017-11-15 19:41:01 +0530983 return project
984
985 @classmethod
Federico Ressi4c590d72018-10-10 14:01:08 +0200986 def create_security_group(cls, name=None, project=None, client=None,
987 **kwargs):
988 if project:
989 client = client or cls.admin_client
990 project_id = kwargs.setdefault('project_id', project['id'])
991 tenant_id = kwargs.setdefault('tenant_id', project['id'])
992 if project_id != project['id'] or tenant_id != project['id']:
993 raise ValueError('Project ID specified multiple times')
994 else:
995 client = client or cls.client
996
997 name = name or data_utils.rand_name(cls.__name__)
998 security_group = client.create_security_group(name=name, **kwargs)[
999 'security_group']
1000 security_group['client'] = client
1001 cls.security_groups.append(security_group)
1002 return security_group
1003
1004 @classmethod
1005 def delete_security_group(cls, security_group, client=None):
1006 client = client or security_group.get('client') or cls.client
1007 client.delete_security_group(security_group['id'])
1008
1009 @classmethod
Slawek Kaplonskiaa22c9e2023-05-18 18:59:26 +02001010 def get_security_group(cls, name='default', client=None):
1011 client = client or cls.client
1012 security_groups = client.list_security_groups()['security_groups']
1013 for security_group in security_groups:
1014 if security_group['name'] == name:
1015 return security_group
1016 raise ValueError("No such security group named {!r}".format(name))
1017
1018 @classmethod
Federico Ressi4c590d72018-10-10 14:01:08 +02001019 def create_security_group_rule(cls, security_group=None, project=None,
1020 client=None, ip_version=None, **kwargs):
1021 if project:
1022 client = client or cls.admin_client
1023 project_id = kwargs.setdefault('project_id', project['id'])
1024 tenant_id = kwargs.setdefault('tenant_id', project['id'])
1025 if project_id != project['id'] or tenant_id != project['id']:
1026 raise ValueError('Project ID specified multiple times')
1027
1028 if 'security_group_id' not in kwargs:
1029 security_group = (security_group or
1030 cls.get_security_group(client=client))
1031
1032 if security_group:
1033 client = client or security_group.get('client')
1034 security_group_id = kwargs.setdefault('security_group_id',
1035 security_group['id'])
1036 if security_group_id != security_group['id']:
1037 raise ValueError('Security group ID specified multiple times.')
1038
1039 ip_version = ip_version or cls._ip_version
1040 default_params = (
1041 constants.DEFAULT_SECURITY_GROUP_RULE_PARAMS[ip_version])
Slawek Kaplonski83979b92022-12-15 14:15:12 +01001042 if (('remote_address_group_id' in kwargs or
1043 'remote_group_id' in kwargs) and
1044 'remote_ip_prefix' in default_params):
Miguel Lavalleb1c7a3d2021-01-31 19:05:22 -06001045 default_params.pop('remote_ip_prefix')
Federico Ressi4c590d72018-10-10 14:01:08 +02001046 for key, value in default_params.items():
1047 kwargs.setdefault(key, value)
1048
1049 client = client or cls.client
1050 return client.create_security_group_rule(**kwargs)[
1051 'security_group_rule']
1052
1053 @classmethod
Slawek Kaplonskiaa22c9e2023-05-18 18:59:26 +02001054 def create_default_security_group_rule(cls, **kwargs):
1055 body = cls.admin_client.create_default_security_group_rule(**kwargs)
1056 default_sg_rule = body['default_security_group_rule']
1057 cls.sg_rule_templates.append(default_sg_rule)
1058 return default_sg_rule
Chandan Kumarc125fd12017-11-15 19:41:01 +05301059
Federico Ressiab286e42018-06-19 09:52:10 +02001060 @classmethod
1061 def create_keypair(cls, client=None, name=None, **kwargs):
1062 client = client or cls.os_primary.keypairs_client
1063 name = name or data_utils.rand_name('keypair-test')
1064 keypair = client.create_keypair(name=name, **kwargs)['keypair']
1065
1066 # save client for later cleanup
1067 keypair['client'] = client
1068 cls.keypairs.append(keypair)
1069 return keypair
1070
1071 @classmethod
1072 def delete_keypair(cls, keypair, client=None):
1073 client = (client or keypair.get('client') or
1074 cls.os_primary.keypairs_client)
1075 client.delete_keypair(keypair_name=keypair['name'])
1076
Federico Ressi82e83e32018-07-03 14:19:55 +02001077 @classmethod
1078 def create_trunk(cls, port=None, subports=None, client=None, **kwargs):
1079 """Create network trunk
1080
1081 :param port: dictionary containing parent port ID (port['id'])
1082 :param client: client to be used for connecting to networking service
1083 :param **kwargs: extra parameters to be forwarded to network service
1084
1085 :returns: dictionary containing created trunk details
1086 """
1087 client = client or cls.client
1088
1089 if port:
1090 kwargs['port_id'] = port['id']
1091
1092 trunk = client.create_trunk(subports=subports, **kwargs)['trunk']
1093 # Save client reference for later deletion
1094 trunk['client'] = client
1095 cls.trunks.append(trunk)
1096 return trunk
1097
1098 @classmethod
Huifeng Le1c9f40b2018-11-07 01:14:21 +08001099 def delete_trunk(cls, trunk, client=None, detach_parent_port=True):
Federico Ressi82e83e32018-07-03 14:19:55 +02001100 """Delete network trunk
1101
1102 :param trunk: dictionary containing trunk ID (trunk['id'])
1103
1104 :param client: client to be used for connecting to networking service
1105 """
1106 client = client or trunk.get('client') or cls.client
1107 trunk.update(client.show_trunk(trunk['id'])['trunk'])
1108
1109 if not trunk['admin_state_up']:
1110 # Cannot touch trunk before admin_state_up is True
1111 client.update_trunk(trunk['id'], admin_state_up=True)
1112 if trunk['sub_ports']:
1113 # Removes trunk ports before deleting it
1114 cls._try_delete_resource(client.remove_subports, trunk['id'],
1115 trunk['sub_ports'])
1116
1117 # we have to detach the interface from the server before
1118 # the trunk can be deleted.
1119 parent_port = {'id': trunk['port_id']}
1120
1121 def is_parent_port_detached():
1122 parent_port.update(client.show_port(parent_port['id'])['port'])
1123 return not parent_port['device_id']
1124
Huifeng Le1c9f40b2018-11-07 01:14:21 +08001125 if detach_parent_port and not is_parent_port_detached():
Federico Ressi82e83e32018-07-03 14:19:55 +02001126 # this could probably happen when trunk is deleted and parent port
1127 # has been assigned to a VM that is still running. Here we are
1128 # assuming that device_id points to such VM.
1129 cls.os_primary.compute.InterfacesClient().delete_interface(
1130 parent_port['device_id'], parent_port['id'])
1131 utils.wait_until_true(is_parent_port_detached)
1132
1133 client.delete_trunk(trunk['id'])
1134
Harald Jensåsc9782fa2019-06-03 22:35:41 +02001135 @classmethod
1136 def create_conntrack_helper(cls, router_id, helper, protocol, port,
1137 client=None):
1138 """Create a conntrack helper
1139
1140 Create a conntrack helper and schedule it for later deletion. If a
1141 client is passed, then it is used for deleteing the CTH too.
1142
1143 :param router_id: The ID of the Neutron router associated to the
1144 conntrack helper.
1145
1146 :param helper: The conntrack helper module alias
1147
1148 :param protocol: The conntrack helper IP protocol used in the conntrack
1149 helper.
1150
1151 :param port: The conntrack helper IP protocol port number for the
1152 conntrack helper.
1153
1154 :param client: network client to be used for creating and cleaning up
1155 the conntrack helper.
1156 """
1157
1158 client = client or cls.client
1159
1160 cth = client.create_conntrack_helper(router_id, helper, protocol,
1161 port)['conntrack_helper']
1162
1163 # save ID of router associated with conntrack helper for final cleanup
1164 cth['router_id'] = router_id
1165
1166 # save client to be used later in cls.delete_conntrack_helper for final
1167 # cleanup
1168 cth['client'] = client
1169 cls.conntrack_helpers.append(cth)
1170 return cth
1171
1172 @classmethod
1173 def delete_conntrack_helper(cls, cth, client=None):
1174 """Delete conntrack helper
1175
1176 :param client: Client to be used
1177 If client is not given it will use the client used to create the
1178 conntrack helper, or cls.client if unknown.
1179 """
1180
1181 client = client or cth.get('client') or cls.client
1182 client.delete_conntrack_helper(cth['router_id'], cth['id'])
1183
yangjianfeng2936a292022-02-04 11:22:11 +08001184 @classmethod
1185 def create_ndp_proxy(cls, router_id, port_id, client=None, **kwargs):
1186 """Creates a ndp proxy.
1187
1188 Create a ndp proxy and schedule it for later deletion.
1189 If a client is passed, then it is used for deleting the NDP proxy too.
1190
1191 :param router_id: router ID where to create the ndp proxy.
1192
1193 :param port_id: port ID which the ndp proxy associate with
1194
1195 :param client: network client to be used for creating and cleaning up
1196 the ndp proxy.
1197
1198 :param **kwargs: additional creation parameters to be forwarded to
1199 networking server.
1200 """
1201 client = client or cls.client
1202
1203 data = {'router_id': router_id, 'port_id': port_id}
1204 if kwargs:
1205 data.update(kwargs)
1206 ndp_proxy = client.create_ndp_proxy(**data)['ndp_proxy']
1207
1208 # save client to be used later in cls.delete_ndp_proxy
1209 # for final cleanup
1210 ndp_proxy['client'] = client
1211 cls.ndp_proxies.append(ndp_proxy)
1212 return ndp_proxy
1213
1214 @classmethod
1215 def delete_ndp_proxy(cls, ndp_proxy, client=None):
1216 """Delete ndp proxy
1217
1218 :param client: Client to be used
1219 If client is not given it will use the client used to create
1220 the ndp proxy, or cls.client if unknown.
1221 """
1222 client = client or ndp_proxy.get('client') or cls.client
1223 client.delete_ndp_proxy(ndp_proxy['id'])
1224
Rodolfo Alonso Hernandez8f726122024-06-24 18:20:15 +00001225 @classmethod
1226 def get_loaded_network_extensions(cls):
1227 """Return the network service loaded extensions
1228
1229 :return: list of strings with the alias of the network service loaded
1230 extensions.
1231 """
1232 body = cls.client.list_extensions()
1233 return [net_ext['alias'] for net_ext in body['extensions']]
1234
Daniel Mellado3c0aeab2016-01-29 11:30:25 +00001235
1236class BaseAdminNetworkTest(BaseNetworkTest):
1237
1238 credentials = ['primary', 'admin']
1239
1240 @classmethod
1241 def setup_clients(cls):
1242 super(BaseAdminNetworkTest, cls).setup_clients()
fumihiko kakumaa216fc12017-07-14 10:43:29 +09001243 cls.admin_client = cls.os_admin.network_client
Michael Polenchukccb43fa2022-09-05 13:29:57 +04001244 cls.admin_client.auth_provider.get_token()
Jakub Libosvarf5758012017-08-15 13:45:30 +00001245 cls.identity_admin_client = cls.os_admin.projects_client
Daniel Mellado3c0aeab2016-01-29 11:30:25 +00001246
1247 @classmethod
1248 def create_metering_label(cls, name, description):
1249 """Wrapper utility that returns a test metering label."""
1250 body = cls.admin_client.create_metering_label(
1251 description=description,
1252 name=data_utils.rand_name("metering-label"))
1253 metering_label = body['metering_label']
1254 cls.metering_labels.append(metering_label)
1255 return metering_label
1256
1257 @classmethod
1258 def create_metering_label_rule(cls, remote_ip_prefix, direction,
1259 metering_label_id):
1260 """Wrapper utility that returns a test metering label rule."""
1261 body = cls.admin_client.create_metering_label_rule(
1262 remote_ip_prefix=remote_ip_prefix, direction=direction,
1263 metering_label_id=metering_label_id)
1264 metering_label_rule = body['metering_label_rule']
1265 cls.metering_label_rules.append(metering_label_rule)
1266 return metering_label_rule
1267
1268 @classmethod
Kailun Qineaaf9782018-12-20 04:45:01 +08001269 def create_network_segment_range(cls, name, shared,
1270 project_id, network_type,
1271 physical_network, minimum,
1272 maximum):
1273 """Wrapper utility that returns a test network segment range."""
1274 network_segment_range_args = {'name': name,
1275 'shared': shared,
1276 'project_id': project_id,
1277 'network_type': network_type,
1278 'physical_network': physical_network,
1279 'minimum': minimum,
1280 'maximum': maximum}
1281 body = cls.admin_client.create_network_segment_range(
1282 **network_segment_range_args)
1283 network_segment_range = body['network_segment_range']
1284 cls.network_segment_ranges.append(network_segment_range)
1285 return network_segment_range
1286
1287 @classmethod
Daniel Mellado3c0aeab2016-01-29 11:30:25 +00001288 def create_flavor(cls, name, description, service_type):
1289 """Wrapper utility that returns a test flavor."""
1290 body = cls.admin_client.create_flavor(
1291 description=description, service_type=service_type,
1292 name=name)
1293 flavor = body['flavor']
1294 cls.flavors.append(flavor)
1295 return flavor
1296
1297 @classmethod
1298 def create_service_profile(cls, description, metainfo, driver):
1299 """Wrapper utility that returns a test service profile."""
1300 body = cls.admin_client.create_service_profile(
1301 driver=driver, metainfo=metainfo, description=description)
1302 service_profile = body['service_profile']
1303 cls.service_profiles.append(service_profile)
1304 return service_profile
1305
1306 @classmethod
Nguyen Phuong An67993fc2017-11-24 11:30:25 +07001307 def create_log(cls, name, description=None,
1308 resource_type='security_group', resource_id=None,
1309 target_id=None, event='ALL', enabled=True):
1310 """Wrapper utility that returns a test log object."""
1311 log_args = {'name': name,
Nguyen Phuong An67993fc2017-11-24 11:30:25 +07001312 'resource_type': resource_type,
1313 'resource_id': resource_id,
1314 'target_id': target_id,
1315 'event': event,
1316 'enabled': enabled}
Slawek Kaplonskid9fe3022021-08-11 15:25:16 +02001317 if description:
1318 log_args['description'] = description
Nguyen Phuong An67993fc2017-11-24 11:30:25 +07001319 body = cls.admin_client.create_log(**log_args)
1320 log_object = body['log']
1321 cls.log_objects.append(log_object)
1322 return log_object
1323
1324 @classmethod
Daniel Mellado3c0aeab2016-01-29 11:30:25 +00001325 def get_unused_ip(cls, net_id, ip_version=None):
Gary Kotton011345f2016-06-15 08:04:31 -07001326 """Get an unused ip address in a allocation pool of net"""
Daniel Mellado3c0aeab2016-01-29 11:30:25 +00001327 body = cls.admin_client.list_ports(network_id=net_id)
1328 ports = body['ports']
1329 used_ips = []
1330 for port in ports:
1331 used_ips.extend(
1332 [fixed_ip['ip_address'] for fixed_ip in port['fixed_ips']])
1333 body = cls.admin_client.list_subnets(network_id=net_id)
1334 subnets = body['subnets']
1335
1336 for subnet in subnets:
1337 if ip_version and subnet['ip_version'] != ip_version:
1338 continue
1339 cidr = subnet['cidr']
1340 allocation_pools = subnet['allocation_pools']
1341 iterators = []
1342 if allocation_pools:
1343 for allocation_pool in allocation_pools:
1344 iterators.append(netaddr.iter_iprange(
1345 allocation_pool['start'], allocation_pool['end']))
1346 else:
1347 net = netaddr.IPNetwork(cidr)
1348
1349 def _iterip():
1350 for ip in net:
1351 if ip not in (net.network, net.broadcast):
1352 yield ip
1353 iterators.append(iter(_iterip()))
1354
1355 for iterator in iterators:
1356 for ip in iterator:
1357 if str(ip) not in used_ips:
1358 return str(ip)
1359
1360 message = (
1361 "net(%s) has no usable IP address in allocation pools" % net_id)
1362 raise exceptions.InvalidConfiguration(message)
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001363
Lajos Katona2f904652018-08-23 14:04:56 +02001364 @classmethod
1365 def create_provider_network(cls, physnet_name, start_segmentation_id,
Frode Nordahl1bb8e622023-10-16 15:16:34 +02001366 max_attempts=30, external=False):
Lajos Katona2f904652018-08-23 14:04:56 +02001367 segmentation_id = start_segmentation_id
Lajos Katona7eb67252019-01-14 12:55:35 +01001368 for attempts in range(max_attempts):
Lajos Katona2f904652018-08-23 14:04:56 +02001369 try:
Lajos Katona7eb67252019-01-14 12:55:35 +01001370 return cls.create_network(
Lajos Katona2f904652018-08-23 14:04:56 +02001371 name=data_utils.rand_name('test_net'),
Frode Nordahl1bb8e622023-10-16 15:16:34 +02001372 shared=not external,
1373 external=external,
Lajos Katona2f904652018-08-23 14:04:56 +02001374 provider_network_type='vlan',
1375 provider_physical_network=physnet_name,
1376 provider_segmentation_id=segmentation_id)
Lajos Katona2f904652018-08-23 14:04:56 +02001377 except lib_exc.Conflict:
Lajos Katona2f904652018-08-23 14:04:56 +02001378 segmentation_id += 1
1379 if segmentation_id > 4095:
1380 raise lib_exc.TempestException(
1381 "No free segmentation id was found for provider "
1382 "network creation!")
1383 time.sleep(CONF.network.build_interval)
Lajos Katona7eb67252019-01-14 12:55:35 +01001384 LOG.exception("Failed to create provider network after "
1385 "%d attempts", max_attempts)
1386 raise lib_exc.TimeoutException
Lajos Katona2f904652018-08-23 14:04:56 +02001387
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001388
Sławek Kapłońskiff294062016-12-04 15:00:54 +00001389def require_qos_rule_type(rule_type):
1390 def decorator(f):
1391 @functools.wraps(f)
1392 def wrapper(self, *func_args, **func_kwargs):
1393 if rule_type not in self.get_supported_qos_rule_types():
1394 raise self.skipException(
1395 "%s rule type is required." % rule_type)
1396 return f(self, *func_args, **func_kwargs)
1397 return wrapper
1398 return decorator
1399
1400
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001401def _require_sorting(f):
1402 @functools.wraps(f)
1403 def inner(self, *args, **kwargs):
Chandan Kumarc125fd12017-11-15 19:41:01 +05301404 if not tutils.is_extension_enabled("sorting", "network"):
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001405 self.skipTest('Sorting feature is required')
1406 return f(self, *args, **kwargs)
1407 return inner
1408
1409
1410def _require_pagination(f):
1411 @functools.wraps(f)
1412 def inner(self, *args, **kwargs):
Chandan Kumarc125fd12017-11-15 19:41:01 +05301413 if not tutils.is_extension_enabled("pagination", "network"):
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001414 self.skipTest('Pagination feature is required')
1415 return f(self, *args, **kwargs)
1416 return inner
1417
1418
1419class BaseSearchCriteriaTest(BaseNetworkTest):
1420
1421 # This should be defined by subclasses to reflect resource name to test
1422 resource = None
1423
Armando Migliaccio57581c62016-07-01 10:13:19 -07001424 field = 'name'
1425
Ihar Hrachyshkaa8fe5a12016-05-24 14:50:58 +02001426 # NOTE(ihrachys): some names, like those starting with an underscore (_)
1427 # are sorted differently depending on whether the plugin implements native
1428 # sorting support, or not. So we avoid any such cases here, sticking to
1429 # alphanumeric. Also test a case when there are multiple resources with the
1430 # same name
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001431 resource_names = ('test1', 'abc1', 'test10', '123test') + ('test1',)
1432
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001433 force_tenant_isolation = True
1434
Ihar Hrachyshkaa8fe5a12016-05-24 14:50:58 +02001435 list_kwargs = {}
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001436
Ihar Hrachyshkab7940d92016-06-10 13:44:22 +02001437 list_as_admin = False
1438
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001439 def assertSameOrder(self, original, actual):
1440 # gracefully handle iterators passed
1441 original = list(original)
1442 actual = list(actual)
1443 self.assertEqual(len(original), len(actual))
1444 for expected, res in zip(original, actual):
Armando Migliaccio57581c62016-07-01 10:13:19 -07001445 self.assertEqual(expected[self.field], res[self.field])
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001446
1447 @utils.classproperty
1448 def plural_name(self):
1449 return '%ss' % self.resource
1450
Ihar Hrachyshkab7940d92016-06-10 13:44:22 +02001451 @property
1452 def list_client(self):
1453 return self.admin_client if self.list_as_admin else self.client
1454
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001455 def list_method(self, *args, **kwargs):
Ihar Hrachyshkab7940d92016-06-10 13:44:22 +02001456 method = getattr(self.list_client, 'list_%s' % self.plural_name)
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001457 kwargs.update(self.list_kwargs)
1458 return method(*args, **kwargs)
1459
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001460 def get_bare_url(self, url):
1461 base_url = self.client.base_url
zheng.yong74e760a2019-05-22 14:16:14 +08001462 base_url_normalized = utils.normalize_url(base_url)
1463 url_normalized = utils.normalize_url(url)
1464 self.assertTrue(url_normalized.startswith(base_url_normalized))
1465 return url_normalized[len(base_url_normalized):]
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001466
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001467 @classmethod
1468 def _extract_resources(cls, body):
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001469 return body[cls.plural_name]
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001470
yatinkarel02743812024-08-13 18:14:37 +05301471 @classmethod
1472 def _test_resources(cls, resources):
1473 return [res for res in resources if res["name"] in cls.resource_names]
1474
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001475 def _test_list_sorts(self, direction):
1476 sort_args = {
1477 'sort_dir': direction,
Armando Migliaccio57581c62016-07-01 10:13:19 -07001478 'sort_key': self.field
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001479 }
1480 body = self.list_method(**sort_args)
1481 resources = self._extract_resources(body)
1482 self.assertNotEmpty(
1483 resources, "%s list returned is empty" % self.resource)
Armando Migliaccio57581c62016-07-01 10:13:19 -07001484 retrieved_names = [res[self.field] for res in resources]
Martin Kopec71a73242024-01-17 12:02:24 +01001485 # sort without taking into account whether the network is named with
1486 # a capital letter or not
1487 expected = sorted(retrieved_names, key=lambda v: v.upper())
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001488 if direction == constants.SORT_DIRECTION_DESC:
1489 expected = list(reversed(expected))
1490 self.assertEqual(expected, retrieved_names)
1491
1492 @_require_sorting
1493 def _test_list_sorts_asc(self):
1494 self._test_list_sorts(constants.SORT_DIRECTION_ASC)
1495
1496 @_require_sorting
1497 def _test_list_sorts_desc(self):
1498 self._test_list_sorts(constants.SORT_DIRECTION_DESC)
1499
1500 @_require_pagination
1501 def _test_list_pagination(self):
1502 for limit in range(1, len(self.resource_names) + 1):
1503 pagination_args = {
1504 'limit': limit,
1505 }
1506 body = self.list_method(**pagination_args)
1507 resources = self._extract_resources(body)
1508 self.assertEqual(limit, len(resources))
1509
1510 @_require_pagination
1511 def _test_list_no_pagination_limit_0(self):
1512 pagination_args = {
1513 'limit': 0,
1514 }
1515 body = self.list_method(**pagination_args)
1516 resources = self._extract_resources(body)
Béla Vancsicsf1806182016-08-23 07:36:18 +02001517 self.assertGreaterEqual(len(resources), len(self.resource_names))
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001518
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001519 def _test_list_pagination_iteratively(self, lister):
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001520 # first, collect all resources for later comparison
1521 sort_args = {
1522 'sort_dir': constants.SORT_DIRECTION_ASC,
Armando Migliaccio57581c62016-07-01 10:13:19 -07001523 'sort_key': self.field
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001524 }
1525 body = self.list_method(**sort_args)
yatinkarel02743812024-08-13 18:14:37 +05301526 total_resources = self._extract_resources(body)
1527 expected_resources = self._test_resources(total_resources)
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001528 self.assertNotEmpty(expected_resources)
1529
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001530 resources = lister(
yatinkarel02743812024-08-13 18:14:37 +05301531 len(total_resources), sort_args
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001532 )
1533
1534 # finally, compare that the list retrieved in one go is identical to
1535 # the one containing pagination results
1536 self.assertSameOrder(expected_resources, resources)
1537
1538 def _list_all_with_marker(self, niterations, sort_args):
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001539 # paginate resources one by one, using last fetched resource as a
1540 # marker
1541 resources = []
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001542 for i in range(niterations):
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001543 pagination_args = sort_args.copy()
1544 pagination_args['limit'] = 1
1545 if resources:
1546 pagination_args['marker'] = resources[-1]['id']
1547 body = self.list_method(**pagination_args)
1548 resources_ = self._extract_resources(body)
yatinkarela8c221c2024-08-26 16:40:38 +05301549 # Empty resource list can be returned when any concurrent
1550 # tests delete them
1551 self.assertGreaterEqual(1, len(resources_))
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001552 resources.extend(resources_)
yatinkarel02743812024-08-13 18:14:37 +05301553 return self._test_resources(resources)
Ihar Hrachyshka59382252016-04-05 15:54:33 +02001554
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001555 @_require_pagination
1556 @_require_sorting
1557 def _test_list_pagination_with_marker(self):
1558 self._test_list_pagination_iteratively(self._list_all_with_marker)
1559
1560 def _list_all_with_hrefs(self, niterations, sort_args):
1561 # paginate resources one by one, using next href links
1562 resources = []
1563 prev_links = {}
1564
1565 for i in range(niterations):
1566 if prev_links:
1567 uri = self.get_bare_url(prev_links['next'])
1568 else:
Ihar Hrachyshka7f79fe62016-06-07 21:23:44 +02001569 sort_args.update(self.list_kwargs)
Ihar Hrachyshkab7940d92016-06-10 13:44:22 +02001570 uri = self.list_client.build_uri(
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001571 self.plural_name, limit=1, **sort_args)
Ihar Hrachyshkab7940d92016-06-10 13:44:22 +02001572 prev_links, body = self.list_client.get_uri_with_links(
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001573 self.plural_name, uri
1574 )
1575 resources_ = self._extract_resources(body)
yatinkarela8c221c2024-08-26 16:40:38 +05301576 # Empty resource list can be returned when any concurrent
1577 # tests delete them
1578 self.assertGreaterEqual(1, len(resources_))
yatinkarel02743812024-08-13 18:14:37 +05301579 resources.extend(self._test_resources(resources_))
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001580
1581 # The last element is empty and does not contain 'next' link
1582 uri = self.get_bare_url(prev_links['next'])
1583 prev_links, body = self.client.get_uri_with_links(
1584 self.plural_name, uri
1585 )
1586 self.assertNotIn('next', prev_links)
1587
1588 # Now walk backwards and compare results
1589 resources2 = []
1590 for i in range(niterations):
1591 uri = self.get_bare_url(prev_links['previous'])
Ihar Hrachyshkab7940d92016-06-10 13:44:22 +02001592 prev_links, body = self.list_client.get_uri_with_links(
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001593 self.plural_name, uri
1594 )
1595 resources_ = self._extract_resources(body)
yatinkarela8c221c2024-08-26 16:40:38 +05301596 # Empty resource list can be returned when any concurrent
1597 # tests delete them
1598 self.assertGreaterEqual(1, len(resources_))
yatinkarel02743812024-08-13 18:14:37 +05301599 resources2.extend(self._test_resources(resources_))
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001600
1601 self.assertSameOrder(resources, reversed(resources2))
1602
1603 return resources
1604
1605 @_require_pagination
1606 @_require_sorting
1607 def _test_list_pagination_with_href_links(self):
1608 self._test_list_pagination_iteratively(self._list_all_with_hrefs)
1609
1610 @_require_pagination
1611 @_require_sorting
1612 def _test_list_pagination_page_reverse_with_href_links(
1613 self, direction=constants.SORT_DIRECTION_ASC):
1614 pagination_args = {
1615 'sort_dir': direction,
Armando Migliaccio57581c62016-07-01 10:13:19 -07001616 'sort_key': self.field,
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001617 }
1618 body = self.list_method(**pagination_args)
yatinkarel02743812024-08-13 18:14:37 +05301619 total_resources = self._extract_resources(body)
1620 expected_resources = self._test_resources(total_resources)
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001621
1622 page_size = 2
1623 pagination_args['limit'] = page_size
1624
1625 prev_links = {}
1626 resources = []
yatinkarel02743812024-08-13 18:14:37 +05301627 num_resources = len(total_resources)
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001628 niterations = int(math.ceil(float(num_resources) / page_size))
1629 for i in range(niterations):
1630 if prev_links:
1631 uri = self.get_bare_url(prev_links['previous'])
1632 else:
Ihar Hrachyshka7f79fe62016-06-07 21:23:44 +02001633 pagination_args.update(self.list_kwargs)
Ihar Hrachyshkab7940d92016-06-10 13:44:22 +02001634 uri = self.list_client.build_uri(
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001635 self.plural_name, page_reverse=True, **pagination_args)
Ihar Hrachyshkab7940d92016-06-10 13:44:22 +02001636 prev_links, body = self.list_client.get_uri_with_links(
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001637 self.plural_name, uri
1638 )
yatinkarel02743812024-08-13 18:14:37 +05301639 resources_ = self._test_resources(self._extract_resources(body))
Béla Vancsicsf1806182016-08-23 07:36:18 +02001640 self.assertGreaterEqual(page_size, len(resources_))
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001641 resources.extend(reversed(resources_))
1642
1643 self.assertSameOrder(expected_resources, reversed(resources))
1644
1645 @_require_pagination
1646 @_require_sorting
1647 def _test_list_pagination_page_reverse_asc(self):
1648 self._test_list_pagination_page_reverse(
1649 direction=constants.SORT_DIRECTION_ASC)
1650
1651 @_require_pagination
1652 @_require_sorting
1653 def _test_list_pagination_page_reverse_desc(self):
1654 self._test_list_pagination_page_reverse(
1655 direction=constants.SORT_DIRECTION_DESC)
1656
1657 def _test_list_pagination_page_reverse(self, direction):
1658 pagination_args = {
1659 'sort_dir': direction,
Armando Migliaccio57581c62016-07-01 10:13:19 -07001660 'sort_key': self.field,
Ihar Hrachyshkaaeb03a02016-05-18 20:03:18 +02001661 'limit': 3,
1662 }
1663 body = self.list_method(**pagination_args)
1664 expected_resources = self._extract_resources(body)
1665
1666 pagination_args['limit'] -= 1
1667 pagination_args['marker'] = expected_resources[-1]['id']
1668 pagination_args['page_reverse'] = True
1669 body = self.list_method(**pagination_args)
1670
1671 self.assertSameOrder(
1672 # the last entry is not included in 2nd result when used as a
1673 # marker
1674 expected_resources[:-1],
1675 self._extract_resources(body))
Victor Morales1be97b42016-09-05 08:50:06 -05001676
Hongbin Lu54f55922018-07-12 19:05:39 +00001677 @tutils.requires_ext(extension="filter-validation", service="network")
1678 def _test_list_validation_filters(
1679 self, validation_args, filter_is_valid=True):
1680 if not filter_is_valid:
1681 self.assertRaises(lib_exc.BadRequest, self.list_method,
1682 **validation_args)
1683 else:
1684 body = self.list_method(**validation_args)
1685 resources = self._extract_resources(body)
1686 for resource in resources:
1687 self.assertIn(resource['name'], self.resource_names)