ZhiQiang Fan | 39f9722 | 2013-09-20 04:49:44 +0800 | [diff] [blame] | 1 | # Copyright 2012 OpenStack Foundation |
Sean Dague | 6dbc6da | 2013-05-08 17:49:46 -0400 | [diff] [blame] | 2 | # Copyright 2013 IBM Corp. |
| 3 | # All Rights Reserved. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 6 | # not use this file except in compliance with the License. You may obtain |
| 7 | # a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | # License for the specific language governing permissions and limitations |
| 15 | # under the License. |
| 16 | |
Dan Smith | 49c2b3b | 2023-04-26 15:52:22 -0700 | [diff] [blame] | 17 | import copy |
Martin Kopec | 02af6a4 | 2020-03-03 12:39:12 +0000 | [diff] [blame] | 18 | import os |
melanie witt | a0b161b | 2023-12-01 23:41:44 +0000 | [diff] [blame] | 19 | import re |
| 20 | import shutil |
Sean Dague | 6dbc6da | 2013-05-08 17:49:46 -0400 | [diff] [blame] | 21 | import subprocess |
melanie witt | a0b161b | 2023-12-01 23:41:44 +0000 | [diff] [blame] | 22 | import tarfile |
| 23 | import tempfile |
Sean Dague | 6dbc6da | 2013-05-08 17:49:46 -0400 | [diff] [blame] | 24 | |
Sean Dague | 6dbc6da | 2013-05-08 17:49:46 -0400 | [diff] [blame] | 25 | import netaddr |
Soniya Vyas | 795ef25 | 2020-12-10 19:07:23 +0530 | [diff] [blame] | 26 | |
Doug Hellmann | 583ce2c | 2015-03-11 14:55:46 +0000 | [diff] [blame] | 27 | from oslo_log import log |
Andrey Pavlov | c8bd4b1 | 2015-08-17 10:20:17 +0300 | [diff] [blame] | 28 | from oslo_serialization import jsonutils as json |
Yatin Kumbhare | ee4924c | 2016-06-09 15:12:06 +0530 | [diff] [blame] | 29 | from oslo_utils import netutils |
Sean Dague | 6dbc6da | 2013-05-08 17:49:46 -0400 | [diff] [blame] | 30 | |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 31 | from tempest.common import compute |
Masayuki Igawa | 4ded9f0 | 2014-02-17 15:05:59 +0900 | [diff] [blame] | 32 | from tempest.common.utils.linux import remote_client |
Ihar Hrachyshka | f9227c0 | 2016-09-15 11:16:47 +0000 | [diff] [blame] | 33 | from tempest.common.utils import net_utils |
Ken'ichi Ohmichi | 0eb153c | 2015-07-13 02:18:25 +0000 | [diff] [blame] | 34 | from tempest.common import waiters |
Matthew Treinish | 6c07229 | 2014-01-29 19:15:52 +0000 | [diff] [blame] | 35 | from tempest import config |
Giulio Fidente | 92f7719 | 2013-08-26 17:13:28 +0200 | [diff] [blame] | 36 | from tempest import exceptions |
Ghanshyam Mann | 09c4eb9 | 2019-06-04 13:07:12 +0000 | [diff] [blame] | 37 | from tempest.lib.common import api_version_utils |
Ken'ichi Ohmichi | be4fb50 | 2017-03-10 10:04:48 -0800 | [diff] [blame] | 38 | from tempest.lib.common.utils import data_utils |
Jordan Pittier | 9e227c5 | 2016-02-09 14:35:18 +0100 | [diff] [blame] | 39 | from tempest.lib.common.utils import test_utils |
Andrea Frittoli (andreaf) | db9672e | 2016-02-23 14:07:24 -0500 | [diff] [blame] | 40 | from tempest.lib import exceptions as lib_exc |
Sean Dague | 6dbc6da | 2013-05-08 17:49:46 -0400 | [diff] [blame] | 41 | import tempest.test |
Sean Dague | 6dbc6da | 2013-05-08 17:49:46 -0400 | [diff] [blame] | 42 | |
Matthew Treinish | 6c07229 | 2014-01-29 19:15:52 +0000 | [diff] [blame] | 43 | CONF = config.CONF |
Sean Dague | 6dbc6da | 2013-05-08 17:49:46 -0400 | [diff] [blame] | 44 | |
Attila Fazekas | fb7552a | 2013-08-27 13:02:26 +0200 | [diff] [blame] | 45 | LOG = log.getLogger(__name__) |
| 46 | |
Ghanshyam Mann | 09c4eb9 | 2019-06-04 13:07:12 +0000 | [diff] [blame] | 47 | LATEST_MICROVERSION = 'latest' |
| 48 | |
Sean Dague | 6dbc6da | 2013-05-08 17:49:46 -0400 | [diff] [blame] | 49 | |
Andrea Frittoli | 2e733b5 | 2014-07-16 14:12:11 +0100 | [diff] [blame] | 50 | class ScenarioTest(tempest.test.BaseTestCase): |
Andrea Frittoli | 486ede7 | 2014-09-25 11:50:05 +0100 | [diff] [blame] | 51 | """Base class for scenario tests. Uses tempest own clients. """ |
Andrea Frittoli | 2e733b5 | 2014-07-16 14:12:11 +0100 | [diff] [blame] | 52 | |
Ghanshyam Mann | 6428139 | 2021-03-24 18:48:38 -0500 | [diff] [blame] | 53 | credentials = ['primary', 'admin'] |
Emily Hugenbruch | 5e2d2a2 | 2015-02-25 21:35:45 +0000 | [diff] [blame] | 54 | |
Ghanshyam Mann | 09c4eb9 | 2019-06-04 13:07:12 +0000 | [diff] [blame] | 55 | compute_min_microversion = None |
| 56 | compute_max_microversion = LATEST_MICROVERSION |
| 57 | volume_min_microversion = None |
| 58 | volume_max_microversion = LATEST_MICROVERSION |
| 59 | placement_min_microversion = None |
| 60 | placement_max_microversion = LATEST_MICROVERSION |
| 61 | |
| 62 | @classmethod |
| 63 | def skip_checks(cls): |
| 64 | super(ScenarioTest, cls).skip_checks() |
| 65 | api_version_utils.check_skip_with_microversion( |
| 66 | cls.compute_min_microversion, cls.compute_max_microversion, |
| 67 | CONF.compute.min_microversion, CONF.compute.max_microversion) |
| 68 | api_version_utils.check_skip_with_microversion( |
| 69 | cls.volume_min_microversion, cls.volume_max_microversion, |
| 70 | CONF.volume.min_microversion, CONF.volume.max_microversion) |
| 71 | api_version_utils.check_skip_with_microversion( |
| 72 | cls.placement_min_microversion, cls.placement_max_microversion, |
| 73 | CONF.placement.min_microversion, CONF.placement.max_microversion) |
| 74 | |
| 75 | @classmethod |
| 76 | def resource_setup(cls): |
| 77 | super(ScenarioTest, cls).resource_setup() |
| 78 | cls.compute_request_microversion = ( |
| 79 | api_version_utils.select_request_microversion( |
| 80 | cls.compute_min_microversion, |
| 81 | CONF.compute.min_microversion)) |
| 82 | cls.volume_request_microversion = ( |
| 83 | api_version_utils.select_request_microversion( |
| 84 | cls.volume_min_microversion, |
| 85 | CONF.volume.min_microversion)) |
| 86 | cls.placement_request_microversion = ( |
| 87 | api_version_utils.select_request_microversion( |
| 88 | cls.placement_min_microversion, |
| 89 | CONF.placement.min_microversion)) |
| 90 | |
Ghanshyam Mann | 18b45d7 | 2021-12-07 12:37:29 -0600 | [diff] [blame] | 91 | cls.setup_api_microversion_fixture( |
| 92 | compute_microversion=cls.compute_request_microversion, |
| 93 | volume_microversion=cls.volume_request_microversion, |
| 94 | placement_microversion=cls.placement_request_microversion) |
Ghanshyam Mann | 09c4eb9 | 2019-06-04 13:07:12 +0000 | [diff] [blame] | 95 | |
Dan Smith | 49c2b3b | 2023-04-26 15:52:22 -0700 | [diff] [blame] | 96 | @classmethod |
| 97 | def setup_credentials(cls): |
| 98 | # Setting network=True, subnet=True creates a default network |
| 99 | cls.set_network_resources( |
| 100 | network=True, |
| 101 | subnet=True, |
| 102 | router=True, |
| 103 | dhcp=True) |
| 104 | super(ScenarioTest, cls).setup_credentials() |
| 105 | |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 106 | def setup_compute_client(cls): |
Ghanshyam Mann | 1072f50 | 2021-03-24 19:15:22 -0500 | [diff] [blame] | 107 | """Compute client""" |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 108 | cls.compute_images_client = cls.os_primary.compute_images_client |
| 109 | cls.keypairs_client = cls.os_primary.keypairs_client |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 110 | cls.servers_client = cls.os_primary.servers_client |
| 111 | cls.interface_client = cls.os_primary.interfaces_client |
Ghanshyam Mann | 1072f50 | 2021-03-24 19:15:22 -0500 | [diff] [blame] | 112 | cls.flavors_client = cls.os_primary.flavors_client |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 113 | |
| 114 | def setup_network_client(cls): |
| 115 | """Neutron network client""" |
| 116 | cls.networks_client = cls.os_primary.networks_client |
| 117 | cls.ports_client = cls.os_primary.ports_client |
| 118 | cls.routers_client = cls.os_primary.routers_client |
| 119 | cls.subnets_client = cls.os_primary.subnets_client |
| 120 | cls.floating_ips_client = cls.os_primary.floating_ips_client |
| 121 | cls.security_groups_client = cls.os_primary.security_groups_client |
| 122 | cls.security_group_rules_client = ( |
| 123 | cls.os_primary.security_group_rules_client) |
| 124 | |
Emily Hugenbruch | 5e2d2a2 | 2015-02-25 21:35:45 +0000 | [diff] [blame] | 125 | @classmethod |
| 126 | def setup_clients(cls): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 127 | """This setup the service clients for the tests""" |
Emily Hugenbruch | 5e2d2a2 | 2015-02-25 21:35:45 +0000 | [diff] [blame] | 128 | super(ScenarioTest, cls).setup_clients() |
Jordan Pittier | 1d2e40f | 2016-01-05 18:49:14 +0100 | [diff] [blame] | 129 | if CONF.service_available.glance: |
Ghanshyam Mann | 3562cd0 | 2023-08-05 17:22:03 -0700 | [diff] [blame] | 130 | if CONF.image_feature_enabled.api_v2: |
jeremy.zhang | 0343be5 | 2017-05-25 21:29:57 +0800 | [diff] [blame] | 131 | cls.image_client = cls.os_primary.image_client_v2 |
Matt Riedemann | 2aa19d4 | 2016-06-06 17:45:41 -0400 | [diff] [blame] | 132 | else: |
Matthew Treinish | 4217a70 | 2016-10-07 17:27:11 -0400 | [diff] [blame] | 133 | raise lib_exc.InvalidConfiguration( |
Ghanshyam Mann | 3562cd0 | 2023-08-05 17:22:03 -0700 | [diff] [blame] | 134 | 'api_v2 must be True in [image-feature-enabled].') |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 135 | |
| 136 | cls.setup_compute_client(cls) |
| 137 | cls.setup_network_client(cls) |
Andrea Frittoli | a6b3015 | 2017-08-04 10:46:10 +0100 | [diff] [blame] | 138 | if CONF.service_available.cinder: |
| 139 | cls.volumes_client = cls.os_primary.volumes_client_latest |
| 140 | cls.snapshots_client = cls.os_primary.snapshots_client_latest |
lkuchlan | e20e6a8 | 2018-05-08 11:28:46 +0300 | [diff] [blame] | 141 | cls.backups_client = cls.os_primary.backups_client_latest |
Ivan Kolodyazhny | bcfc32e | 2015-08-06 13:31:36 +0300 | [diff] [blame] | 142 | |
Jordan Pittier | f672b7d | 2016-06-20 18:50:40 +0200 | [diff] [blame] | 143 | # ## Test functions library |
Jordan Pittier | f672b7d | 2016-06-20 18:50:40 +0200 | [diff] [blame] | 144 | # The create_[resource] functions only return body and discard the |
| 145 | # resp part which is not used in scenario tests |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 146 | |
zhufl | 1e446b5 | 2017-10-16 16:54:57 +0800 | [diff] [blame] | 147 | def create_port(self, network_id, client=None, **kwargs): |
Martin Kopec | 9c87441 | 2020-12-17 20:43:26 +0000 | [diff] [blame] | 148 | """Creates port for the respective network_id |
| 149 | |
| 150 | :param network_id: the id of the network |
| 151 | :param client: the client to use, defaults to self.ports_client |
| 152 | :param kwargs: additional arguments such as: |
| 153 | - namestart - a string to generate a name for the port from |
| 154 | - default is self.__class__.__name__ |
| 155 | - 'binding:vnic_type' - defaults to CONF.network.port_vnic_type |
| 156 | - 'binding:profile' - defaults to CONF.network.port_profile |
| 157 | """ |
Eliad Cohen | bec2d4d | 2022-09-14 17:52:59 +0000 | [diff] [blame] | 158 | |
Lenny Verkhovsky | 136376f | 2016-06-29 14:33:34 +0300 | [diff] [blame] | 159 | if not client: |
| 160 | client = self.ports_client |
Martin Kopec | 9c87441 | 2020-12-17 20:43:26 +0000 | [diff] [blame] | 161 | name = data_utils.rand_name( |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 162 | prefix=CONF.resource_name_prefix, |
| 163 | name=kwargs.pop('namestart', self.__class__.__name__)) |
Edan David | 408a97b | 2018-01-15 03:52:15 -0500 | [diff] [blame] | 164 | if CONF.network.port_vnic_type and 'binding:vnic_type' not in kwargs: |
| 165 | kwargs['binding:vnic_type'] = CONF.network.port_vnic_type |
| 166 | if CONF.network.port_profile and 'binding:profile' not in kwargs: |
| 167 | kwargs['binding:profile'] = CONF.network.port_profile |
Lenny Verkhovsky | 136376f | 2016-06-29 14:33:34 +0300 | [diff] [blame] | 168 | result = client.create_port( |
| 169 | name=name, |
| 170 | network_id=network_id, |
| 171 | **kwargs) |
Soniya Vyas | 0123f52 | 2020-09-24 17:43:26 +0530 | [diff] [blame] | 172 | self.assertIsNotNone(result, 'Unable to allocate port') |
Eliad Cohen | bec2d4d | 2022-09-14 17:52:59 +0000 | [diff] [blame] | 173 | port_id = result['port']['id'] |
Lenny Verkhovsky | 136376f | 2016-06-29 14:33:34 +0300 | [diff] [blame] | 174 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
Eliad Cohen | bec2d4d | 2022-09-14 17:52:59 +0000 | [diff] [blame] | 175 | client.delete_port, port_id) |
| 176 | port = waiters.wait_for_port_status( |
| 177 | client=client, port_id=port_id, status="DOWN") |
| 178 | return port["port"] |
Lenny Verkhovsky | 136376f | 2016-06-29 14:33:34 +0300 | [diff] [blame] | 179 | |
Martin Kopec | 30b4d53 | 2020-10-16 12:02:43 +0000 | [diff] [blame] | 180 | def create_keypair(self, client=None, **kwargs): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 181 | """Creates keypair |
| 182 | |
| 183 | Keypair is a public key of OpenSSH key pair used for accessing |
| 184 | and create servers |
| 185 | Keypair can also be created by a private key for the same purpose |
| 186 | Here, the keys are randomly generated[public/private] |
| 187 | """ |
Yair Fried | db6c9e9 | 2014-08-06 08:53:13 +0300 | [diff] [blame] | 188 | if not client: |
| 189 | client = self.keypairs_client |
Martin Kopec | 30b4d53 | 2020-10-16 12:02:43 +0000 | [diff] [blame] | 190 | if not kwargs.get('name'): |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 191 | kwargs['name'] = data_utils.rand_name( |
| 192 | prefix=CONF.resource_name_prefix, |
| 193 | name=self.__class__.__name__) |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 194 | # We don't need to create a keypair by pubkey in scenario |
Martin Kopec | 30b4d53 | 2020-10-16 12:02:43 +0000 | [diff] [blame] | 195 | body = client.create_keypair(**kwargs) |
| 196 | self.addCleanup(client.delete_keypair, kwargs['name']) |
ghanshyam | dee01f2 | 2015-08-17 11:41:47 +0900 | [diff] [blame] | 197 | return body['keypair'] |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 198 | |
Anusha Ramineni | 9aaef8b | 2016-01-19 10:56:40 +0530 | [diff] [blame] | 199 | def create_server(self, name=None, image_id=None, flavor=None, |
Dan Smith | 6574469 | 2023-05-04 09:06:41 -0700 | [diff] [blame] | 200 | validatable=None, wait_until='ACTIVE', |
Jordan Pittier | f672b7d | 2016-06-20 18:50:40 +0200 | [diff] [blame] | 201 | clients=None, **kwargs): |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 202 | """Wrapper utility that returns a test server. |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 203 | |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 204 | This wrapper utility calls the common create test server and |
| 205 | returns a test server. The purpose of this wrapper is to minimize |
| 206 | the impact on the code of the tests already using this |
| 207 | function. |
Noam Angel | 6e30995 | 2019-01-27 05:52:40 +0000 | [diff] [blame] | 208 | |
| 209 | :param **kwargs: |
| 210 | See extra parameters below |
| 211 | |
| 212 | :Keyword Arguments: |
| 213 | * *vnic_type* (``string``) -- |
| 214 | used when launching instances with pre-configured ports. |
| 215 | Examples: |
| 216 | normal: a traditional virtual port that is either attached |
| 217 | to a linux bridge or an openvswitch bridge on a |
| 218 | compute node. |
| 219 | direct: an SR-IOV port that is directly attached to a VM |
| 220 | macvtap: an SR-IOV port that is attached to a VM via a macvtap |
| 221 | device. |
Tom Stappaerts | 27fd5cb | 2020-11-26 12:07:47 +0100 | [diff] [blame] | 222 | direct-physical: an SR-IOV port that is directly attached to a |
| 223 | VM using physical instead of virtual |
| 224 | functions. |
| 225 | baremetal: a baremetal port directly attached to a baremetal |
| 226 | node. |
| 227 | virtio-forwarder: an SR-IOV port that is indirectly attached |
| 228 | to a VM using a low-latency vhost-user |
| 229 | forwarding process. |
Noam Angel | 6e30995 | 2019-01-27 05:52:40 +0000 | [diff] [blame] | 230 | Defaults to ``CONF.network.port_vnic_type``. |
| 231 | * *port_profile* (``dict``) -- |
| 232 | This attribute is a dictionary that can be used (with admin |
| 233 | credentials) to supply information influencing the binding of |
| 234 | the port. |
| 235 | example: port_profile = "capabilities:[switchdev]" |
| 236 | Defaults to ``CONF.network.port_profile``. |
Martin Kopec | 9c87441 | 2020-12-17 20:43:26 +0000 | [diff] [blame] | 237 | * *create_port_body* (``dict``) -- |
| 238 | This attribute is a dictionary of additional arguments to be |
| 239 | passed to create_port method. |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 240 | """ |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 241 | |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 242 | # NOTE(jlanoux): As a first step, ssh checks in the scenario |
| 243 | # tests need to be run regardless of the run_validation and |
| 244 | # validatable parameters and thus until the ssh validation job |
| 245 | # becomes voting in CI. The test resources management and IP |
| 246 | # association are taken care of in the scenario tests. |
| 247 | # Therefore, the validatable parameter is set to false in all |
| 248 | # those tests. In this way create_server just return a standard |
| 249 | # server and the scenario tests always perform ssh checks. |
| 250 | |
| 251 | # Needed for the cross_tenant_traffic test: |
| 252 | if clients is None: |
jeremy.zhang | 0343be5 | 2017-05-25 21:29:57 +0800 | [diff] [blame] | 253 | clients = self.os_primary |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 254 | |
zhufl | 24208c2 | 2016-10-25 15:23:48 +0800 | [diff] [blame] | 255 | if name is None: |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 256 | name = data_utils.rand_name( |
| 257 | prefix=CONF.resource_name_prefix, |
| 258 | name=self.__class__.__name__ + "-server") |
zhufl | 24208c2 | 2016-10-25 15:23:48 +0800 | [diff] [blame] | 259 | |
Noam Angel | 6e30995 | 2019-01-27 05:52:40 +0000 | [diff] [blame] | 260 | vnic_type = kwargs.pop('vnic_type', CONF.network.port_vnic_type) |
| 261 | profile = kwargs.pop('port_profile', CONF.network.port_profile) |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 262 | |
Lenny Verkhovsky | fe3a03f | 2018-02-28 10:19:37 +0000 | [diff] [blame] | 263 | # If vnic_type or profile are configured create port for |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 264 | # every network |
Lenny Verkhovsky | fe3a03f | 2018-02-28 10:19:37 +0000 | [diff] [blame] | 265 | if vnic_type or profile: |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 266 | ports = [] |
Martin Kopec | 9c87441 | 2020-12-17 20:43:26 +0000 | [diff] [blame] | 267 | create_port_body = kwargs.pop('create_port_body', {}) |
Lenny Verkhovsky | 6936350 | 2016-07-17 16:33:33 +0300 | [diff] [blame] | 268 | |
Lenny Verkhovsky | fe3a03f | 2018-02-28 10:19:37 +0000 | [diff] [blame] | 269 | if vnic_type: |
| 270 | create_port_body['binding:vnic_type'] = vnic_type |
| 271 | |
| 272 | if profile: |
| 273 | create_port_body['binding:profile'] = profile |
| 274 | |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 275 | if kwargs: |
| 276 | # Convert security group names to security group ids |
| 277 | # to pass to create_port |
| 278 | if 'security_groups' in kwargs: |
Thiago Paiva | 66cded2 | 2016-08-15 14:55:58 -0300 | [diff] [blame] | 279 | security_groups = \ |
John Warren | f9606e9 | 2015-12-10 12:12:42 -0500 | [diff] [blame] | 280 | clients.security_groups_client.list_security_groups( |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 281 | ).get('security_groups') |
| 282 | sec_dict = dict([(s['name'], s['id']) |
afazekas | 40fcb9b | 2019-03-08 11:25:11 +0100 | [diff] [blame] | 283 | for s in security_groups]) |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 284 | |
| 285 | sec_groups_names = [s['name'] for s in kwargs.pop( |
| 286 | 'security_groups')] |
| 287 | security_groups_ids = [sec_dict[s] |
| 288 | for s in sec_groups_names] |
| 289 | |
| 290 | if security_groups_ids: |
| 291 | create_port_body[ |
| 292 | 'security_groups'] = security_groups_ids |
Lenny Verkhovsky | 6936350 | 2016-07-17 16:33:33 +0300 | [diff] [blame] | 293 | networks = kwargs.pop('networks', []) |
| 294 | else: |
| 295 | networks = [] |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 296 | |
| 297 | # If there are no networks passed to us we look up |
Lenny Verkhovsky | 136376f | 2016-06-29 14:33:34 +0300 | [diff] [blame] | 298 | # for the project's private networks and create a port. |
| 299 | # The same behaviour as we would expect when passing |
| 300 | # the call to the clients with no networks |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 301 | if not networks: |
| 302 | networks = clients.networks_client.list_networks( |
Lenny Verkhovsky | 136376f | 2016-06-29 14:33:34 +0300 | [diff] [blame] | 303 | **{'router:external': False, 'fields': 'id'})['networks'] |
| 304 | |
| 305 | # It's net['uuid'] if networks come from kwargs |
| 306 | # and net['id'] if they come from |
| 307 | # clients.networks_client.list_networks |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 308 | for net in networks: |
Lenny Verkhovsky | 97f7cea | 2016-08-15 13:29:48 +0000 | [diff] [blame] | 309 | net_id = net.get('uuid', net.get('id')) |
Lenny Verkhovsky | 6936350 | 2016-07-17 16:33:33 +0300 | [diff] [blame] | 310 | if 'port' not in net: |
zhufl | 1e446b5 | 2017-10-16 16:54:57 +0800 | [diff] [blame] | 311 | port = self.create_port(network_id=net_id, |
| 312 | client=clients.ports_client, |
| 313 | **create_port_body) |
Lenny Verkhovsky | 6936350 | 2016-07-17 16:33:33 +0300 | [diff] [blame] | 314 | ports.append({'port': port['id']}) |
| 315 | else: |
| 316 | ports.append({'port': net['port']}) |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 317 | if ports: |
| 318 | kwargs['networks'] = ports |
| 319 | self.ports = ports |
| 320 | |
| 321 | tenant_network = self.get_tenant_network() |
| 322 | |
Marc Koderer | 979e494 | 2016-12-08 10:07:59 +0100 | [diff] [blame] | 323 | if CONF.compute.compute_volume_common_az: |
| 324 | kwargs.setdefault('availability_zone', |
| 325 | CONF.compute.compute_volume_common_az) |
| 326 | |
Dan Smith | 6574469 | 2023-05-04 09:06:41 -0700 | [diff] [blame] | 327 | kwargs['validatable'] = bool(validatable) |
Dan Smith | 49c2b3b | 2023-04-26 15:52:22 -0700 | [diff] [blame] | 328 | keypair = kwargs.pop('keypair', None) |
Dan Smith | 6574469 | 2023-05-04 09:06:41 -0700 | [diff] [blame] | 329 | if wait_until == 'SSHABLE' and ( |
| 330 | kwargs.get('validation_resources') is None): |
Dan Smith | 49c2b3b | 2023-04-26 15:52:22 -0700 | [diff] [blame] | 331 | # NOTE(danms): We should do this whether valdiation is enabled or |
| 332 | # not to consistently provide the resources to the |
| 333 | # create_test_server() function. If validation is disabled, then |
| 334 | # get_test_validation_resources() is basically a no-op for |
| 335 | # performance. |
| 336 | validation_resources = self.get_test_validation_resources( |
| 337 | self.os_primary) |
| 338 | if keypair: |
| 339 | validation_resources = copy.deepcopy(validation_resources) |
| 340 | validation_resources.update( |
| 341 | keypair=keypair) |
Dan Smith | 6574469 | 2023-05-04 09:06:41 -0700 | [diff] [blame] | 342 | kwargs.update({ |
| 343 | 'validatable': (validatable if validatable is not None |
| 344 | else True), |
| 345 | 'validation_resources': validation_resources}) |
Dan Smith | 49c2b3b | 2023-04-26 15:52:22 -0700 | [diff] [blame] | 346 | if keypair: |
| 347 | kwargs.update({'key_name': keypair['name']}) |
| 348 | |
Ferenc Horváth | bce1fcf | 2017-06-07 11:19:51 +0200 | [diff] [blame] | 349 | body, _ = compute.create_test_server( |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 350 | clients, |
| 351 | tenant_network=tenant_network, |
| 352 | wait_until=wait_until, |
Anusha Ramineni | 9aaef8b | 2016-01-19 10:56:40 +0530 | [diff] [blame] | 353 | name=name, flavor=flavor, |
| 354 | image_id=image_id, **kwargs) |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 355 | |
Jordan Pittier | f672b7d | 2016-06-20 18:50:40 +0200 | [diff] [blame] | 356 | self.addCleanup(waiters.wait_for_server_termination, |
| 357 | clients.servers_client, body['id']) |
| 358 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
| 359 | clients.servers_client.delete_server, body['id']) |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 360 | server = clients.servers_client.show_server(body['id'])['server'] |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 361 | return server |
| 362 | |
Markus Zoeller | 3d2a21c | 2015-02-27 12:04:22 +0100 | [diff] [blame] | 363 | def create_volume(self, size=None, name=None, snapshot_id=None, |
Benny Kopilov | 7beb2d0 | 2022-04-12 20:33:53 +0300 | [diff] [blame] | 364 | imageRef=None, volume_type=None, wait_until='available', |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 365 | client=None, **kwargs): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 366 | """Creates volume |
| 367 | |
| 368 | This wrapper utility creates volume and waits for volume to be |
Benny Kopilov | 7beb2d0 | 2022-04-12 20:33:53 +0300 | [diff] [blame] | 369 | in 'available' state by default. If wait_until is None, means no wait. |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 370 | This method returns the volume's full representation by GET request. |
| 371 | """ |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 372 | if client is None: |
| 373 | client = self.volumes_client |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 374 | |
Ken'ichi Ohmichi | adb905e | 2016-08-26 15:16:23 -0700 | [diff] [blame] | 375 | if size is None: |
| 376 | size = CONF.volume.volume_size |
Nuno Santos | b746d99 | 2016-11-17 15:41:55 -0500 | [diff] [blame] | 377 | if imageRef: |
Ghanshyam Mann | 3562cd0 | 2023-08-05 17:22:03 -0700 | [diff] [blame] | 378 | image = self.image_client.show_image(imageRef) |
zhufl | 66275c2 | 2018-03-28 15:32:14 +0800 | [diff] [blame] | 379 | min_disk = image.get('min_disk') |
Nuno Santos | b746d99 | 2016-11-17 15:41:55 -0500 | [diff] [blame] | 380 | size = max(size, min_disk) |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 381 | if name is None: |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 382 | name = data_utils.rand_name( |
| 383 | prefix=CONF.resource_name_prefix, |
| 384 | name=self.__class__.__name__ + "-volume") |
Martin Kopec | d3ad5e9 | 2020-10-16 14:45:09 +0000 | [diff] [blame] | 385 | kwargs.update({'name': name, |
| 386 | 'snapshot_id': snapshot_id, |
| 387 | 'imageRef': imageRef, |
| 388 | 'volume_type': volume_type, |
| 389 | 'size': size}) |
Marc Koderer | 979e494 | 2016-12-08 10:07:59 +0100 | [diff] [blame] | 390 | |
| 391 | if CONF.compute.compute_volume_common_az: |
| 392 | kwargs.setdefault('availability_zone', |
| 393 | CONF.compute.compute_volume_common_az) |
| 394 | |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 395 | volume = client.create_volume(**kwargs)['volume'] |
Matt Riedemann | e85c270 | 2014-09-10 11:50:13 -0700 | [diff] [blame] | 396 | |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 397 | self.addCleanup(client.wait_for_resource_deletion, |
Jordan Pittier | 5e1741c | 2016-03-02 18:25:51 +0100 | [diff] [blame] | 398 | volume['id']) |
Jordan Pittier | 9e227c5 | 2016-02-09 14:35:18 +0100 | [diff] [blame] | 399 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 400 | client.delete_volume, volume['id']) |
lkuchlan | 5cbc00a | 2017-03-26 11:49:54 +0300 | [diff] [blame] | 401 | self.assertEqual(name, volume['name']) |
Benny Kopilov | 7beb2d0 | 2022-04-12 20:33:53 +0300 | [diff] [blame] | 402 | if wait_until: |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 403 | waiters.wait_for_volume_resource_status(client, |
Benny Kopilov | 7beb2d0 | 2022-04-12 20:33:53 +0300 | [diff] [blame] | 404 | volume['id'], wait_until) |
| 405 | # The volume retrieved on creation has a non-up-to-date status. |
| 406 | # Retrieval after it becomes active ensures correct details. |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 407 | volume = client.show_volume(volume['id'])['volume'] |
| 408 | |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 409 | return volume |
| 410 | |
lkuchlan | e20e6a8 | 2018-05-08 11:28:46 +0300 | [diff] [blame] | 411 | def create_backup(self, volume_id, name=None, description=None, |
| 412 | force=False, snapshot_id=None, incremental=False, |
Martin Kopec | 4a14005 | 2020-10-16 16:26:55 +0000 | [diff] [blame] | 413 | container=None, **kwargs): |
| 414 | """Creates a backup of the given volume_id or snapshot_id |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 415 | |
Martin Kopec | 4a14005 | 2020-10-16 16:26:55 +0000 | [diff] [blame] | 416 | This wrapper utility creates a backup and waits until it is in |
| 417 | 'available' state. |
| 418 | |
| 419 | :param volume_id: UUID of the volume to back up |
| 420 | :param name: backup name, '$classname-backup' by default |
| 421 | :param description: Description of the backup, None by default |
| 422 | :param force: boolean whether to backup even if the volume is attached |
| 423 | False by default |
| 424 | :param snapshot_id: UUID of the source snapshot to back up |
| 425 | None by default |
| 426 | :param incremental: boolean, False by default |
| 427 | :param container: a container name, None by default |
| 428 | :param **kwargs: additional parameters per the documentation: |
| 429 | https://docs.openstack.org/api-ref/block-storage/v3/ |
| 430 | #create-a-backup |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 431 | """ |
lkuchlan | e20e6a8 | 2018-05-08 11:28:46 +0300 | [diff] [blame] | 432 | |
| 433 | name = name or data_utils.rand_name( |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 434 | prefix=CONF.resource_name_prefix, |
| 435 | name=self.__class__.__name__ + "-backup") |
Martin Kopec | 4a14005 | 2020-10-16 16:26:55 +0000 | [diff] [blame] | 436 | args = {'name': name, |
| 437 | 'description': description, |
| 438 | 'force': force, |
| 439 | 'snapshot_id': snapshot_id, |
| 440 | 'incremental': incremental, |
| 441 | 'container': container} |
| 442 | args.update(kwargs) |
lkuchlan | e20e6a8 | 2018-05-08 11:28:46 +0300 | [diff] [blame] | 443 | backup = self.backups_client.create_backup(volume_id=volume_id, |
Yosi Ben Shimon | bce267e | 2024-02-06 15:00:25 +0200 | [diff] [blame] | 444 | **args)['backup'] |
lkuchlan | e20e6a8 | 2018-05-08 11:28:46 +0300 | [diff] [blame] | 445 | self.addCleanup(self.backups_client.delete_backup, backup['id']) |
| 446 | waiters.wait_for_volume_resource_status(self.backups_client, |
| 447 | backup['id'], 'available') |
| 448 | return backup |
| 449 | |
Martin Kopec | 4a14005 | 2020-10-16 16:26:55 +0000 | [diff] [blame] | 450 | def restore_backup(self, backup_id, **kwargs): |
| 451 | """Restores a backup given by the backup_id |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 452 | |
Martin Kopec | 4a14005 | 2020-10-16 16:26:55 +0000 | [diff] [blame] | 453 | This wrapper utility restores a backup and waits until it is in |
| 454 | 'available' state. |
| 455 | |
| 456 | :param backup_id: UUID of a backup to restore |
| 457 | :param **kwargs: additional parameters per the documentation: |
| 458 | https://docs.openstack.org/api-ref/block-storage/v3/ |
| 459 | #restore-a-backup |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 460 | """ |
| 461 | |
Martin Kopec | 4a14005 | 2020-10-16 16:26:55 +0000 | [diff] [blame] | 462 | body = self.backups_client.restore_backup(backup_id, **kwargs) |
| 463 | restore = body['restore'] |
Sofia Enriquez | 404b55c | 2022-05-26 19:33:47 +0000 | [diff] [blame] | 464 | |
| 465 | using_pre_existing_volume = kwargs.get('volume_id', False) |
| 466 | if not using_pre_existing_volume: |
| 467 | self.addCleanup(self.volumes_client.delete_volume, |
| 468 | restore['volume_id']) |
| 469 | |
lkuchlan | e20e6a8 | 2018-05-08 11:28:46 +0300 | [diff] [blame] | 470 | waiters.wait_for_volume_resource_status(self.backups_client, |
| 471 | backup_id, 'available') |
| 472 | waiters.wait_for_volume_resource_status(self.volumes_client, |
| 473 | restore['volume_id'], |
| 474 | 'available') |
| 475 | self.assertEqual(backup_id, restore['backup_id']) |
| 476 | return restore |
| 477 | |
Martin Kopec | be8ba2c | 2020-12-17 21:33:32 +0000 | [diff] [blame] | 478 | def rebuild_server(self, server_id, image=None, preserve_ephemeral=False, |
| 479 | wait=True, **kwargs): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 480 | if image is None: |
| 481 | image = CONF.compute.image_ref |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 482 | LOG.debug("Rebuilding server (id: %s, image: %s, preserve eph: %s)", |
| 483 | server_id, image, preserve_ephemeral) |
| 484 | self.servers_client.rebuild_server( |
| 485 | server_id=server_id, |
| 486 | image_ref=image, |
| 487 | preserve_ephemeral=preserve_ephemeral, |
Martin Kopec | be8ba2c | 2020-12-17 21:33:32 +0000 | [diff] [blame] | 488 | **kwargs) |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 489 | if wait: |
| 490 | waiters.wait_for_server_status(self.servers_client, |
| 491 | server_id, 'ACTIVE') |
| 492 | |
lkuchlan | 73ed1f3 | 2017-07-06 16:22:12 +0300 | [diff] [blame] | 493 | def create_volume_snapshot(self, volume_id, name=None, description=None, |
Martin Kopec | a17cca4 | 2020-10-17 16:57:51 +0000 | [diff] [blame] | 494 | metadata=None, force=False, **kwargs): |
| 495 | """Creates volume's snapshot |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 496 | |
Martin Kopec | a17cca4 | 2020-10-17 16:57:51 +0000 | [diff] [blame] | 497 | This wrapper utility creates volume snapshot and waits for it until |
| 498 | it is in 'available' state. |
| 499 | |
| 500 | :param volume_id: UUID of a volume to create snapshot of |
| 501 | :param name: name of the snapshot, '$classname-snapshot' by default |
| 502 | :param description: description of the snapshot |
| 503 | :param metadata: metadata key and value pairs for the snapshot |
| 504 | :param force: whether snapshot even when the volume is attached |
| 505 | :param **kwargs: additional parameters per the doc |
| 506 | https://docs.openstack.org/api-ref/block-storage/v3/ |
| 507 | #create-a-snapshot |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 508 | """ |
| 509 | |
lkuchlan | 73ed1f3 | 2017-07-06 16:22:12 +0300 | [diff] [blame] | 510 | name = name or data_utils.rand_name( |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 511 | prefix=CONF.resource_name_prefix, |
| 512 | name=self.__class__.__name__ + '-snapshot') |
lkuchlan | 73ed1f3 | 2017-07-06 16:22:12 +0300 | [diff] [blame] | 513 | snapshot = self.snapshots_client.create_snapshot( |
| 514 | volume_id=volume_id, |
| 515 | force=force, |
Martin Kopec | 20c87c7 | 2020-10-17 11:42:29 +0000 | [diff] [blame] | 516 | name=name, |
lkuchlan | 73ed1f3 | 2017-07-06 16:22:12 +0300 | [diff] [blame] | 517 | description=description, |
Martin Kopec | a17cca4 | 2020-10-17 16:57:51 +0000 | [diff] [blame] | 518 | metadata=metadata, |
| 519 | **kwargs)['snapshot'] |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 520 | |
lkuchlan | 73ed1f3 | 2017-07-06 16:22:12 +0300 | [diff] [blame] | 521 | self.addCleanup(self.snapshots_client.wait_for_resource_deletion, |
| 522 | snapshot['id']) |
Benny Kopilov | d4d49b0 | 2021-08-10 18:54:01 +0300 | [diff] [blame] | 523 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
| 524 | self.snapshots_client.delete_snapshot, snapshot['id']) |
lkuchlan | 73ed1f3 | 2017-07-06 16:22:12 +0300 | [diff] [blame] | 525 | waiters.wait_for_volume_resource_status(self.snapshots_client, |
| 526 | snapshot['id'], 'available') |
Benny Kopilov | 11b2800 | 2017-12-19 12:46:19 +0200 | [diff] [blame] | 527 | snapshot = self.snapshots_client.show_snapshot( |
| 528 | snapshot['id'])['snapshot'] |
lkuchlan | 73ed1f3 | 2017-07-06 16:22:12 +0300 | [diff] [blame] | 529 | return snapshot |
| 530 | |
Soniya Vyas | fd4dcf9 | 2021-02-17 18:12:43 +0530 | [diff] [blame] | 531 | def cleanup_volume_type(self, volume_type): |
Lee Yarwood | be64e1a | 2019-04-09 14:02:12 +0100 | [diff] [blame] | 532 | """Clean up a given volume type. |
| 533 | |
| 534 | Ensuring all volumes associated to a type are first removed before |
| 535 | attempting to remove the type itself. This includes any image volume |
| 536 | cache volumes stored in a separate tenant to the original volumes |
| 537 | created from the type. |
| 538 | """ |
| 539 | admin_volume_type_client = self.os_admin.volume_types_client_latest |
| 540 | admin_volumes_client = self.os_admin.volumes_client_latest |
| 541 | volumes = admin_volumes_client.list_volumes( |
| 542 | detail=True, params={'all_tenants': 1})['volumes'] |
| 543 | type_name = volume_type['name'] |
| 544 | for volume in [v for v in volumes if v['volume_type'] == type_name]: |
| 545 | test_utils.call_and_ignore_notfound_exc( |
| 546 | admin_volumes_client.delete_volume, volume['id']) |
| 547 | admin_volumes_client.wait_for_resource_deletion(volume['id']) |
| 548 | admin_volume_type_client.delete_volume_type(volume_type['id']) |
| 549 | |
Martin Kopec | 8e673a4 | 2020-10-18 17:33:02 +0000 | [diff] [blame] | 550 | def create_volume_type(self, client=None, name=None, backend_name=None, |
| 551 | **kwargs): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 552 | """Creates volume type |
| 553 | |
| 554 | In a multiple-storage back-end configuration, |
| 555 | each back end has a name (volume_backend_name). |
| 556 | The name of the back end is declared as an extra-specification |
| 557 | of a volume type (such as, volume_backend_name=LVM). |
| 558 | When a volume is created, the scheduler chooses an |
| 559 | appropriate back end to handle the request, according |
| 560 | to the volume type specified by the user. |
| 561 | The scheduler uses volume types to explicitly create volumes on |
| 562 | specific back ends. |
| 563 | |
| 564 | Before using volume type, a volume type has to be declared |
| 565 | to Block Storage. In addition to that, an extra-specification |
| 566 | has to be created to link the volume type to a back end name. |
| 567 | """ |
| 568 | |
scottda | 61f68ac | 2016-06-07 12:07:55 -0600 | [diff] [blame] | 569 | if not client: |
ghanshyam | 6c682ff | 2018-08-06 09:54:45 +0000 | [diff] [blame] | 570 | client = self.os_admin.volume_types_client_latest |
Matt Riedemann | 514495b | 2019-05-04 17:34:12 +0000 | [diff] [blame] | 571 | if not name: |
| 572 | class_name = self.__class__.__name__ |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 573 | name = data_utils.rand_name( |
| 574 | prefix=CONF.resource_name_prefix, |
| 575 | name=class_name + '-volume-type') |
| 576 | randomized_name = data_utils.rand_name( |
| 577 | prefix=CONF.resource_name_prefix, name='scenario-type-' + name) |
scottda | 61f68ac | 2016-06-07 12:07:55 -0600 | [diff] [blame] | 578 | |
| 579 | LOG.debug("Creating a volume type: %s on backend %s", |
| 580 | randomized_name, backend_name) |
Martin Kopec | 8e673a4 | 2020-10-18 17:33:02 +0000 | [diff] [blame] | 581 | extra_specs = kwargs.pop("extra_specs", {}) |
scottda | 61f68ac | 2016-06-07 12:07:55 -0600 | [diff] [blame] | 582 | if backend_name: |
Martin Kopec | 8e673a4 | 2020-10-18 17:33:02 +0000 | [diff] [blame] | 583 | extra_specs.update({"volume_backend_name": backend_name}) |
scottda | 61f68ac | 2016-06-07 12:07:55 -0600 | [diff] [blame] | 584 | |
Martin Kopec | 8e673a4 | 2020-10-18 17:33:02 +0000 | [diff] [blame] | 585 | volume_type_resp = client.create_volume_type( |
| 586 | name=randomized_name, extra_specs=extra_specs, **kwargs) |
| 587 | volume_type = volume_type_resp['volume_type'] |
| 588 | |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 589 | self.assertIn('id', volume_type) |
Soniya Vyas | fd4dcf9 | 2021-02-17 18:12:43 +0530 | [diff] [blame] | 590 | self.addCleanup(self.cleanup_volume_type, volume_type) |
scottda | 61f68ac | 2016-06-07 12:07:55 -0600 | [diff] [blame] | 591 | return volume_type |
| 592 | |
Soniya Vyas | bbc9dd3 | 2021-03-23 16:06:29 -0500 | [diff] [blame] | 593 | def create_security_group(self, security_group_rules_client=None, |
| 594 | project_id=None, |
| 595 | namestart='secgroup-smoke', |
| 596 | security_groups_client=None): |
| 597 | if security_group_rules_client is None: |
| 598 | security_group_rules_client = self.security_group_rules_client |
| 599 | if security_groups_client is None: |
| 600 | security_groups_client = self.security_groups_client |
| 601 | if project_id is None: |
| 602 | project_id = security_groups_client.project_id |
| 603 | secgroup = self.create_empty_security_group( |
| 604 | namestart=namestart, client=security_groups_client, |
| 605 | project_id=project_id) |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 606 | |
| 607 | # Add rules to the security group |
Soniya Vyas | bbc9dd3 | 2021-03-23 16:06:29 -0500 | [diff] [blame] | 608 | rules = self.create_loginable_secgroup_rule( |
| 609 | security_group_rules_client=security_group_rules_client, |
| 610 | secgroup=secgroup, |
| 611 | security_groups_client=security_groups_client) |
| 612 | for rule in rules: |
| 613 | self.assertEqual(project_id, rule['project_id']) |
| 614 | self.assertEqual(secgroup['id'], rule['security_group_id']) |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 615 | return secgroup |
| 616 | |
Soniya Vyas | bbc9dd3 | 2021-03-23 16:06:29 -0500 | [diff] [blame] | 617 | def create_empty_security_group(self, client=None, project_id=None, |
| 618 | namestart='secgroup-smoke'): |
| 619 | """Create a security group without rules. |
| 620 | |
| 621 | Default rules will be created: |
| 622 | - IPv4 egress to any |
| 623 | - IPv6 egress to any |
| 624 | :param project_id: secgroup will be created in this project |
| 625 | :returns: the created security group |
| 626 | """ |
| 627 | |
| 628 | if client is None: |
| 629 | client = self.security_groups_client |
| 630 | if not project_id: |
| 631 | project_id = client.project_id |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 632 | sg_name = data_utils.rand_name( |
| 633 | prefix=CONF.resource_name_prefix, name=namestart) |
Soniya Vyas | bbc9dd3 | 2021-03-23 16:06:29 -0500 | [diff] [blame] | 634 | sg_desc = sg_name + " description" |
| 635 | sg_dict = dict(name=sg_name, |
| 636 | description=sg_desc) |
| 637 | sg_dict['project_id'] = project_id |
| 638 | result = client.create_security_group(**sg_dict) |
| 639 | |
| 640 | secgroup = result['security_group'] |
| 641 | self.assertEqual(secgroup['name'], sg_name) |
| 642 | self.assertEqual(project_id, secgroup['project_id']) |
| 643 | self.assertEqual(secgroup['description'], sg_desc) |
| 644 | |
| 645 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
| 646 | client.delete_security_group, secgroup['id']) |
| 647 | return secgroup |
| 648 | |
| 649 | def create_security_group_rule(self, secgroup=None, |
| 650 | sec_group_rules_client=None, |
| 651 | project_id=None, |
| 652 | security_groups_client=None, **kwargs): |
| 653 | """Create a rule from a dictionary of rule parameters. |
| 654 | |
| 655 | Create a rule in a secgroup. if secgroup not defined will search for |
| 656 | default secgroup in project_id. |
| 657 | :param secgroup: the security group. |
| 658 | :param project_id: if secgroup not passed -- the tenant in which to |
| 659 | search for default secgroup |
| 660 | :param kwargs: a dictionary containing rule parameters: |
| 661 | for example, to allow incoming ssh: |
| 662 | rule = { |
| 663 | direction: 'ingress' |
| 664 | protocol:'tcp', |
| 665 | port_range_min: 22, |
| 666 | port_range_max: 22 |
| 667 | } |
| 668 | """ |
| 669 | |
| 670 | if sec_group_rules_client is None: |
| 671 | sec_group_rules_client = self.security_group_rules_client |
| 672 | if security_groups_client is None: |
| 673 | security_groups_client = self.security_groups_client |
| 674 | if not project_id: |
| 675 | project_id = security_groups_client.project_id |
| 676 | if secgroup is None: |
| 677 | # Get default secgroup for project_id |
| 678 | default_secgroups = security_groups_client.list_security_groups( |
| 679 | name='default', project_id=project_id)['security_groups'] |
| 680 | msg = "No default security group for project %s." % (project_id) |
| 681 | self.assertNotEmpty(default_secgroups, msg) |
| 682 | secgroup = default_secgroups[0] |
| 683 | |
| 684 | ruleset = dict(security_group_id=secgroup['id'], |
| 685 | project_id=secgroup['project_id']) |
| 686 | ruleset.update(kwargs) |
| 687 | |
| 688 | sg_rule = sec_group_rules_client.create_security_group_rule(**ruleset) |
| 689 | sg_rule = sg_rule['security_group_rule'] |
| 690 | |
| 691 | self.assertEqual(secgroup['tenant_id'], sg_rule['tenant_id']) |
| 692 | self.assertEqual(secgroup['id'], sg_rule['security_group_id']) |
| 693 | |
| 694 | return sg_rule |
| 695 | |
| 696 | def create_loginable_secgroup_rule(self, security_group_rules_client=None, |
| 697 | secgroup=None, |
Roman Popelka | 3b0ccb0 | 2022-03-24 10:25:19 +0100 | [diff] [blame] | 698 | security_groups_client=None, |
| 699 | rulesets=None): |
Soniya Vyas | bbc9dd3 | 2021-03-23 16:06:29 -0500 | [diff] [blame] | 700 | """Create loginable security group rule by neutron clients by default. |
| 701 | |
| 702 | This function will create: |
| 703 | 1. egress and ingress tcp port 22 allow rule in order to allow ssh |
| 704 | access for ipv4. |
| 705 | 2. egress and ingress ipv6 icmp allow rule, in order to allow icmpv6. |
| 706 | 3. egress and ingress ipv4 icmp allow rule, in order to allow icmpv4. |
| 707 | """ |
| 708 | |
| 709 | if security_group_rules_client is None: |
| 710 | security_group_rules_client = self.security_group_rules_client |
| 711 | if security_groups_client is None: |
| 712 | security_groups_client = self.security_groups_client |
Roman Popelka | 3b0ccb0 | 2022-03-24 10:25:19 +0100 | [diff] [blame] | 713 | if rulesets is None: |
| 714 | rulesets = [ |
| 715 | dict( |
| 716 | # ssh |
| 717 | protocol='tcp', |
| 718 | port_range_min=22, |
| 719 | port_range_max=22, |
| 720 | ), |
| 721 | dict( |
| 722 | # ping |
| 723 | protocol='icmp', |
| 724 | ), |
| 725 | dict( |
| 726 | # ipv6-icmp for ping6 |
| 727 | protocol='icmp', |
| 728 | ethertype='IPv6', |
| 729 | ) |
| 730 | ] |
| 731 | |
Soniya Vyas | bbc9dd3 | 2021-03-23 16:06:29 -0500 | [diff] [blame] | 732 | rules = [] |
Soniya Vyas | bbc9dd3 | 2021-03-23 16:06:29 -0500 | [diff] [blame] | 733 | sec_group_rules_client = security_group_rules_client |
| 734 | for ruleset in rulesets: |
| 735 | for r_direction in ['ingress', 'egress']: |
| 736 | ruleset['direction'] = r_direction |
| 737 | try: |
| 738 | sg_rule = self.create_security_group_rule( |
| 739 | sec_group_rules_client=sec_group_rules_client, |
| 740 | secgroup=secgroup, |
| 741 | security_groups_client=security_groups_client, |
| 742 | **ruleset) |
| 743 | except lib_exc.Conflict as ex: |
| 744 | # if rule already exist - skip rule and continue |
| 745 | msg = 'Security group rule already exists' |
| 746 | if msg not in ex._error_string: |
| 747 | raise ex |
| 748 | else: |
| 749 | self.assertEqual(r_direction, sg_rule['direction']) |
| 750 | rules.append(sg_rule) |
| 751 | |
| 752 | return rules |
| 753 | |
jskunda | d744598 | 2023-10-18 13:49:02 +0200 | [diff] [blame] | 754 | def create_and_add_security_group_to_server(self, server): |
| 755 | """Create a security group and add it to the server. |
| 756 | |
| 757 | :param server: The server to add the security group to. |
| 758 | :return: The security group was added to the server. |
| 759 | """ |
| 760 | |
| 761 | secgroup = self.create_security_group() |
| 762 | self.servers_client.add_security_group(server['id'], |
| 763 | name=secgroup['name']) |
| 764 | self.addCleanup(self.servers_client.remove_security_group, |
| 765 | server['id'], name=secgroup['name']) |
| 766 | |
| 767 | def wait_for_secgroup_add(): |
| 768 | body = (self.servers_client.show_server(server['id']) |
| 769 | ['server']) |
| 770 | return {'name': secgroup['name']} in body['security_groups'] |
| 771 | |
| 772 | if not test_utils.call_until_true(wait_for_secgroup_add, |
| 773 | CONF.compute.build_timeout, |
| 774 | CONF.compute.build_interval): |
| 775 | msg = ('Timed out waiting for adding security group %s to server ' |
| 776 | '%s' % (secgroup['id'], server['id'])) |
| 777 | raise lib_exc.TimeoutException(msg) |
| 778 | |
zhufl | f52c759 | 2017-05-25 13:55:24 +0800 | [diff] [blame] | 779 | def get_remote_client(self, ip_address, username=None, private_key=None, |
| 780 | server=None): |
JordanP | 3fe2dc3 | 2014-11-17 13:06:01 +0100 | [diff] [blame] | 781 | """Get a SSH client to a remote server |
| 782 | |
Sergey Vilgelm | eac094a | 2018-11-21 18:27:51 -0600 | [diff] [blame] | 783 | :param ip_address: the server floating or fixed IP address to use |
| 784 | for ssh validation |
| 785 | :param username: name of the Linux account on the remote server |
| 786 | :param private_key: the SSH private key to use |
| 787 | :param server: server dict, used for debugging purposes |
| 788 | :return: a RemoteClient object |
JordanP | 3fe2dc3 | 2014-11-17 13:06:01 +0100 | [diff] [blame] | 789 | """ |
Adam Gandelman | c78c757 | 2014-08-28 18:38:55 -0700 | [diff] [blame] | 790 | |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 791 | if username is None: |
lanoux | 283273b | 2015-12-04 03:01:54 -0800 | [diff] [blame] | 792 | username = CONF.validation.image_ssh_user |
wantwatering | 896300c | 2015-03-27 15:17:42 +0800 | [diff] [blame] | 793 | # Set this with 'keypair' or others to log in with keypair or |
| 794 | # username/password. |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 795 | if CONF.validation.auth_method == 'keypair': |
wantwatering | 896300c | 2015-03-27 15:17:42 +0800 | [diff] [blame] | 796 | password = None |
| 797 | if private_key is None: |
| 798 | private_key = self.keypair['private_key'] |
| 799 | else: |
lanoux | 283273b | 2015-12-04 03:01:54 -0800 | [diff] [blame] | 800 | password = CONF.validation.image_ssh_password |
wantwatering | 896300c | 2015-03-27 15:17:42 +0800 | [diff] [blame] | 801 | private_key = None |
zhufl | f52c759 | 2017-05-25 13:55:24 +0800 | [diff] [blame] | 802 | linux_client = remote_client.RemoteClient( |
| 803 | ip_address, username, pkey=private_key, password=password, |
| 804 | server=server, servers_client=self.servers_client) |
| 805 | linux_client.validate_authentication() |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 806 | return linux_client |
| 807 | |
Lukas Piwowarski | b50eabe | 2020-11-05 15:15:38 +0000 | [diff] [blame] | 808 | def image_create(self, name='scenario-img', **kwargs): |
Martin Kopec | 02af6a4 | 2020-03-03 12:39:12 +0000 | [diff] [blame] | 809 | img_path = CONF.scenario.img_file |
| 810 | if not os.path.exists(img_path): |
Martin Kopec | 008950e | 2020-09-29 08:12:39 +0000 | [diff] [blame] | 811 | lib_exc.InvalidConfiguration( |
Martin Kopec | 02af6a4 | 2020-03-03 12:39:12 +0000 | [diff] [blame] | 812 | 'Starting Tempest 25.0.0 release, CONF.scenario.img_file need ' |
| 813 | 'a full path for the image. CONF.scenario.img_dir was ' |
| 814 | 'deprecated and will be removed in the next release. Till ' |
Martin Kopec | 008950e | 2020-09-29 08:12:39 +0000 | [diff] [blame] | 815 | 'Tempest 25.0.0, old behavior was maintained and kept working ' |
Martin Kopec | 02af6a4 | 2020-03-03 12:39:12 +0000 | [diff] [blame] | 816 | 'but starting Tempest 26.0.0, you need to specify the full ' |
| 817 | 'path in CONF.scenario.img_file config option.') |
Alessandro Pilotti | b7c1daa | 2014-08-16 14:24:13 +0300 | [diff] [blame] | 818 | img_container_format = CONF.scenario.img_container_format |
| 819 | img_disk_format = CONF.scenario.img_disk_format |
Evgeny Antyshev | 7ba0d5f | 2015-04-28 13:18:07 +0000 | [diff] [blame] | 820 | img_properties = CONF.scenario.img_properties |
PranaliD | 2aa523c | 2016-06-07 03:54:34 -0400 | [diff] [blame] | 821 | LOG.debug("paths: img: %s, container_format: %s, disk_format: %s, " |
Martin Kopec | 02af6a4 | 2020-03-03 12:39:12 +0000 | [diff] [blame] | 822 | "properties: %s", |
Jordan Pittier | 525ec71 | 2016-12-07 17:51:26 +0100 | [diff] [blame] | 823 | img_path, img_container_format, img_disk_format, |
Martin Kopec | 02af6a4 | 2020-03-03 12:39:12 +0000 | [diff] [blame] | 824 | img_properties) |
Soniya Vyas | be8d510 | 2020-08-17 17:23:30 +0530 | [diff] [blame] | 825 | if img_properties is None: |
| 826 | img_properties = {} |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 827 | name = data_utils.rand_name( |
| 828 | prefix=CONF.resource_name_prefix, name='%s-' % name) |
Soniya Vyas | be8d510 | 2020-08-17 17:23:30 +0530 | [diff] [blame] | 829 | params = { |
| 830 | 'name': name, |
| 831 | 'container_format': img_container_format, |
| 832 | 'disk_format': img_disk_format or img_container_format, |
Ghanshyam Mann | 3562cd0 | 2023-08-05 17:22:03 -0700 | [diff] [blame] | 833 | 'visibility': 'private' |
Soniya Vyas | be8d510 | 2020-08-17 17:23:30 +0530 | [diff] [blame] | 834 | } |
Ghanshyam Mann | 3562cd0 | 2023-08-05 17:22:03 -0700 | [diff] [blame] | 835 | # Additional properties are flattened out in the v2 API. |
| 836 | if img_properties: |
| 837 | params.update(img_properties) |
Lukas Piwowarski | b50eabe | 2020-11-05 15:15:38 +0000 | [diff] [blame] | 838 | params.update(kwargs) |
melanie witt | a0b161b | 2023-12-01 23:41:44 +0000 | [diff] [blame] | 839 | |
| 840 | # This code is basically copying the devstack code that extracts and |
| 841 | # uploads split kernel/ramdisk images. |
| 842 | if tarfile.is_tarfile(img_path): |
| 843 | extract_dir = os.path.join(tempfile.gettempdir(), 'images', name) |
| 844 | self.addCleanup(shutil.rmtree, extract_dir) |
| 845 | os.makedirs(extract_dir) |
| 846 | with tarfile.open(img_path) as tar: |
| 847 | tar.extractall(extract_dir, filter='data') |
| 848 | filenames = os.listdir(extract_dir) |
| 849 | for fname in filenames: |
| 850 | if re.search(r'(.*-vmlinuz.*|aki-.*/image$)', fname): |
| 851 | kernel_img_path = os.path.join(extract_dir, fname) |
| 852 | elif re.search(r'(.*-initrd.*|ari-.*/image$)', fname): |
| 853 | ramdisk_img_path = os.path.join(extract_dir, fname) |
| 854 | elif re.search(f'(.*\\.img$|ami-.*/image$)', fname): |
| 855 | img_path = os.path.join(extract_dir, fname) |
| 856 | # Create the kernel image. |
| 857 | kparams = { |
| 858 | 'name': name + '-kernel', |
| 859 | 'container_format': 'aki', |
| 860 | 'disk_format': 'aki', |
| 861 | 'visibility': 'private' |
| 862 | } |
| 863 | body = self.image_client.create_image(**kparams) |
| 864 | image = body['image'] if 'image' in body else body |
| 865 | kernel_id = image['id'] |
| 866 | self.addCleanup(self.image_client.delete_image, kernel_id) |
| 867 | self.assertEqual("queued", image['status']) |
| 868 | with open(kernel_img_path, 'rb') as image_file: |
| 869 | self.image_client.store_image_file(kernel_id, image_file) |
| 870 | LOG.debug("image:%s", kernel_id) |
| 871 | # Create the ramdisk image. |
| 872 | rparams = { |
| 873 | 'name': name + '-ramdisk', |
| 874 | 'container_format': 'ari', |
| 875 | 'disk_format': 'ari', |
| 876 | 'visibility': 'private' |
| 877 | } |
| 878 | body = self.image_client.create_image(**rparams) |
| 879 | image = body['image'] if 'image' in body else body |
| 880 | ramdisk_id = image['id'] |
| 881 | self.addCleanup(self.image_client.delete_image, ramdisk_id) |
| 882 | self.assertEqual("queued", image['status']) |
| 883 | with open(ramdisk_img_path, 'rb') as image_file: |
| 884 | self.image_client.store_image_file(ramdisk_id, image_file) |
| 885 | LOG.debug("image:%s", ramdisk_id) |
| 886 | # Set the kernel_id, ramdisk_id, container format, disk format for |
| 887 | # the split image. |
| 888 | params['kernel_id'] = kernel_id |
| 889 | params['ramdisk_id'] = ramdisk_id |
| 890 | params['container_format'] = 'ami' |
| 891 | params['disk_format'] = 'ami' |
| 892 | |
Soniya Vyas | be8d510 | 2020-08-17 17:23:30 +0530 | [diff] [blame] | 893 | body = self.image_client.create_image(**params) |
| 894 | image = body['image'] if 'image' in body else body |
| 895 | self.addCleanup(self.image_client.delete_image, image['id']) |
| 896 | self.assertEqual("queued", image['status']) |
| 897 | with open(img_path, 'rb') as image_file: |
Ghanshyam Mann | 3562cd0 | 2023-08-05 17:22:03 -0700 | [diff] [blame] | 898 | self.image_client.store_image_file(image['id'], image_file) |
Soniya Vyas | be8d510 | 2020-08-17 17:23:30 +0530 | [diff] [blame] | 899 | LOG.debug("image:%s", image['id']) |
| 900 | return image['id'] |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 901 | |
Soniya Vyas | 1b0cddc | 2021-01-29 17:28:19 +0530 | [diff] [blame] | 902 | def log_console_output(self, servers=None, client=None, **kwargs): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 903 | """Console log output""" |
Matthew Treinish | 42a3f3a | 2014-09-04 15:04:53 -0400 | [diff] [blame] | 904 | if not CONF.compute_feature_enabled.console_output: |
| 905 | LOG.debug('Console output not supported, cannot log') |
| 906 | return |
Ihar Hrachyshka | a9dca2b | 2017-04-04 14:17:11 -0700 | [diff] [blame] | 907 | client = client or self.servers_client |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 908 | if not servers: |
Ihar Hrachyshka | a9dca2b | 2017-04-04 14:17:11 -0700 | [diff] [blame] | 909 | servers = client.list_servers() |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 910 | servers = servers['servers'] |
| 911 | for server in servers: |
Attila Fazekas | 9a5a112 | 2016-11-08 10:24:57 +0100 | [diff] [blame] | 912 | try: |
Ihar Hrachyshka | a9dca2b | 2017-04-04 14:17:11 -0700 | [diff] [blame] | 913 | console_output = client.get_console_output( |
Lukas Piwowarski | 91ded04 | 2020-10-29 15:15:25 +0000 | [diff] [blame] | 914 | server['id'], **kwargs)['output'] |
Attila Fazekas | 9a5a112 | 2016-11-08 10:24:57 +0100 | [diff] [blame] | 915 | LOG.debug('Console output for %s\nbody=\n%s', |
| 916 | server['id'], console_output) |
| 917 | except lib_exc.NotFound: |
Attila Fazekas | e136048 | 2016-11-10 11:28:08 +0100 | [diff] [blame] | 918 | LOG.debug("Server %s disappeared(deleted) while looking " |
Attila Fazekas | 9a5a112 | 2016-11-08 10:24:57 +0100 | [diff] [blame] | 919 | "for the console log", server['id']) |
Andrea Frittoli | 247058f | 2014-07-16 16:09:22 +0100 | [diff] [blame] | 920 | |
Ken'ichi Ohmichi | 6e201f5 | 2014-10-01 04:21:39 +0000 | [diff] [blame] | 921 | def _log_net_info(self, exc): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 922 | """network debug is called as part of ssh init""" |
Andrey Pavlov | 6472376 | 2015-04-29 06:24:58 +0300 | [diff] [blame] | 923 | if not isinstance(exc, lib_exc.SSHTimeout): |
Ken'ichi Ohmichi | 6e201f5 | 2014-10-01 04:21:39 +0000 | [diff] [blame] | 924 | LOG.debug('Network information on a devstack host') |
Ken'ichi Ohmichi | 6e201f5 | 2014-10-01 04:21:39 +0000 | [diff] [blame] | 925 | |
Lukas Piwowarski | 9ad9ca2 | 2020-10-29 15:36:30 +0000 | [diff] [blame] | 926 | def create_server_snapshot(self, server, name=None, **kwargs): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 927 | """Creates server snapshot""" |
nithya-ganesan | 882595e | 2014-07-29 18:51:07 +0000 | [diff] [blame] | 928 | # Glance client |
| 929 | _image_client = self.image_client |
| 930 | # Compute client |
Ghanshyam | ae76c12 | 2015-12-22 13:41:35 +0900 | [diff] [blame] | 931 | _images_client = self.compute_images_client |
nithya-ganesan | 882595e | 2014-07-29 18:51:07 +0000 | [diff] [blame] | 932 | if name is None: |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 933 | name = data_utils.rand_name( |
| 934 | prefix=CONF.resource_name_prefix, |
| 935 | name=self.__class__.__name__ + 'snapshot') |
nithya-ganesan | 882595e | 2014-07-29 18:51:07 +0000 | [diff] [blame] | 936 | LOG.debug("Creating a snapshot image for server: %s", server['name']) |
Lukas Piwowarski | 9ad9ca2 | 2020-10-29 15:36:30 +0000 | [diff] [blame] | 937 | image = _images_client.create_image(server['id'], name=name, **kwargs) |
Benny Kopilov | 7d2edc2 | 2022-06-30 17:22:14 +0300 | [diff] [blame] | 938 | # microversion 2.45 and above returns image_id |
| 939 | image_id = image.get('image_id') or image.response['location'].split( |
| 940 | 'images/')[1] |
Yaroslav Lobankov | 2fea405 | 2016-04-19 15:05:57 +0300 | [diff] [blame] | 941 | waiters.wait_for_image_status(_image_client, image_id, 'active') |
Jordan Pittier | f672b7d | 2016-06-20 18:50:40 +0200 | [diff] [blame] | 942 | |
| 943 | self.addCleanup(_image_client.wait_for_resource_deletion, |
| 944 | image_id) |
| 945 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
| 946 | _image_client.delete_image, image_id) |
| 947 | |
Ghanshyam Mann | 3562cd0 | 2023-08-05 17:22:03 -0700 | [diff] [blame] | 948 | # In glance v2 the additional properties are flattened. |
| 949 | snapshot_image = _image_client.show_image(image_id) |
| 950 | image_props = snapshot_image |
Andrey Pavlov | c8bd4b1 | 2015-08-17 10:20:17 +0300 | [diff] [blame] | 951 | |
Matt Riedemann | 2aa19d4 | 2016-06-06 17:45:41 -0400 | [diff] [blame] | 952 | bdm = image_props.get('block_device_mapping') |
Andrey Pavlov | c8bd4b1 | 2015-08-17 10:20:17 +0300 | [diff] [blame] | 953 | if bdm: |
| 954 | bdm = json.loads(bdm) |
| 955 | if bdm and 'snapshot_id' in bdm[0]: |
| 956 | snapshot_id = bdm[0]['snapshot_id'] |
| 957 | self.addCleanup( |
| 958 | self.snapshots_client.wait_for_resource_deletion, |
| 959 | snapshot_id) |
Jordan Pittier | 9e227c5 | 2016-02-09 14:35:18 +0100 | [diff] [blame] | 960 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
| 961 | self.snapshots_client.delete_snapshot, |
| 962 | snapshot_id) |
lkuchlan | 52d7b0d | 2016-11-07 20:53:19 +0200 | [diff] [blame] | 963 | waiters.wait_for_volume_resource_status(self.snapshots_client, |
| 964 | snapshot_id, |
| 965 | 'available') |
nithya-ganesan | 882595e | 2014-07-29 18:51:07 +0000 | [diff] [blame] | 966 | image_name = snapshot_image['name'] |
| 967 | self.assertEqual(name, image_name) |
| 968 | LOG.debug("Created snapshot image %s for server %s", |
| 969 | image_name, server['name']) |
| 970 | return snapshot_image |
| 971 | |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 972 | def nova_volume_attach(self, server, volume_to_attach, |
| 973 | volumes_client=None, servers_client=None, |
| 974 | **kwargs): |
Soniya Vyas | ae63113 | 2020-08-28 13:37:12 +0530 | [diff] [blame] | 975 | """Compute volume attach |
| 976 | |
| 977 | This utility attaches volume from compute and waits for the |
| 978 | volume status to be 'in-use' state. |
| 979 | """ |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 980 | if volumes_client is None: |
| 981 | volumes_client = self.volumes_client |
| 982 | if servers_client is None: |
| 983 | servers_client = self.servers_client |
| 984 | |
| 985 | volume = servers_client.attach_volume( |
Lukas Piwowarski | 76819fa | 2020-10-29 13:46:07 +0000 | [diff] [blame] | 986 | server['id'], volumeId=volume_to_attach['id'], |
| 987 | **kwargs)['volumeAttachment'] |
Jordan Pittier | 7cf6476 | 2015-10-14 15:01:12 +0200 | [diff] [blame] | 988 | self.assertEqual(volume_to_attach['id'], volume['id']) |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 989 | waiters.wait_for_volume_resource_status(volumes_client, |
lkuchlan | 52d7b0d | 2016-11-07 20:53:19 +0200 | [diff] [blame] | 990 | volume['id'], 'in-use') |
Lukas Piwowarski | 76819fa | 2020-10-29 13:46:07 +0000 | [diff] [blame] | 991 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 992 | self.nova_volume_detach, server, volume, |
| 993 | servers_client) |
Jordan Pittier | 7cf6476 | 2015-10-14 15:01:12 +0200 | [diff] [blame] | 994 | # Return the updated volume after the attachment |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 995 | return volumes_client.show_volume(volume['id'])['volume'] |
Masayuki Igawa | 1f0ad63 | 2014-08-05 13:36:56 +0900 | [diff] [blame] | 996 | |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 997 | def nova_volume_detach(self, server, volume, servers_client=None): |
Soniya Vyas | ae63113 | 2020-08-28 13:37:12 +0530 | [diff] [blame] | 998 | """Compute volume detach |
| 999 | |
Lee Yarwood | 5423c53 | 2020-12-17 11:24:46 +0000 | [diff] [blame] | 1000 | This utility detaches the volume from the server and checks whether the |
| 1001 | volume attachment has been removed from Nova. |
Soniya Vyas | ae63113 | 2020-08-28 13:37:12 +0530 | [diff] [blame] | 1002 | """ |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 1003 | if servers_client is None: |
| 1004 | servers_client = self.servers_client |
| 1005 | |
| 1006 | servers_client.detach_volume(server['id'], volume['id']) |
Lee Yarwood | 5423c53 | 2020-12-17 11:24:46 +0000 | [diff] [blame] | 1007 | waiters.wait_for_volume_attachment_remove_from_server( |
Milana Levy | e9a58a1 | 2023-02-21 12:55:20 +0000 | [diff] [blame] | 1008 | servers_client, server['id'], volume['id']) |
Jordan Pittier | 7cf6476 | 2015-10-14 15:01:12 +0200 | [diff] [blame] | 1009 | |
Steven Hardy | da2a835 | 2014-10-02 12:52:20 +0100 | [diff] [blame] | 1010 | def ping_ip_address(self, ip_address, should_succeed=True, |
zhufl | 0ec74c4 | 2017-11-15 14:02:28 +0800 | [diff] [blame] | 1011 | ping_timeout=None, mtu=None, server=None): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1012 | """ping ip address""" |
lanoux | 5fc1452 | 2015-09-21 08:17:35 +0000 | [diff] [blame] | 1013 | timeout = ping_timeout or CONF.validation.ping_timeout |
Ihar Hrachyshka | f9227c0 | 2016-09-15 11:16:47 +0000 | [diff] [blame] | 1014 | cmd = ['ping', '-c1', '-w1'] |
| 1015 | |
| 1016 | if mtu: |
| 1017 | cmd += [ |
| 1018 | # don't fragment |
| 1019 | '-M', 'do', |
| 1020 | # ping receives just the size of ICMP payload |
| 1021 | '-s', str(net_utils.get_ping_payload_size(mtu, 4)) |
| 1022 | ] |
| 1023 | cmd.append(ip_address) |
Aaron Rosen | a7df13b | 2014-09-23 09:45:45 -0700 | [diff] [blame] | 1024 | |
| 1025 | def ping(): |
| 1026 | proc = subprocess.Popen(cmd, |
| 1027 | stdout=subprocess.PIPE, |
| 1028 | stderr=subprocess.PIPE) |
| 1029 | proc.communicate() |
Shuquan Huang | 753629e | 2015-07-20 08:52:29 +0000 | [diff] [blame] | 1030 | |
Aaron Rosen | a7df13b | 2014-09-23 09:45:45 -0700 | [diff] [blame] | 1031 | return (proc.returncode == 0) == should_succeed |
| 1032 | |
Jordan Pittier | 9e227c5 | 2016-02-09 14:35:18 +0100 | [diff] [blame] | 1033 | caller = test_utils.find_test_caller() |
Shuquan Huang | 753629e | 2015-07-20 08:52:29 +0000 | [diff] [blame] | 1034 | LOG.debug('%(caller)s begins to ping %(ip)s in %(timeout)s sec and the' |
John L. Villalovos | a898aec | 2017-01-13 14:46:46 -0800 | [diff] [blame] | 1035 | ' expected result is %(should_succeed)s', { |
Shuquan Huang | 753629e | 2015-07-20 08:52:29 +0000 | [diff] [blame] | 1036 | 'caller': caller, 'ip': ip_address, 'timeout': timeout, |
| 1037 | 'should_succeed': |
| 1038 | 'reachable' if should_succeed else 'unreachable' |
| 1039 | }) |
Jordan Pittier | 35a6375 | 2016-08-30 13:09:12 +0200 | [diff] [blame] | 1040 | result = test_utils.call_until_true(ping, timeout, 1) |
Shuquan Huang | 753629e | 2015-07-20 08:52:29 +0000 | [diff] [blame] | 1041 | LOG.debug('%(caller)s finishes ping %(ip)s in %(timeout)s sec and the ' |
John L. Villalovos | a898aec | 2017-01-13 14:46:46 -0800 | [diff] [blame] | 1042 | 'ping result is %(result)s', { |
Shuquan Huang | 753629e | 2015-07-20 08:52:29 +0000 | [diff] [blame] | 1043 | 'caller': caller, 'ip': ip_address, 'timeout': timeout, |
| 1044 | 'result': 'expected' if result else 'unexpected' |
| 1045 | }) |
zhufl | 0ec74c4 | 2017-11-15 14:02:28 +0800 | [diff] [blame] | 1046 | if server: |
Soniya Vyas | 1b0cddc | 2021-01-29 17:28:19 +0530 | [diff] [blame] | 1047 | self.log_console_output([server]) |
Shuquan Huang | 753629e | 2015-07-20 08:52:29 +0000 | [diff] [blame] | 1048 | return result |
Aaron Rosen | a7df13b | 2014-09-23 09:45:45 -0700 | [diff] [blame] | 1049 | |
Yair Fried | ae0e73d | 2014-11-24 11:56:26 +0200 | [diff] [blame] | 1050 | def check_vm_connectivity(self, ip_address, |
| 1051 | username=None, |
| 1052 | private_key=None, |
Ihar Hrachyshka | f9227c0 | 2016-09-15 11:16:47 +0000 | [diff] [blame] | 1053 | should_connect=True, |
zhufl | 0ec74c4 | 2017-11-15 14:02:28 +0800 | [diff] [blame] | 1054 | extra_msg="", |
| 1055 | server=None, |
Ihar Hrachyshka | f9227c0 | 2016-09-15 11:16:47 +0000 | [diff] [blame] | 1056 | mtu=None): |
Ken'ichi Ohmichi | c4e4f1c | 2015-11-17 08:16:12 +0000 | [diff] [blame] | 1057 | """Check server connectivity |
| 1058 | |
Yair Fried | ae0e73d | 2014-11-24 11:56:26 +0200 | [diff] [blame] | 1059 | :param ip_address: server to test against |
| 1060 | :param username: server's ssh username |
| 1061 | :param private_key: server's ssh private key to be used |
| 1062 | :param should_connect: True/False indicates positive/negative test |
| 1063 | positive - attempt ping and ssh |
| 1064 | negative - attempt ping and fail if succeed |
zhufl | 0ec74c4 | 2017-11-15 14:02:28 +0800 | [diff] [blame] | 1065 | :param extra_msg: Message to help with debugging if ``ping_ip_address`` |
| 1066 | fails |
| 1067 | :param server: The server whose console to log for debugging |
Ihar Hrachyshka | f9227c0 | 2016-09-15 11:16:47 +0000 | [diff] [blame] | 1068 | :param mtu: network MTU to use for connectivity validation |
Yair Fried | ae0e73d | 2014-11-24 11:56:26 +0200 | [diff] [blame] | 1069 | |
| 1070 | :raises: AssertError if the result of the connectivity check does |
| 1071 | not match the value of the should_connect param |
| 1072 | """ |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1073 | |
zhufl | 0ec74c4 | 2017-11-15 14:02:28 +0800 | [diff] [blame] | 1074 | LOG.debug('checking network connections to IP %s with user: %s', |
| 1075 | ip_address, username) |
Yair Fried | ae0e73d | 2014-11-24 11:56:26 +0200 | [diff] [blame] | 1076 | if should_connect: |
| 1077 | msg = "Timed out waiting for %s to become reachable" % ip_address |
| 1078 | else: |
| 1079 | msg = "ip address %s is reachable" % ip_address |
zhufl | 0ec74c4 | 2017-11-15 14:02:28 +0800 | [diff] [blame] | 1080 | if extra_msg: |
| 1081 | msg = "%s\n%s" % (extra_msg, msg) |
Yair Fried | ae0e73d | 2014-11-24 11:56:26 +0200 | [diff] [blame] | 1082 | self.assertTrue(self.ping_ip_address(ip_address, |
Ihar Hrachyshka | f9227c0 | 2016-09-15 11:16:47 +0000 | [diff] [blame] | 1083 | should_succeed=should_connect, |
zhufl | 0ec74c4 | 2017-11-15 14:02:28 +0800 | [diff] [blame] | 1084 | mtu=mtu, server=server), |
Yair Fried | ae0e73d | 2014-11-24 11:56:26 +0200 | [diff] [blame] | 1085 | msg=msg) |
| 1086 | if should_connect: |
| 1087 | # no need to check ssh for negative connectivity |
zhufl | 0ec74c4 | 2017-11-15 14:02:28 +0800 | [diff] [blame] | 1088 | try: |
| 1089 | self.get_remote_client(ip_address, username, private_key, |
| 1090 | server=server) |
| 1091 | except Exception: |
| 1092 | if not extra_msg: |
| 1093 | extra_msg = 'Failed to ssh to %s' % ip_address |
| 1094 | LOG.exception(extra_msg) |
| 1095 | raise |
Yair Fried | ae0e73d | 2014-11-24 11:56:26 +0200 | [diff] [blame] | 1096 | |
Ghanshyam Mann | 6428139 | 2021-03-24 18:48:38 -0500 | [diff] [blame] | 1097 | def get_server_port_id_and_ip4(self, server, ip_addr=None, **kwargs): |
Yair Fried | ae0e73d | 2014-11-24 11:56:26 +0200 | [diff] [blame] | 1098 | |
Ghanshyam Mann | 6428139 | 2021-03-24 18:48:38 -0500 | [diff] [blame] | 1099 | if ip_addr and not kwargs.get('fixed_ips'): |
| 1100 | kwargs['fixed_ips'] = 'ip_address=%s' % ip_addr |
| 1101 | ports = self.os_admin.ports_client.list_ports( |
| 1102 | device_id=server['id'], **kwargs)['ports'] |
Lukas Piwowarski | f759bc1 | 2020-11-05 10:51:29 +0000 | [diff] [blame] | 1103 | |
Ghanshyam Mann | 6428139 | 2021-03-24 18:48:38 -0500 | [diff] [blame] | 1104 | # A port can have more than one IP address in some cases. |
| 1105 | # If the network is dual-stack (IPv4 + IPv6), this port is associated |
| 1106 | # with 2 subnets |
| 1107 | |
| 1108 | def _is_active(port): |
| 1109 | # NOTE(vsaienko) With Ironic, instances live on separate hardware |
| 1110 | # servers. Neutron does not bind ports for Ironic instances, as a |
| 1111 | # result the port remains in the DOWN state. This has been fixed |
| 1112 | # with the introduction of the networking-baremetal plugin but |
| 1113 | # it's not mandatory (and is not used on all stable branches). |
| 1114 | return (port['status'] == 'ACTIVE' or |
| 1115 | port.get('binding:vnic_type') == 'baremetal') |
| 1116 | |
| 1117 | port_map = [(p["id"], fxip["ip_address"]) |
| 1118 | for p in ports |
| 1119 | for fxip in p["fixed_ips"] |
| 1120 | if (netutils.is_valid_ipv4(fxip["ip_address"]) and |
| 1121 | _is_active(p))] |
| 1122 | inactive = [p for p in ports if p['status'] != 'ACTIVE'] |
| 1123 | if inactive: |
| 1124 | LOG.warning("Instance has ports that are not ACTIVE: %s", inactive) |
| 1125 | |
| 1126 | self.assertNotEmpty(port_map, |
| 1127 | "No IPv4 addresses found in: %s" % ports) |
| 1128 | self.assertEqual(len(port_map), 1, |
| 1129 | "Found multiple IPv4 addresses: %s. " |
| 1130 | "Unable to determine which port to target." |
| 1131 | % port_map) |
| 1132 | return port_map[0] |
| 1133 | |
| 1134 | def create_floating_ip(self, server, external_network_id=None, |
| 1135 | port_id=None, client=None, **kwargs): |
| 1136 | """Create a floating IP and associates to a resource/port on Neutron""" |
| 1137 | |
| 1138 | if not external_network_id: |
| 1139 | external_network_id = CONF.network.public_network_id |
| 1140 | if not client: |
| 1141 | client = self.floating_ips_client |
| 1142 | if not port_id: |
| 1143 | port_id, ip4 = self.get_server_port_id_and_ip4(server) |
| 1144 | else: |
| 1145 | ip4 = None |
| 1146 | |
| 1147 | floatingip_kwargs = { |
| 1148 | 'floating_network_id': external_network_id, |
| 1149 | 'port_id': port_id, |
| 1150 | 'tenant_id': server.get('project_id') or server['tenant_id'], |
| 1151 | 'fixed_ip_address': ip4, |
| 1152 | } |
| 1153 | if CONF.network.subnet_id: |
| 1154 | floatingip_kwargs['subnet_id'] = CONF.network.subnet_id |
| 1155 | |
| 1156 | floatingip_kwargs.update(kwargs) |
| 1157 | result = client.create_floatingip(**floatingip_kwargs) |
| 1158 | floating_ip = result['floatingip'] |
| 1159 | |
Jordan Pittier | 9e227c5 | 2016-02-09 14:35:18 +0100 | [diff] [blame] | 1160 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
Ghanshyam Mann | 6428139 | 2021-03-24 18:48:38 -0500 | [diff] [blame] | 1161 | client.delete_floatingip, |
Yair Fried | ae0e73d | 2014-11-24 11:56:26 +0200 | [diff] [blame] | 1162 | floating_ip['id']) |
Ghanshyam Mann | 6428139 | 2021-03-24 18:48:38 -0500 | [diff] [blame] | 1163 | return floating_ip |
| 1164 | |
Dan Smith | 49c2b3b | 2023-04-26 15:52:22 -0700 | [diff] [blame] | 1165 | def get_floating_ip(self, server): |
| 1166 | """Attempt to get an existing floating ip or a server |
| 1167 | |
| 1168 | If one exists, return it, else return None |
| 1169 | """ |
| 1170 | port_id, ip4 = self.get_server_port_id_and_ip4(server) |
| 1171 | ips = self.floating_ips_client.list_floatingips( |
| 1172 | floating_network_id=CONF.network.public_network_id, |
| 1173 | port_id=port_id) |
| 1174 | try: |
| 1175 | return ips['floatingips'][0]['floating_ip_address'] |
| 1176 | except (KeyError, IndexError): |
| 1177 | return None |
| 1178 | |
Ghanshyam Mann | 6428139 | 2021-03-24 18:48:38 -0500 | [diff] [blame] | 1179 | def associate_floating_ip(self, floating_ip, server): |
| 1180 | """Associate floating ip to server |
| 1181 | |
| 1182 | This wrapper utility attaches the floating_ip for |
| 1183 | the respective port_id of server |
| 1184 | """ |
| 1185 | port_id, _ = self.get_server_port_id_and_ip4(server) |
| 1186 | kwargs = dict(port_id=port_id) |
| 1187 | floating_ip = self.floating_ips_client.update_floatingip( |
| 1188 | floating_ip['id'], **kwargs)['floatingip'] |
| 1189 | self.assertEqual(port_id, floating_ip['port_id']) |
| 1190 | return floating_ip |
| 1191 | |
| 1192 | def disassociate_floating_ip(self, floating_ip): |
| 1193 | """Disassociates floating ip |
| 1194 | |
| 1195 | This wrapper utility disassociates given floating ip. |
| 1196 | :param floating_ip: a dict which is a return value of |
| 1197 | floating_ips_client.create_floatingip method |
| 1198 | """ |
| 1199 | kwargs = dict(port_id=None) |
| 1200 | floating_ip = self.floating_ips_client.update_floatingip( |
| 1201 | floating_ip['id'], **kwargs)['floatingip'] |
| 1202 | self.assertIsNone(floating_ip['port_id']) |
Yair Fried | ae0e73d | 2014-11-24 11:56:26 +0200 | [diff] [blame] | 1203 | return floating_ip |
| 1204 | |
jskunda | d744598 | 2023-10-18 13:49:02 +0200 | [diff] [blame] | 1205 | def create_file(self, ip_address, path, private_key=None, server=None, |
| 1206 | username=None): |
| 1207 | """Create a file on a remote server""" |
| 1208 | ssh_client = self.get_remote_client(ip_address, |
| 1209 | private_key=private_key, |
| 1210 | server=server, |
| 1211 | username=username) |
| 1212 | ssh_client.exec_command('sudo mkdir -p %s' % path) |
| 1213 | |
Sean Dague | 20e9861 | 2016-01-06 14:33:28 -0500 | [diff] [blame] | 1214 | def create_timestamp(self, ip_address, dev_name=None, mount_path='/mnt', |
Lukas Piwowarski | 25f7ba2 | 2020-10-29 14:01:34 +0000 | [diff] [blame] | 1215 | private_key=None, server=None, username=None, |
Dan Smith | 30eb878 | 2023-08-02 09:35:01 -0700 | [diff] [blame] | 1216 | fs='vfat'): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1217 | """Creates timestamp |
| 1218 | |
| 1219 | This wrapper utility does ssh, creates timestamp and returns the |
| 1220 | created timestamp. |
| 1221 | """ |
Sean Dague | 20e9861 | 2016-01-06 14:33:28 -0500 | [diff] [blame] | 1222 | ssh_client = self.get_remote_client(ip_address, |
Slawek Kaplonski | 79d8b0f | 2018-07-30 22:43:41 +0200 | [diff] [blame] | 1223 | private_key=private_key, |
Lukas Piwowarski | 25f7ba2 | 2020-10-29 14:01:34 +0000 | [diff] [blame] | 1224 | server=server, |
| 1225 | username=username) |
| 1226 | |
melanie witt | 2da632a | 2023-05-31 03:25:06 +0000 | [diff] [blame] | 1227 | # Default the directory in which to write the timestamp file to /tmp |
| 1228 | # and only use the mount_path as the target directory if we mounted |
| 1229 | # dev_name to mount_path. |
| 1230 | target_dir = '/tmp' |
Alexander Gubanov | abd154c | 2015-09-23 23:24:06 +0300 | [diff] [blame] | 1231 | if dev_name is not None: |
Lukas Piwowarski | 25f7ba2 | 2020-10-29 14:01:34 +0000 | [diff] [blame] | 1232 | ssh_client.make_fs(dev_name, fs=fs) |
Ken'ichi Ohmichi | 4e5a69e | 2017-03-01 18:15:29 -0800 | [diff] [blame] | 1233 | ssh_client.exec_command('sudo mount /dev/%s %s' % (dev_name, |
| 1234 | mount_path)) |
melanie witt | 2da632a | 2023-05-31 03:25:06 +0000 | [diff] [blame] | 1235 | target_dir = mount_path |
| 1236 | cmd_timestamp = 'sudo sh -c "date > %s/timestamp; sync"' % target_dir |
Alexander Gubanov | abd154c | 2015-09-23 23:24:06 +0300 | [diff] [blame] | 1237 | ssh_client.exec_command(cmd_timestamp) |
| 1238 | timestamp = ssh_client.exec_command('sudo cat %s/timestamp' |
melanie witt | 2da632a | 2023-05-31 03:25:06 +0000 | [diff] [blame] | 1239 | % target_dir) |
Alexander Gubanov | abd154c | 2015-09-23 23:24:06 +0300 | [diff] [blame] | 1240 | if dev_name is not None: |
Ken'ichi Ohmichi | 4e5a69e | 2017-03-01 18:15:29 -0800 | [diff] [blame] | 1241 | ssh_client.exec_command('sudo umount %s' % mount_path) |
Alexander Gubanov | abd154c | 2015-09-23 23:24:06 +0300 | [diff] [blame] | 1242 | return timestamp |
| 1243 | |
Sean Dague | 20e9861 | 2016-01-06 14:33:28 -0500 | [diff] [blame] | 1244 | def get_timestamp(self, ip_address, dev_name=None, mount_path='/mnt', |
Lukas Piwowarski | 2c230eb | 2020-10-30 10:09:18 +0000 | [diff] [blame] | 1245 | private_key=None, server=None, username=None): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1246 | """Returns timestamp |
| 1247 | |
| 1248 | This wrapper utility does ssh and returns the timestamp. |
Lukas Piwowarski | 2c230eb | 2020-10-30 10:09:18 +0000 | [diff] [blame] | 1249 | |
| 1250 | :param ip_address: The floating IP or fixed IP of the remote server |
| 1251 | :param dev_name: Name of the device that stores the timestamp |
| 1252 | :param mount_path: Path which should be used as mount point for |
| 1253 | dev_name |
| 1254 | :param private_key: The SSH private key to use for authentication |
| 1255 | :param server: Server dict, used for debugging purposes |
| 1256 | :param username: Name of the Linux account on the remote server |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1257 | """ |
| 1258 | |
Sean Dague | 20e9861 | 2016-01-06 14:33:28 -0500 | [diff] [blame] | 1259 | ssh_client = self.get_remote_client(ip_address, |
Slawek Kaplonski | 79d8b0f | 2018-07-30 22:43:41 +0200 | [diff] [blame] | 1260 | private_key=private_key, |
Lukas Piwowarski | 2c230eb | 2020-10-30 10:09:18 +0000 | [diff] [blame] | 1261 | server=server, |
| 1262 | username=username) |
| 1263 | |
melanie witt | 2da632a | 2023-05-31 03:25:06 +0000 | [diff] [blame] | 1264 | # Default the directory from which to read the timestamp file to /tmp |
| 1265 | # and only use the mount_path as the target directory if we mounted |
| 1266 | # dev_name to mount_path. |
| 1267 | target_dir = '/tmp' |
Alexander Gubanov | abd154c | 2015-09-23 23:24:06 +0300 | [diff] [blame] | 1268 | if dev_name is not None: |
Matt Riedemann | 076685a | 2015-09-30 14:38:16 -0700 | [diff] [blame] | 1269 | ssh_client.mount(dev_name, mount_path) |
melanie witt | 2da632a | 2023-05-31 03:25:06 +0000 | [diff] [blame] | 1270 | target_dir = mount_path |
Alexander Gubanov | abd154c | 2015-09-23 23:24:06 +0300 | [diff] [blame] | 1271 | timestamp = ssh_client.exec_command('sudo cat %s/timestamp' |
melanie witt | 2da632a | 2023-05-31 03:25:06 +0000 | [diff] [blame] | 1272 | % target_dir) |
Alexander Gubanov | abd154c | 2015-09-23 23:24:06 +0300 | [diff] [blame] | 1273 | if dev_name is not None: |
Ken'ichi Ohmichi | 4e5a69e | 2017-03-01 18:15:29 -0800 | [diff] [blame] | 1274 | ssh_client.exec_command('sudo umount %s' % mount_path) |
Alexander Gubanov | abd154c | 2015-09-23 23:24:06 +0300 | [diff] [blame] | 1275 | return timestamp |
| 1276 | |
Lukas Piwowarski | b0642f9 | 2020-10-29 14:51:30 +0000 | [diff] [blame] | 1277 | def get_server_ip(self, server, **kwargs): |
Sean Dague | 20e9861 | 2016-01-06 14:33:28 -0500 | [diff] [blame] | 1278 | """Get the server fixed or floating IP. |
| 1279 | |
| 1280 | Based on the configuration we're in, return a correct ip |
| 1281 | address for validating that a guest is up. |
Lukas Piwowarski | b0642f9 | 2020-10-29 14:51:30 +0000 | [diff] [blame] | 1282 | |
| 1283 | If CONF.validation.connect_method is floating, then |
| 1284 | a floating ip will be created passing kwargs as additional |
| 1285 | argument. |
Sean Dague | 20e9861 | 2016-01-06 14:33:28 -0500 | [diff] [blame] | 1286 | """ |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1287 | |
Alexander Gubanov | c8829f8 | 2015-11-12 10:35:13 +0200 | [diff] [blame] | 1288 | if CONF.validation.connect_method == 'floating': |
Sean Dague | 20e9861 | 2016-01-06 14:33:28 -0500 | [diff] [blame] | 1289 | # The tests calling this method don't have a floating IP |
zhufl | 0892cb2 | 2016-05-06 14:46:00 +0800 | [diff] [blame] | 1290 | # and can't make use of the validation resources. So the |
Sean Dague | 20e9861 | 2016-01-06 14:33:28 -0500 | [diff] [blame] | 1291 | # method is creating the floating IP there. |
Dan Smith | 49c2b3b | 2023-04-26 15:52:22 -0700 | [diff] [blame] | 1292 | fip = self.get_floating_ip(server) |
| 1293 | if fip: |
| 1294 | # Already have a floating ip, so use it instead of creating |
| 1295 | # another |
| 1296 | return fip |
| 1297 | else: |
| 1298 | return self.create_floating_ip( |
| 1299 | server, **kwargs)['floating_ip_address'] |
Sean Dague | 20e9861 | 2016-01-06 14:33:28 -0500 | [diff] [blame] | 1300 | elif CONF.validation.connect_method == 'fixed': |
Matt Riedemann | a778255 | 2016-08-08 16:26:01 -0400 | [diff] [blame] | 1301 | # Determine the network name to look for based on config or creds |
| 1302 | # provider network resources. |
| 1303 | if CONF.validation.network_for_ssh: |
| 1304 | addresses = server['addresses'][ |
| 1305 | CONF.validation.network_for_ssh] |
| 1306 | else: |
zhufl | 7b4a720 | 2017-09-28 10:29:27 +0800 | [diff] [blame] | 1307 | network = self.get_tenant_network() |
Matt Riedemann | a778255 | 2016-08-08 16:26:01 -0400 | [diff] [blame] | 1308 | addresses = (server['addresses'][network['name']] |
| 1309 | if network else []) |
Sean Dague | 20e9861 | 2016-01-06 14:33:28 -0500 | [diff] [blame] | 1310 | for address in addresses: |
Federico Ressi | 2d6bcaa | 2018-04-11 12:37:36 +0200 | [diff] [blame] | 1311 | if (address['version'] == CONF.validation.ip_version_for_ssh and # noqa |
| 1312 | address['OS-EXT-IPS:type'] == 'fixed'): |
Sean Dague | 20e9861 | 2016-01-06 14:33:28 -0500 | [diff] [blame] | 1313 | return address['addr'] |
zhufl | 955f82b | 2016-07-22 11:14:34 +0800 | [diff] [blame] | 1314 | raise exceptions.ServerUnreachable(server_id=server['id']) |
Alexander Gubanov | c8829f8 | 2015-11-12 10:35:13 +0200 | [diff] [blame] | 1315 | else: |
Matthew Treinish | 4217a70 | 2016-10-07 17:27:11 -0400 | [diff] [blame] | 1316 | raise lib_exc.InvalidConfiguration() |
Alexander Gubanov | c8829f8 | 2015-11-12 10:35:13 +0200 | [diff] [blame] | 1317 | |
zhufl | 7bc916d | 2018-08-22 14:47:39 +0800 | [diff] [blame] | 1318 | @classmethod |
| 1319 | def get_host_for_server(cls, server_id): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1320 | """Gets host of server""" |
| 1321 | |
zhufl | 7bc916d | 2018-08-22 14:47:39 +0800 | [diff] [blame] | 1322 | server_details = cls.os_admin.servers_client.show_server(server_id) |
| 1323 | return server_details['server']['OS-EXT-SRV-ATTR:host'] |
| 1324 | |
Rajat Dhasmana | a8bfa17 | 2020-01-14 17:34:44 +0000 | [diff] [blame] | 1325 | def _get_bdm(self, source_id, source_type, delete_on_termination=False): |
| 1326 | bd_map_v2 = [{ |
| 1327 | 'uuid': source_id, |
| 1328 | 'source_type': source_type, |
| 1329 | 'destination_type': 'volume', |
| 1330 | 'boot_index': 0, |
| 1331 | 'delete_on_termination': delete_on_termination}] |
| 1332 | return {'block_device_mapping_v2': bd_map_v2} |
| 1333 | |
| 1334 | def boot_instance_from_resource(self, source_id, |
| 1335 | source_type, |
| 1336 | keypair=None, |
| 1337 | security_group=None, |
| 1338 | delete_on_termination=False, |
Martin Kopec | bee673e | 2020-11-04 09:40:52 +0000 | [diff] [blame] | 1339 | name=None, **kwargs): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1340 | """Boot instance from resource |
| 1341 | |
| 1342 | This wrapper utility boots instance from resource with block device |
| 1343 | mapping with source info passed in arguments |
| 1344 | """ |
| 1345 | |
Martin Kopec | bee673e | 2020-11-04 09:40:52 +0000 | [diff] [blame] | 1346 | create_kwargs = dict({'image_id': ''}) |
Rajat Dhasmana | a8bfa17 | 2020-01-14 17:34:44 +0000 | [diff] [blame] | 1347 | if keypair: |
Dan Smith | 49c2b3b | 2023-04-26 15:52:22 -0700 | [diff] [blame] | 1348 | create_kwargs['keypair'] = keypair |
Rajat Dhasmana | a8bfa17 | 2020-01-14 17:34:44 +0000 | [diff] [blame] | 1349 | if security_group: |
| 1350 | create_kwargs['security_groups'] = [ |
| 1351 | {'name': security_group['name']}] |
| 1352 | create_kwargs.update(self._get_bdm( |
| 1353 | source_id, |
| 1354 | source_type, |
| 1355 | delete_on_termination=delete_on_termination)) |
| 1356 | if name: |
| 1357 | create_kwargs['name'] = name |
Martin Kopec | bee673e | 2020-11-04 09:40:52 +0000 | [diff] [blame] | 1358 | create_kwargs.update(kwargs) |
Rajat Dhasmana | a8bfa17 | 2020-01-14 17:34:44 +0000 | [diff] [blame] | 1359 | |
Martin Kopec | bee673e | 2020-11-04 09:40:52 +0000 | [diff] [blame] | 1360 | return self.create_server(**create_kwargs) |
Rajat Dhasmana | a8bfa17 | 2020-01-14 17:34:44 +0000 | [diff] [blame] | 1361 | |
Martin Kopec | 0216b37 | 2020-11-04 09:32:05 +0000 | [diff] [blame] | 1362 | def create_volume_from_image(self, **kwargs): |
| 1363 | """Create volume from image. |
| 1364 | |
| 1365 | :param image_id: ID of the image to create volume from, |
| 1366 | CONF.compute.image_ref by default |
| 1367 | :param name: name of the volume, |
| 1368 | '$classname-volume-origin' by default |
| 1369 | :param **kwargs: additional parameters |
| 1370 | """ |
| 1371 | image_id = kwargs.pop('image_id', CONF.compute.image_ref) |
| 1372 | name = kwargs.pop('name', None) |
| 1373 | if not name: |
| 1374 | namestart = self.__class__.__name__ + '-volume-origin' |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 1375 | name = data_utils.rand_name( |
| 1376 | prefix=CONF.resource_name_prefix, name=namestart) |
Martin Kopec | 0216b37 | 2020-11-04 09:32:05 +0000 | [diff] [blame] | 1377 | return self.create_volume(name=name, imageRef=image_id, **kwargs) |
Rajat Dhasmana | a8bfa17 | 2020-01-14 17:34:44 +0000 | [diff] [blame] | 1378 | |
Andrea Frittoli | 2e733b5 | 2014-07-16 14:12:11 +0100 | [diff] [blame] | 1379 | |
Andrea Frittoli | 4971fc8 | 2014-09-25 10:22:20 +0100 | [diff] [blame] | 1380 | class NetworkScenarioTest(ScenarioTest): |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1381 | """Base class for network scenario tests. |
Ken'ichi Ohmichi | c4e4f1c | 2015-11-17 08:16:12 +0000 | [diff] [blame] | 1382 | |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1383 | This class provide helpers for network scenario tests, using the neutron |
| 1384 | API. Helpers from ancestor which use the nova network API are overridden |
| 1385 | with the neutron API. |
| 1386 | |
| 1387 | This Class also enforces using Neutron instead of novanetwork. |
| 1388 | Subclassed tests will be skipped if Neutron is not enabled |
| 1389 | |
| 1390 | """ |
| 1391 | |
| 1392 | @classmethod |
Emily Hugenbruch | 5e2d2a2 | 2015-02-25 21:35:45 +0000 | [diff] [blame] | 1393 | def skip_checks(cls): |
| 1394 | super(NetworkScenarioTest, cls).skip_checks() |
Andrea Frittoli | 2ddc263 | 2014-09-25 11:03:00 +0100 | [diff] [blame] | 1395 | if not CONF.service_available.neutron: |
| 1396 | raise cls.skipException('Neutron not available') |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1397 | |
Soniya Vyas | 3bdafd8 | 2021-02-22 18:59:27 +0530 | [diff] [blame] | 1398 | def create_network(self, networks_client=None, |
| 1399 | project_id=None, |
| 1400 | namestart='network-smoke-', |
| 1401 | port_security_enabled=True, **net_dict): |
John Warren | 94d8faf | 2015-09-15 12:22:24 -0400 | [diff] [blame] | 1402 | if not networks_client: |
| 1403 | networks_client = self.networks_client |
Rodolfo Alonso Hernandez | c1449d4 | 2020-02-15 13:24:28 +0000 | [diff] [blame] | 1404 | if not project_id: |
| 1405 | project_id = networks_client.project_id |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 1406 | name = data_utils.rand_name( |
| 1407 | prefix=CONF.resource_name_prefix, name=namestart) |
Rodolfo Alonso Hernandez | c1449d4 | 2020-02-15 13:24:28 +0000 | [diff] [blame] | 1408 | network_kwargs = dict(name=name, project_id=project_id) |
Lajos Katona | c87a06b | 2019-01-04 13:21:48 +0100 | [diff] [blame] | 1409 | if net_dict: |
| 1410 | network_kwargs.update(net_dict) |
Matt Riedemann | 039b2fe | 2016-09-15 16:12:24 -0400 | [diff] [blame] | 1411 | # Neutron disables port security by default so we have to check the |
| 1412 | # config before trying to create the network with port_security_enabled |
| 1413 | if CONF.network_feature_enabled.port_security: |
| 1414 | network_kwargs['port_security_enabled'] = port_security_enabled |
Markus Zoeller | 156b5da | 2016-07-11 18:10:31 +0200 | [diff] [blame] | 1415 | result = networks_client.create_network(**network_kwargs) |
Steve Heyman | 33735f2 | 2016-05-24 09:28:08 -0500 | [diff] [blame] | 1416 | network = result['network'] |
| 1417 | |
| 1418 | self.assertEqual(network['name'], name) |
Jordan Pittier | 9e227c5 | 2016-02-09 14:35:18 +0100 | [diff] [blame] | 1419 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
zhoubin50 | 8bf20b3 | 2017-02-03 09:39:14 +0800 | [diff] [blame] | 1420 | networks_client.delete_network, |
Steve Heyman | 33735f2 | 2016-05-24 09:28:08 -0500 | [diff] [blame] | 1421 | network['id']) |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1422 | return network |
| 1423 | |
zhufl | 5b0a52f | 2017-10-24 15:48:20 +0800 | [diff] [blame] | 1424 | def create_subnet(self, network, subnets_client=None, |
| 1425 | namestart='subnet-smoke', **kwargs): |
Ken'ichi Ohmichi | c4e4f1c | 2015-11-17 08:16:12 +0000 | [diff] [blame] | 1426 | """Create a subnet for the given network |
| 1427 | |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1428 | This utility creates subnet for the given network |
Ken'ichi Ohmichi | c4e4f1c | 2015-11-17 08:16:12 +0000 | [diff] [blame] | 1429 | within the cidr block configured for tenant networks. |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1430 | |
| 1431 | :param **kwargs: |
| 1432 | See extra parameters below |
| 1433 | |
| 1434 | :Keyword Arguments: |
| 1435 | |
| 1436 | * *ip_version = ip version of the given network, |
Soniya Vyas | 795ef25 | 2020-12-10 19:07:23 +0530 | [diff] [blame] | 1437 | use_default_subnetpool = default subnetpool to |
| 1438 | manage IPv6 addresses range. |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1439 | """ |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1440 | |
John Warren | 3961acd | 2015-10-02 14:38:53 -0400 | [diff] [blame] | 1441 | if not subnets_client: |
| 1442 | subnets_client = self.subnets_client |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1443 | |
Rodolfo Alonso Hernandez | c1449d4 | 2020-02-15 13:24:28 +0000 | [diff] [blame] | 1444 | def cidr_in_use(cidr, project_id): |
Ken'ichi Ohmichi | c4e4f1c | 2015-11-17 08:16:12 +0000 | [diff] [blame] | 1445 | """Check cidr existence |
| 1446 | |
yangjianfeng | 4ad346e | 2020-11-22 06:49:19 +0000 | [diff] [blame] | 1447 | :returns: True if subnet with cidr already exist in tenant or |
| 1448 | external False else |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1449 | """ |
yangjianfeng | 4ad346e | 2020-11-22 06:49:19 +0000 | [diff] [blame] | 1450 | tenant_subnets = self.os_admin.subnets_client.list_subnets( |
Rodolfo Alonso Hernandez | c1449d4 | 2020-02-15 13:24:28 +0000 | [diff] [blame] | 1451 | project_id=project_id, cidr=cidr)['subnets'] |
yangjianfeng | 4ad346e | 2020-11-22 06:49:19 +0000 | [diff] [blame] | 1452 | external_nets = self.os_admin.networks_client.list_networks( |
| 1453 | **{"router:external": True})['networks'] |
| 1454 | external_subnets = [] |
| 1455 | for ext_net in external_nets: |
| 1456 | external_subnets.extend( |
| 1457 | self.os_admin.subnets_client.list_subnets( |
| 1458 | network_id=ext_net['id'], cidr=cidr)['subnets']) |
| 1459 | return len(tenant_subnets + external_subnets) != 0 |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1460 | |
Soniya Vyas | 795ef25 | 2020-12-10 19:07:23 +0530 | [diff] [blame] | 1461 | def _make_create_subnet_request(namestart, network, |
| 1462 | ip_version, subnets_client, **kwargs): |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1463 | |
| 1464 | subnet = dict( |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 1465 | name=data_utils.rand_name( |
| 1466 | prefix=CONF.resource_name_prefix, name=namestart), |
Steve Heyman | 33735f2 | 2016-05-24 09:28:08 -0500 | [diff] [blame] | 1467 | network_id=network['id'], |
Rodolfo Alonso Hernandez | c1449d4 | 2020-02-15 13:24:28 +0000 | [diff] [blame] | 1468 | project_id=network['project_id'], |
Kirill Shileev | 1411357 | 2014-11-21 16:58:02 +0300 | [diff] [blame] | 1469 | ip_version=ip_version, |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1470 | **kwargs |
| 1471 | ) |
Soniya Vyas | 795ef25 | 2020-12-10 19:07:23 +0530 | [diff] [blame] | 1472 | |
| 1473 | if ip_version == 6: |
| 1474 | subnet['ipv6_address_mode'] = 'slaac' |
| 1475 | subnet['ipv6_ra_mode'] = 'slaac' |
| 1476 | |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1477 | try: |
Soniya Vyas | 795ef25 | 2020-12-10 19:07:23 +0530 | [diff] [blame] | 1478 | return subnets_client.create_subnet(**subnet) |
Masayuki Igawa | d938876 | 2015-01-20 14:56:42 +0900 | [diff] [blame] | 1479 | except lib_exc.Conflict as e: |
Soniya Vyas | 795ef25 | 2020-12-10 19:07:23 +0530 | [diff] [blame] | 1480 | if 'overlaps with another subnet' not in str(e): |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1481 | raise |
Soniya Vyas | 795ef25 | 2020-12-10 19:07:23 +0530 | [diff] [blame] | 1482 | |
| 1483 | result = None |
| 1484 | str_cidr = None |
| 1485 | |
| 1486 | use_default_subnetpool = kwargs.get('use_default_subnetpool', False) |
| 1487 | ip_version = kwargs.pop('ip_version', 4) |
| 1488 | |
| 1489 | if not use_default_subnetpool: |
| 1490 | |
| 1491 | if ip_version == 6: |
| 1492 | tenant_cidr = netaddr.IPNetwork( |
| 1493 | CONF.network.project_network_v6_cidr) |
| 1494 | num_bits = CONF.network.project_network_v6_mask_bits |
| 1495 | else: |
| 1496 | tenant_cidr = netaddr.IPNetwork( |
| 1497 | CONF.network.project_network_cidr) |
| 1498 | num_bits = CONF.network.project_network_mask_bits |
| 1499 | |
| 1500 | # Repeatedly attempt subnet creation with sequential cidr |
| 1501 | # blocks until an unallocated block is found. |
| 1502 | for subnet_cidr in tenant_cidr.subnet(num_bits): |
| 1503 | str_cidr = str(subnet_cidr) |
| 1504 | if cidr_in_use(str_cidr, project_id=network['project_id']): |
| 1505 | continue |
| 1506 | result = _make_create_subnet_request( |
| 1507 | namestart, network, ip_version, subnets_client, |
| 1508 | cidr=str_cidr, **kwargs) |
| 1509 | |
| 1510 | if result is not None: |
| 1511 | break |
| 1512 | |
| 1513 | else: |
| 1514 | result = _make_create_subnet_request( |
| 1515 | namestart, network, ip_version, subnets_client, |
| 1516 | **kwargs) |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1517 | self.assertIsNotNone(result, 'Unable to allocate tenant network') |
Steve Heyman | 33735f2 | 2016-05-24 09:28:08 -0500 | [diff] [blame] | 1518 | |
| 1519 | subnet = result['subnet'] |
Soniya Vyas | 795ef25 | 2020-12-10 19:07:23 +0530 | [diff] [blame] | 1520 | if str_cidr is not None: |
| 1521 | self.assertEqual(subnet['cidr'], str_cidr) |
Steve Heyman | 33735f2 | 2016-05-24 09:28:08 -0500 | [diff] [blame] | 1522 | |
| 1523 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
| 1524 | subnets_client.delete_subnet, subnet['id']) |
| 1525 | |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1526 | return subnet |
| 1527 | |
Soniya Vyas | c37410f | 2021-02-24 15:26:27 +0530 | [diff] [blame] | 1528 | def get_network_by_name(self, network_name): |
jeremy.zhang | 5870ff1 | 2017-05-25 11:24:23 +0800 | [diff] [blame] | 1529 | net = self.os_admin.networks_client.list_networks( |
Jordan Pittier | 64e6b44 | 2017-02-20 19:29:02 +0100 | [diff] [blame] | 1530 | name=network_name)['networks'] |
Ferenc Horváth | 268ccce | 2017-06-08 12:39:02 +0200 | [diff] [blame] | 1531 | self.assertNotEmpty(net, |
Adam Gandelman | 878a5fd | 2015-03-30 14:33:36 -0700 | [diff] [blame] | 1532 | "Unable to get network by name: %s" % network_name) |
Steve Heyman | 33735f2 | 2016-05-24 09:28:08 -0500 | [diff] [blame] | 1533 | return net[0] |
David Shrewsbury | 9bac366 | 2014-08-07 15:07:01 -0400 | [diff] [blame] | 1534 | |
Yair Fried | 45f9295 | 2014-06-26 05:19:19 +0300 | [diff] [blame] | 1535 | def check_floating_ip_status(self, floating_ip, status): |
Carl Baldwin | a754e2d | 2014-10-23 22:47:41 +0000 | [diff] [blame] | 1536 | """Verifies floatingip reaches the given status |
Yair Fried | 45f9295 | 2014-06-26 05:19:19 +0300 | [diff] [blame] | 1537 | |
Steve Heyman | 33735f2 | 2016-05-24 09:28:08 -0500 | [diff] [blame] | 1538 | :param dict floating_ip: floating IP dict to check status |
Yair Fried | 45f9295 | 2014-06-26 05:19:19 +0300 | [diff] [blame] | 1539 | :param status: target status |
| 1540 | :raises: AssertionError if status doesn't match |
| 1541 | """ |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1542 | |
Steve Heyman | 33735f2 | 2016-05-24 09:28:08 -0500 | [diff] [blame] | 1543 | floatingip_id = floating_ip['id'] |
| 1544 | |
Carl Baldwin | a754e2d | 2014-10-23 22:47:41 +0000 | [diff] [blame] | 1545 | def refresh(): |
Martin Kopec | f4b5df6 | 2020-01-27 09:44:29 +0000 | [diff] [blame] | 1546 | floating_ip = (self.floating_ips_client. |
| 1547 | show_floatingip(floatingip_id)['floatingip']) |
| 1548 | if status == floating_ip['status']: |
| 1549 | LOG.info("FloatingIP: {fp} is at status: {st}" |
| 1550 | .format(fp=floating_ip, st=status)) |
| 1551 | return status == floating_ip['status'] |
Carl Baldwin | a754e2d | 2014-10-23 22:47:41 +0000 | [diff] [blame] | 1552 | |
zhufl | 4dda94e | 2017-03-14 16:14:46 +0800 | [diff] [blame] | 1553 | if not test_utils.call_until_true(refresh, |
| 1554 | CONF.network.build_timeout, |
| 1555 | CONF.network.build_interval): |
| 1556 | floating_ip = self.floating_ips_client.show_floatingip( |
| 1557 | floatingip_id)['floatingip'] |
| 1558 | self.assertEqual(status, floating_ip['status'], |
| 1559 | message="FloatingIP: {fp} is at status: {cst}. " |
| 1560 | "failed to reach status: {st}" |
| 1561 | .format(fp=floating_ip, cst=floating_ip['status'], |
| 1562 | st=status)) |
Yair Fried | 45f9295 | 2014-06-26 05:19:19 +0300 | [diff] [blame] | 1563 | |
zhufl | 420a019 | 2017-09-28 11:04:50 +0800 | [diff] [blame] | 1564 | def check_tenant_network_connectivity(self, server, |
| 1565 | username, |
| 1566 | private_key, |
| 1567 | should_connect=True, |
| 1568 | servers_for_debug=None): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1569 | """Checks tenant network connectivity""" |
Sean Dague | ed6e586 | 2016-04-04 10:49:13 -0400 | [diff] [blame] | 1570 | if not CONF.network.project_networks_reachable: |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1571 | msg = 'Tenant networks not configured to be reachable.' |
| 1572 | LOG.info(msg) |
| 1573 | return |
| 1574 | # The target login is assumed to have been configured for |
| 1575 | # key-based authentication by cloud-init. |
| 1576 | try: |
Béla Vancsics | b6dfa08 | 2017-03-01 10:44:58 +0100 | [diff] [blame] | 1577 | for ip_addresses in server['addresses'].values(): |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1578 | for ip_address in ip_addresses: |
ghanshyam | 807211c | 2014-12-18 13:21:22 +0900 | [diff] [blame] | 1579 | self.check_vm_connectivity(ip_address['addr'], |
Yair Fried | ae0e73d | 2014-11-24 11:56:26 +0200 | [diff] [blame] | 1580 | username, |
| 1581 | private_key, |
| 1582 | should_connect=should_connect) |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1583 | except Exception as e: |
| 1584 | LOG.exception('Tenant network connectivity check failed') |
Soniya Vyas | 1b0cddc | 2021-01-29 17:28:19 +0530 | [diff] [blame] | 1585 | self.log_console_output(servers_for_debug) |
Ken'ichi Ohmichi | 6e201f5 | 2014-10-01 04:21:39 +0000 | [diff] [blame] | 1586 | self._log_net_info(e) |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1587 | raise |
| 1588 | |
zhufl | e9877c6 | 2017-10-13 09:38:19 +0800 | [diff] [blame] | 1589 | def check_remote_connectivity(self, source, dest, should_succeed=True, |
Claudiu Belu | 33c3e60 | 2014-08-28 16:38:01 +0300 | [diff] [blame] | 1590 | nic=None, protocol='icmp'): |
| 1591 | """check server connectivity via source ssh connection |
YAMAMOTO Takashi | 4c3ebb0 | 2017-01-25 16:04:30 +0900 | [diff] [blame] | 1592 | |
Claudiu Belu | 33c3e60 | 2014-08-28 16:38:01 +0300 | [diff] [blame] | 1593 | :param source: RemoteClient: an ssh connection from which to execute |
| 1594 | the check |
| 1595 | :param dest: an IP to check connectivity against |
| 1596 | :param should_succeed: boolean should connection succeed or not |
| 1597 | :param nic: specific network interface to test connectivity from |
| 1598 | :param protocol: the protocol used to test connectivity with. |
| 1599 | :returns: True, if the connection succeeded and it was expected to |
| 1600 | succeed. False otherwise. |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1601 | """ |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1602 | |
Claudiu Belu | 33c3e60 | 2014-08-28 16:38:01 +0300 | [diff] [blame] | 1603 | method_name = '%s_check' % protocol |
| 1604 | connectivity_checker = getattr(source, method_name) |
| 1605 | |
| 1606 | def connect_remote(): |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1607 | try: |
Claudiu Belu | 33c3e60 | 2014-08-28 16:38:01 +0300 | [diff] [blame] | 1608 | connectivity_checker(dest, nic=nic) |
Andrey Pavlov | 6472376 | 2015-04-29 06:24:58 +0300 | [diff] [blame] | 1609 | except lib_exc.SSHExecCommandFailed: |
Claudiu Belu | 33c3e60 | 2014-08-28 16:38:01 +0300 | [diff] [blame] | 1610 | LOG.warning('Failed to check %(protocol)s connectivity for ' |
| 1611 | 'IP %(dest)s via a ssh connection from: %(src)s.', |
| 1612 | dict(protocol=protocol, dest=dest, |
| 1613 | src=source.ssh_client.host)) |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1614 | return not should_succeed |
| 1615 | return should_succeed |
| 1616 | |
Claudiu Belu | 33c3e60 | 2014-08-28 16:38:01 +0300 | [diff] [blame] | 1617 | result = test_utils.call_until_true(connect_remote, |
zhufl | e9877c6 | 2017-10-13 09:38:19 +0800 | [diff] [blame] | 1618 | CONF.validation.ping_timeout, 1) |
Ihar Hrachyshka | f9fda2d | 2017-11-06 13:16:09 -0800 | [diff] [blame] | 1619 | if result: |
| 1620 | return |
| 1621 | |
YAMAMOTO Takashi | 4c3ebb0 | 2017-01-25 16:04:30 +0900 | [diff] [blame] | 1622 | source_host = source.ssh_client.host |
| 1623 | if should_succeed: |
| 1624 | msg = "Timed out waiting for %s to become reachable from %s" \ |
| 1625 | % (dest, source_host) |
| 1626 | else: |
| 1627 | msg = "%s is reachable from %s" % (dest, source_host) |
Soniya Vyas | 1b0cddc | 2021-01-29 17:28:19 +0530 | [diff] [blame] | 1628 | self.log_console_output() |
Ihar Hrachyshka | f9fda2d | 2017-11-06 13:16:09 -0800 | [diff] [blame] | 1629 | self.fail(msg) |
YAMAMOTO Takashi | 4c3ebb0 | 2017-01-25 16:04:30 +0900 | [diff] [blame] | 1630 | |
Soniya Vyas | 73555df | 2021-03-04 19:05:42 +0530 | [diff] [blame] | 1631 | def get_router(self, client=None, project_id=None, **kwargs): |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1632 | """Retrieve a router for the given tenant id. |
| 1633 | |
| 1634 | If a public router has been configured, it will be returned. |
| 1635 | |
| 1636 | If a public router has not been configured, but a public |
| 1637 | network has, a tenant router will be created and returned that |
| 1638 | routes traffic to the public network. |
| 1639 | """ |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1640 | |
Yair Fried | db6c9e9 | 2014-08-06 08:53:13 +0300 | [diff] [blame] | 1641 | if not client: |
Ken'ichi Ohmichi | e35f472 | 2015-12-22 04:57:11 +0000 | [diff] [blame] | 1642 | client = self.routers_client |
Rodolfo Alonso Hernandez | c1449d4 | 2020-02-15 13:24:28 +0000 | [diff] [blame] | 1643 | if not project_id: |
| 1644 | project_id = client.project_id |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1645 | router_id = CONF.network.public_router_id |
| 1646 | network_id = CONF.network.public_network_id |
| 1647 | if router_id: |
David Kranz | ca4c7e7 | 2015-05-27 11:39:19 -0400 | [diff] [blame] | 1648 | body = client.show_router(router_id) |
Steve Heyman | 33735f2 | 2016-05-24 09:28:08 -0500 | [diff] [blame] | 1649 | return body['router'] |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1650 | elif network_id: |
Martin Kopec | 0090a10 | 2020-11-03 13:50:19 +0000 | [diff] [blame] | 1651 | name = kwargs.pop('name', None) |
| 1652 | if not name: |
| 1653 | namestart = self.__class__.__name__ + '-router' |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 1654 | name = data_utils.rand_name( |
| 1655 | prefix=CONF.resource_name_prefix, name=namestart) |
Martin Kopec | 0090a10 | 2020-11-03 13:50:19 +0000 | [diff] [blame] | 1656 | |
| 1657 | ext_gw_info = kwargs.pop('external_gateway_info', None) |
| 1658 | if not ext_gw_info: |
| 1659 | ext_gw_info = dict(network_id=network_id) |
zhufl | 3484f99 | 2017-10-10 16:18:29 +0800 | [diff] [blame] | 1660 | router = client.create_router( |
Martin Kopec | 0090a10 | 2020-11-03 13:50:19 +0000 | [diff] [blame] | 1661 | name=name, |
| 1662 | admin_state_up=kwargs.get('admin_state_up', True), |
Rodolfo Alonso Hernandez | c1449d4 | 2020-02-15 13:24:28 +0000 | [diff] [blame] | 1663 | project_id=project_id, |
Martin Kopec | 0090a10 | 2020-11-03 13:50:19 +0000 | [diff] [blame] | 1664 | external_gateway_info=ext_gw_info, |
| 1665 | **kwargs)['router'] |
zhufl | 3484f99 | 2017-10-10 16:18:29 +0800 | [diff] [blame] | 1666 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
| 1667 | client.delete_router, router['id']) |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1668 | return router |
| 1669 | else: |
| 1670 | raise Exception("Neither of 'public_router_id' or " |
| 1671 | "'public_network_id' has been defined.") |
| 1672 | |
Ghanshyam Mann | 071d154 | 2021-03-24 19:10:47 -0500 | [diff] [blame] | 1673 | def setup_network_subnet_with_router( |
| 1674 | self, networks_client=None, |
| 1675 | routers_client=None, subnets_client=None, |
| 1676 | project_id=None, dns_nameservers=None, |
| 1677 | port_security_enabled=True, **net_dict): |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1678 | """Create a network with a subnet connected to a router. |
| 1679 | |
David Shrewsbury | 9bac366 | 2014-08-07 15:07:01 -0400 | [diff] [blame] | 1680 | The baremetal driver is a special case since all nodes are |
| 1681 | on the same shared network. |
| 1682 | |
Rodolfo Alonso Hernandez | c1449d4 | 2020-02-15 13:24:28 +0000 | [diff] [blame] | 1683 | :param project_id: id of project to create resources in. |
Yair Fried | 413bf2d | 2014-11-19 17:07:11 +0200 | [diff] [blame] | 1684 | :param dns_nameservers: list of dns servers to send to subnet. |
Lajos Katona | c87a06b | 2019-01-04 13:21:48 +0100 | [diff] [blame] | 1685 | :param port_security_enabled: whether or not port_security is enabled |
elajkat | e453fc2 | 2019-06-13 15:03:43 +0200 | [diff] [blame] | 1686 | :param net_dict: a dict containing experimental network information in |
Lajos Katona | c87a06b | 2019-01-04 13:21:48 +0100 | [diff] [blame] | 1687 | a form like this: {'provider:network_type': 'vlan', |
| 1688 | 'provider:physical_network': 'foo', |
| 1689 | 'provider:segmentation_id': '42'} |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1690 | :returns: network, subnet, router |
| 1691 | """ |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1692 | |
Thiago Paiva | 66cded2 | 2016-08-15 14:55:58 -0300 | [diff] [blame] | 1693 | if CONF.network.shared_physical_network: |
David Shrewsbury | 9bac366 | 2014-08-07 15:07:01 -0400 | [diff] [blame] | 1694 | # NOTE(Shrews): This exception is for environments where tenant |
| 1695 | # credential isolation is available, but network separation is |
| 1696 | # not (the current baremetal case). Likely can be removed when |
| 1697 | # test account mgmt is reworked: |
| 1698 | # https://blueprints.launchpad.net/tempest/+spec/test-accounts |
Adam Gandelman | 878a5fd | 2015-03-30 14:33:36 -0700 | [diff] [blame] | 1699 | if not CONF.compute.fixed_network_name: |
| 1700 | m = 'fixed_network_name must be specified in config' |
Matthew Treinish | 4217a70 | 2016-10-07 17:27:11 -0400 | [diff] [blame] | 1701 | raise lib_exc.InvalidConfiguration(m) |
Soniya Vyas | c37410f | 2021-02-24 15:26:27 +0530 | [diff] [blame] | 1702 | network = self.get_network_by_name( |
David Shrewsbury | 9bac366 | 2014-08-07 15:07:01 -0400 | [diff] [blame] | 1703 | CONF.compute.fixed_network_name) |
| 1704 | router = None |
| 1705 | subnet = None |
| 1706 | else: |
Soniya Vyas | 3bdafd8 | 2021-02-22 18:59:27 +0530 | [diff] [blame] | 1707 | network = self.create_network( |
Ken'ichi Ohmichi | 43e7fcf | 2016-04-04 11:59:13 -0700 | [diff] [blame] | 1708 | networks_client=networks_client, |
Rodolfo Alonso Hernandez | c1449d4 | 2020-02-15 13:24:28 +0000 | [diff] [blame] | 1709 | project_id=project_id, |
Lajos Katona | c87a06b | 2019-01-04 13:21:48 +0100 | [diff] [blame] | 1710 | port_security_enabled=port_security_enabled, |
| 1711 | **net_dict) |
Soniya Vyas | 73555df | 2021-03-04 19:05:42 +0530 | [diff] [blame] | 1712 | router = self.get_router(client=routers_client, |
| 1713 | project_id=project_id) |
Ken'ichi Ohmichi | 43e7fcf | 2016-04-04 11:59:13 -0700 | [diff] [blame] | 1714 | subnet_kwargs = dict(network=network, |
zhufl | 5b0a52f | 2017-10-24 15:48:20 +0800 | [diff] [blame] | 1715 | subnets_client=subnets_client) |
Yair Fried | 413bf2d | 2014-11-19 17:07:11 +0200 | [diff] [blame] | 1716 | # use explicit check because empty list is a valid option |
| 1717 | if dns_nameservers is not None: |
| 1718 | subnet_kwargs['dns_nameservers'] = dns_nameservers |
zhufl | 5b0a52f | 2017-10-24 15:48:20 +0800 | [diff] [blame] | 1719 | subnet = self.create_subnet(**subnet_kwargs) |
Steve Heyman | 33735f2 | 2016-05-24 09:28:08 -0500 | [diff] [blame] | 1720 | if not routers_client: |
| 1721 | routers_client = self.routers_client |
| 1722 | router_id = router['id'] |
| 1723 | routers_client.add_router_interface(router_id, |
| 1724 | subnet_id=subnet['id']) |
| 1725 | |
| 1726 | # save a cleanup job to remove this association between |
| 1727 | # router and subnet |
| 1728 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
| 1729 | routers_client.remove_router_interface, router_id, |
| 1730 | subnet_id=subnet['id']) |
Yair Fried | 1fc32a1 | 2014-08-04 09:11:30 +0300 | [diff] [blame] | 1731 | return network, subnet, router |
| 1732 | |
| 1733 | |
Masayuki Igawa | 1f0ad63 | 2014-08-05 13:36:56 +0900 | [diff] [blame] | 1734 | class EncryptionScenarioTest(ScenarioTest): |
Ken'ichi Ohmichi | c4e4f1c | 2015-11-17 08:16:12 +0000 | [diff] [blame] | 1735 | """Base class for encryption scenario tests""" |
Kaitlin Farr | 366a51f | 2014-04-21 12:43:54 -0400 | [diff] [blame] | 1736 | |
David Kranz | 4cc852b | 2015-03-09 14:57:11 -0400 | [diff] [blame] | 1737 | @classmethod |
Emily Hugenbruch | 5e2d2a2 | 2015-02-25 21:35:45 +0000 | [diff] [blame] | 1738 | def setup_clients(cls): |
| 1739 | super(EncryptionScenarioTest, cls).setup_clients() |
ghanshyam | 6c682ff | 2018-08-06 09:54:45 +0000 | [diff] [blame] | 1740 | cls.admin_volume_types_client = cls.os_admin.volume_types_client_latest |
ghanshyam | 3bd0d2b | 2017-03-23 01:57:28 +0000 | [diff] [blame] | 1741 | cls.admin_encryption_types_client =\ |
ghanshyam | 6c682ff | 2018-08-06 09:54:45 +0000 | [diff] [blame] | 1742 | cls.os_admin.encryption_types_client_latest |
Kaitlin Farr | 366a51f | 2014-04-21 12:43:54 -0400 | [diff] [blame] | 1743 | |
Kaitlin Farr | 366a51f | 2014-04-21 12:43:54 -0400 | [diff] [blame] | 1744 | def create_encryption_type(self, client=None, type_id=None, provider=None, |
| 1745 | key_size=None, cipher=None, |
| 1746 | control_location=None): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1747 | """Creates an encryption type for volume""" |
Kaitlin Farr | 366a51f | 2014-04-21 12:43:54 -0400 | [diff] [blame] | 1748 | if not client: |
Ken'ichi Ohmichi | a6ebf62 | 2016-08-25 11:52:27 -0700 | [diff] [blame] | 1749 | client = self.admin_encryption_types_client |
Kaitlin Farr | 366a51f | 2014-04-21 12:43:54 -0400 | [diff] [blame] | 1750 | if not type_id: |
| 1751 | volume_type = self.create_volume_type() |
Masayuki Igawa | 1f0ad63 | 2014-08-05 13:36:56 +0900 | [diff] [blame] | 1752 | type_id = volume_type['id'] |
Kaitlin Farr | 366a51f | 2014-04-21 12:43:54 -0400 | [diff] [blame] | 1753 | LOG.debug("Creating an encryption type for volume type: %s", type_id) |
Masayuki Igawa | 1f0ad63 | 2014-08-05 13:36:56 +0900 | [diff] [blame] | 1754 | client.create_encryption_type( |
| 1755 | type_id, provider=provider, key_size=key_size, cipher=cipher, |
jeremy.zhang | b6f67f6 | 2018-02-11 09:28:52 +0800 | [diff] [blame] | 1756 | control_location=control_location) |
Kaitlin Farr | 366a51f | 2014-04-21 12:43:54 -0400 | [diff] [blame] | 1757 | |
lkuchlan | 3023e75 | 2017-06-08 12:53:13 +0300 | [diff] [blame] | 1758 | def create_encrypted_volume(self, encryption_provider, volume_type, |
| 1759 | key_size=256, cipher='aes-xts-plain64', |
Ghanshyam Mann | 51c0f9a | 2023-07-21 14:09:40 -0500 | [diff] [blame] | 1760 | control_location='front-end', |
| 1761 | wait_until='available'): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1762 | """Creates an encrypted volume""" |
lkuchlan | 3023e75 | 2017-06-08 12:53:13 +0300 | [diff] [blame] | 1763 | volume_type = self.create_volume_type(name=volume_type) |
| 1764 | self.create_encryption_type(type_id=volume_type['id'], |
| 1765 | provider=encryption_provider, |
| 1766 | key_size=key_size, |
| 1767 | cipher=cipher, |
| 1768 | control_location=control_location) |
Ghanshyam Mann | 51c0f9a | 2023-07-21 14:09:40 -0500 | [diff] [blame] | 1769 | return self.create_volume(volume_type=volume_type['name'], |
| 1770 | wait_until=wait_until) |
lkuchlan | 3023e75 | 2017-06-08 12:53:13 +0300 | [diff] [blame] | 1771 | |
Kaitlin Farr | 366a51f | 2014-04-21 12:43:54 -0400 | [diff] [blame] | 1772 | |
Masayuki Igawa | 0870db5 | 2015-09-18 21:08:36 +0900 | [diff] [blame] | 1773 | class ObjectStorageScenarioTest(ScenarioTest): |
Ken'ichi Ohmichi | c4e4f1c | 2015-11-17 08:16:12 +0000 | [diff] [blame] | 1774 | """Provide harness to do Object Storage scenario tests. |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1775 | |
| 1776 | Subclasses implement the tests that use the methods provided by this |
| 1777 | class. |
| 1778 | """ |
| 1779 | |
Ghanshyam Mann | 6428139 | 2021-03-24 18:48:38 -0500 | [diff] [blame] | 1780 | credentials = ['primary'] |
| 1781 | |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1782 | @classmethod |
Emily Hugenbruch | 5e2d2a2 | 2015-02-25 21:35:45 +0000 | [diff] [blame] | 1783 | def skip_checks(cls): |
Masayuki Igawa | 0870db5 | 2015-09-18 21:08:36 +0900 | [diff] [blame] | 1784 | super(ObjectStorageScenarioTest, cls).skip_checks() |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1785 | if not CONF.service_available.swift: |
| 1786 | skip_msg = ("%s skipped as swift is not available" % |
| 1787 | cls.__name__) |
| 1788 | raise cls.skipException(skip_msg) |
Emily Hugenbruch | 5e2d2a2 | 2015-02-25 21:35:45 +0000 | [diff] [blame] | 1789 | |
| 1790 | @classmethod |
| 1791 | def setup_credentials(cls): |
Masayuki Igawa | 60ea6c5 | 2014-10-15 17:32:14 +0900 | [diff] [blame] | 1792 | cls.set_network_resources() |
Masayuki Igawa | 0870db5 | 2015-09-18 21:08:36 +0900 | [diff] [blame] | 1793 | super(ObjectStorageScenarioTest, cls).setup_credentials() |
Matthew Treinish | 4a59693 | 2015-03-06 20:37:01 -0500 | [diff] [blame] | 1794 | operator_role = CONF.object_storage.operator_role |
Andrea Frittoli (andreaf) | 737fac9 | 2015-05-12 16:14:35 +0100 | [diff] [blame] | 1795 | cls.os_operator = cls.get_client_manager(roles=[operator_role]) |
Emily Hugenbruch | 5e2d2a2 | 2015-02-25 21:35:45 +0000 | [diff] [blame] | 1796 | |
| 1797 | @classmethod |
| 1798 | def setup_clients(cls): |
Masayuki Igawa | 0870db5 | 2015-09-18 21:08:36 +0900 | [diff] [blame] | 1799 | super(ObjectStorageScenarioTest, cls).setup_clients() |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1800 | # Clients for Swift |
Matthew Treinish | 8f26829 | 2015-02-24 20:01:36 -0500 | [diff] [blame] | 1801 | cls.account_client = cls.os_operator.account_client |
| 1802 | cls.container_client = cls.os_operator.container_client |
| 1803 | cls.object_client = cls.os_operator.object_client |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1804 | |
Chris Dent | de456a1 | 2014-09-10 12:41:15 +0100 | [diff] [blame] | 1805 | def get_swift_stat(self): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1806 | """Get swift status for our user account.""" |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1807 | self.account_client.list_account_containers() |
| 1808 | LOG.debug('Swift status information obtained successfully') |
| 1809 | |
Chris Dent | de456a1 | 2014-09-10 12:41:15 +0100 | [diff] [blame] | 1810 | def create_container(self, container_name=None): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1811 | """Creates container""" |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1812 | name = container_name or data_utils.rand_name( |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 1813 | prefix=CONF.resource_name_prefix, name='swift-scenario-container') |
ghanshyam | eed4031 | 2017-09-15 18:30:04 +0300 | [diff] [blame] | 1814 | self.container_client.update_container(name) |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1815 | # look for the container to assure it is created |
Chris Dent | de456a1 | 2014-09-10 12:41:15 +0100 | [diff] [blame] | 1816 | self.list_and_check_container_objects(name) |
Jordan Pittier | 525ec71 | 2016-12-07 17:51:26 +0100 | [diff] [blame] | 1817 | LOG.debug('Container %s created', name) |
Jordan Pittier | 9e227c5 | 2016-02-09 14:35:18 +0100 | [diff] [blame] | 1818 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
Chris Dent | 1d4313a | 2014-10-28 12:16:48 +0000 | [diff] [blame] | 1819 | self.container_client.delete_container, |
| 1820 | name) |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1821 | return name |
| 1822 | |
Chris Dent | de456a1 | 2014-09-10 12:41:15 +0100 | [diff] [blame] | 1823 | def delete_container(self, container_name): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1824 | """Deletes container""" |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1825 | self.container_client.delete_container(container_name) |
Jordan Pittier | 525ec71 | 2016-12-07 17:51:26 +0100 | [diff] [blame] | 1826 | LOG.debug('Container %s deleted', container_name) |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1827 | |
Chris Dent | de456a1 | 2014-09-10 12:41:15 +0100 | [diff] [blame] | 1828 | def upload_object_to_container(self, container_name, obj_name=None): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1829 | """Uploads object to container""" |
Martin Kopec | 213d0a4 | 2023-11-30 10:28:14 +0100 | [diff] [blame] | 1830 | obj_name = obj_name or data_utils.rand_name( |
| 1831 | prefix=CONF.resource_name_prefix, name='swift-scenario-object') |
Jordan Pittier | b84f2d4 | 2016-12-21 19:02:15 +0100 | [diff] [blame] | 1832 | obj_data = data_utils.random_bytes() |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1833 | self.object_client.create_object(container_name, obj_name, obj_data) |
Jordan Pittier | 9e227c5 | 2016-02-09 14:35:18 +0100 | [diff] [blame] | 1834 | self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
Chris Dent | 1d4313a | 2014-10-28 12:16:48 +0000 | [diff] [blame] | 1835 | self.object_client.delete_object, |
| 1836 | container_name, |
| 1837 | obj_name) |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1838 | return obj_name, obj_data |
| 1839 | |
Chris Dent | de456a1 | 2014-09-10 12:41:15 +0100 | [diff] [blame] | 1840 | def delete_object(self, container_name, filename): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1841 | """Deletes object""" |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1842 | self.object_client.delete_object(container_name, filename) |
Chris Dent | de456a1 | 2014-09-10 12:41:15 +0100 | [diff] [blame] | 1843 | self.list_and_check_container_objects(container_name, |
| 1844 | not_present_obj=[filename]) |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1845 | |
Chris Dent | de456a1 | 2014-09-10 12:41:15 +0100 | [diff] [blame] | 1846 | def list_and_check_container_objects(self, container_name, |
| 1847 | present_obj=None, |
| 1848 | not_present_obj=None): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1849 | """List and verify objects for a given container |
| 1850 | |
| 1851 | This utility lists objects for a given container |
| 1852 | and asserts which are present and |
| 1853 | which are not |
| 1854 | """ |
| 1855 | |
Ghanshyam | 2a180b8 | 2014-06-16 13:54:22 +0900 | [diff] [blame] | 1856 | if present_obj is None: |
| 1857 | present_obj = [] |
| 1858 | if not_present_obj is None: |
| 1859 | not_present_obj = [] |
ghanshyam | 871b1a8 | 2017-09-14 02:56:16 +0300 | [diff] [blame] | 1860 | _, object_list = self.container_client.list_container_objects( |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1861 | container_name) |
| 1862 | if present_obj: |
| 1863 | for obj in present_obj: |
| 1864 | self.assertIn(obj, object_list) |
| 1865 | if not_present_obj: |
| 1866 | for obj in not_present_obj: |
| 1867 | self.assertNotIn(obj, object_list) |
| 1868 | |
Chris Dent | de456a1 | 2014-09-10 12:41:15 +0100 | [diff] [blame] | 1869 | def download_and_verify(self, container_name, obj_name, expected_data): |
Soniya Vyas | 0c84f3e | 2020-07-15 15:20:59 +0530 | [diff] [blame] | 1870 | """Asserts the object and expected data to verify if they are same""" |
Chris Dent | 0d49411 | 2014-08-26 13:48:30 +0100 | [diff] [blame] | 1871 | _, obj = self.object_client.get_object(container_name, obj_name) |
| 1872 | self.assertEqual(obj, expected_data) |