# Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """Fixtures for Nova tests.""" from __future__ import absolute_import import collections from contextlib import contextmanager import copy import logging as std_logging import os import random import warnings import fixtures import mock from neutronclient.common import exceptions as neutron_client_exc from oslo_concurrency import lockutils from oslo_config import cfg from oslo_db import exception as db_exc import oslo_messaging as messaging from oslo_messaging import conffixture as messaging_conffixture from oslo_privsep import daemon as privsep_daemon from oslo_utils.fixture import uuidsentinel from oslo_utils import uuidutils from requests import adapters from sqlalchemy import exc as sqla_exc from wsgi_intercept import interceptor from nova.api.openstack.compute import tenant_networks from nova.api.openstack import wsgi_app from nova.api import wsgi from nova.compute import multi_cell_list from nova.compute import rpcapi as compute_rpcapi from nova import context from nova.db import migration from nova.db.sqlalchemy import api as session from nova import exception from nova.network import model as network_model from nova import objects from nova.objects import base as obj_base from nova.objects import service as service_obj from nova import quota as nova_quota from nova import rc_fields from nova import rpc from nova import service from nova.tests.functional.api import client _TRUE_VALUES = ('True', 'true', '1', 'yes') CONF = cfg.CONF DB_SCHEMA = {'main': "", 'api': ""} SESSION_CONFIGURED = False class ServiceFixture(fixtures.Fixture): """Run a service as a test fixture.""" def __init__(self, name, host=None, cell=None, **kwargs): name = name # If not otherwise specified, the host will default to the # name of the service. Some things like aggregates care that # this is stable. host = host or name kwargs.setdefault('host', host) kwargs.setdefault('binary', 'nova-%s' % name) self.cell = cell self.kwargs = kwargs def setUp(self): super(ServiceFixture, self).setUp() self.ctxt = context.get_admin_context() if self.cell: context.set_target_cell(self.ctxt, self.cell) with mock.patch('nova.context.get_admin_context', return_value=self.ctxt): self.service = service.Service.create(**self.kwargs) self.service.start() self.addCleanup(self.service.kill) class NullHandler(std_logging.Handler): """custom default NullHandler to attempt to format the record. Used in conjunction with log_fixture.get_logging_handle_error_fixture to detect formatting errors in debug level logs without saving the logs. """ def handle(self, record): self.format(record) def emit(self, record): pass def createLock(self): self.lock = None class StandardLogging(fixtures.Fixture): """Setup Logging redirection for tests. There are a number of things we want to handle with logging in tests: * Redirect the logging to somewhere that we can test or dump it later. * Ensure that as many DEBUG messages as possible are actually executed, to ensure they are actually syntactically valid (they often have not been). * Ensure that we create useful output for tests that doesn't overwhelm the testing system (which means we can't capture the 100 MB of debug logging on every run). To do this we create a logger fixture at the root level, which defaults to INFO and create a Null Logger at DEBUG which lets us execute log messages at DEBUG but not keep the output. To support local debugging OS_DEBUG=True can be set in the environment, which will print out the full debug logging. There are also a set of overrides for particularly verbose modules to be even less than INFO. """ def setUp(self): super(StandardLogging, self).setUp() # set root logger to debug root = std_logging.getLogger() root.setLevel(std_logging.DEBUG) # supports collecting debug level for local runs if os.environ.get('OS_DEBUG') in _TRUE_VALUES: level = std_logging.DEBUG else: level = std_logging.INFO # Collect logs fs = '%(asctime)s %(levelname)s [%(name)s] %(message)s' self.logger = self.useFixture( fixtures.FakeLogger(format=fs, level=None)) # TODO(sdague): why can't we send level through the fake # logger? Tests prove that it breaks, but it's worth getting # to the bottom of. root.handlers[0].setLevel(level) if level > std_logging.DEBUG: # Just attempt to format debug level logs, but don't save them handler = NullHandler() self.useFixture(fixtures.LogHandler(handler, nuke_handlers=False)) handler.setLevel(std_logging.DEBUG) # Don't log every single DB migration step std_logging.getLogger( 'migrate.versioning.api').setLevel(std_logging.WARNING) # At times we end up calling back into main() functions in # testing. This has the possibility of calling logging.setup # again, which completely unwinds the logging capture we've # created here. Once we've setup the logging the way we want, # disable the ability for the test to change this. def fake_logging_setup(*args): pass self.useFixture( fixtures.MonkeyPatch('oslo_log.log.setup', fake_logging_setup)) class OutputStreamCapture(fixtures.Fixture): """Capture output streams during tests. This fixture captures errant printing to stderr / stdout during the tests and lets us see those streams at the end of the test runs instead. Useful to see what was happening during failed tests. """ def setUp(self): super(OutputStreamCapture, self).setUp() if os.environ.get('OS_STDOUT_CAPTURE') in _TRUE_VALUES: self.out = self.useFixture(fixtures.StringStream('stdout')) self.useFixture( fixtures.MonkeyPatch('sys.stdout', self.out.stream)) if os.environ.get('OS_STDERR_CAPTURE') in _TRUE_VALUES: self.err = self.useFixture(fixtures.StringStream('stderr')) self.useFixture( fixtures.MonkeyPatch('sys.stderr', self.err.stream)) @property def stderr(self): return self.err._details["stderr"].as_text() @property def stdout(self): return self.out._details["stdout"].as_text() class Timeout(fixtures.Fixture): """Setup per test timeouts. In order to avoid test deadlocks we support setting up a test timeout parameter read from the environment. In almost all cases where the timeout is reached this means a deadlock. A class level TIMEOUT_SCALING_FACTOR also exists, which allows extremely long tests to specify they need more time. """ def __init__(self, timeout, scaling=1): super(Timeout, self).__init__() try: self.test_timeout = int(timeout) except ValueError: # If timeout value is invalid do not set a timeout. self.test_timeout = 0 if scaling >= 1: self.test_timeout *= scaling else: raise ValueError('scaling value must be >= 1') def setUp(self): super(Timeout, self).setUp() if self.test_timeout > 0: self.useFixture(fixtures.Timeout(self.test_timeout, gentle=True)) class DatabasePoisonFixture(fixtures.Fixture): def setUp(self): super(DatabasePoisonFixture, self).setUp() self.useFixture(fixtures.MonkeyPatch( 'oslo_db.sqlalchemy.enginefacade._TransactionFactory.' '_create_session', self._poison_configure)) def _poison_configure(self, *a, **k): # If you encounter this error, you might be tempted to just not # inherit from NoDBTestCase. Bug #1568414 fixed a few hundred of these # errors, and not once was that the correct solution. Instead, # consider some of the following tips (when applicable): # # - mock at the object layer rather than the db layer, for example: # nova.objects.instance.Instance.get # vs. # nova.db.instance_get # # - mock at the api layer rather than the object layer, for example: # nova.api.openstack.common.get_instance # vs. # nova.objects.instance.Instance.get # # - mock code that requires the database but is otherwise tangential # to the code you're testing (for example: EventReporterStub) # # - peruse some of the other database poison warning fixes here: # https://review.openstack.org/#/q/topic:bug/1568414 raise Exception('This test uses methods that set internal oslo_db ' 'state, but it does not claim to use the database. ' 'This will conflict with the setup of tests that ' 'do use the database and cause failures later.') class SingleCellSimple(fixtures.Fixture): """Setup the simplest cells environment possible This should be used when you do not care about multiple cells, or having a "real" environment for tests that should not care. This will give you a single cell, and map any and all accesses to that cell (even things that would go to cell0). If you need to distinguish between cell0 and cellN, then you should use the CellDatabases fixture. If instances should appear to still be in scheduling state, pass instances_created=False to init. """ def __init__(self, instances_created=True): self.instances_created = instances_created def setUp(self): super(SingleCellSimple, self).setUp() self.useFixture(fixtures.MonkeyPatch( 'nova.objects.CellMappingList._get_all_from_db', self._fake_cell_list)) self.useFixture(fixtures.MonkeyPatch( 'nova.objects.CellMappingList._get_by_project_id_from_db', self._fake_cell_list)) self.useFixture(fixtures.MonkeyPatch( 'nova.objects.CellMapping._get_by_uuid_from_db', self._fake_cell_get)) self.useFixture(fixtures.MonkeyPatch( 'nova.objects.HostMapping._get_by_host_from_db', self._fake_hostmapping_get)) self.useFixture(fixtures.MonkeyPatch( 'nova.objects.InstanceMapping._get_by_instance_uuid_from_db', self._fake_instancemapping_get)) self.useFixture(fixtures.MonkeyPatch( 'nova.objects.InstanceMappingList._get_by_instance_uuids_from_db', self._fake_instancemapping_get_uuids)) self.useFixture(fixtures.MonkeyPatch( 'nova.objects.InstanceMapping._save_in_db', self._fake_instancemapping_get_save)) self.useFixture(fixtures.MonkeyPatch( 'nova.context.target_cell', self._fake_target_cell)) self.useFixture(fixtures.MonkeyPatch( 'nova.context.set_target_cell', lambda c, m: None)) def _fake_hostmapping_get(self, *args): return {'id': 1, 'updated_at': None, 'created_at': None, 'host': 'host1', 'cell_mapping': self._fake_cell_list()[0]} def _fake_instancemapping_get_common(self, instance_uuid): return { 'id': 1, 'updated_at': None, 'created_at': None, 'instance_uuid': instance_uuid, 'cell_id': (self.instances_created and 1 or None), 'project_id': 'project', 'cell_mapping': ( self.instances_created and self._fake_cell_get() or None), } def _fake_instancemapping_get_save(self, *args): return self._fake_instancemapping_get_common(args[-2]) def _fake_instancemapping_get(self, *args): return self._fake_instancemapping_get_common(args[-1]) def _fake_instancemapping_get_uuids(self, *args): return [self._fake_instancemapping_get(uuid) for uuid in args[-1]] def _fake_cell_get(self, *args): return self._fake_cell_list()[0] def _fake_cell_list(self, *args): return [{'id': 1, 'updated_at': None, 'created_at': None, 'uuid': uuidsentinel.cell1, 'name': 'onlycell', 'transport_url': 'fake://nowhere/', 'database_connection': 'sqlite:///', 'disabled': False}] @contextmanager def _fake_target_cell(self, context, target_cell): # NOTE(danms): Just pass through the context without actually # targeting anything. yield context class CheatingSerializer(rpc.RequestContextSerializer): """A messaging.RequestContextSerializer that helps with cells. Our normal serializer does not pass in the context like db_connection and mq_connection, for good reason. We don't really want/need to force a remote RPC server to use our values for this. However, during unit and functional tests, since we're all in the same process, we want cell-targeted RPC calls to preserve these values. Unless we had per-service config and database layer state for the fake services we start, this is a reasonable cheat. """ def serialize_context(self, context): """Serialize context with the db_connection inside.""" values = super(CheatingSerializer, self).serialize_context(context) values['db_connection'] = context.db_connection values['mq_connection'] = context.mq_connection return values def deserialize_context(self, values): """Deserialize context and honor db_connection if present.""" ctxt = super(CheatingSerializer, self).deserialize_context(values) ctxt.db_connection = values.pop('db_connection', None) ctxt.mq_connection = values.pop('mq_connection', None) return ctxt class CellDatabases(fixtures.Fixture): """Create per-cell databases for testing. How to use:: fix = CellDatabases() fix.add_cell_database('connection1') fix.add_cell_database('connection2', default=True) self.useFixture(fix) Passing default=True tells the fixture which database should be given to code that doesn't target a specific cell. """ def __init__(self): self._ctxt_mgrs = {} self._last_ctxt_mgr = None self._default_ctxt_mgr = None # NOTE(danms): Use a ReaderWriterLock to synchronize our # global database muckery here. If we change global db state # to point to a cell, we need to take an exclusive lock to # prevent any other calls to get_context_manager() until we # reset to the default. self._cell_lock = lockutils.ReaderWriterLock() def _cache_schema(self, connection_str): # NOTE(melwitt): See the regular Database fixture for why # we do this. global DB_SCHEMA if not DB_SCHEMA['main']: ctxt_mgr = self._ctxt_mgrs[connection_str] engine = ctxt_mgr.writer.get_engine() conn = engine.connect() migration.db_sync(database='main') DB_SCHEMA['main'] = "".join(line for line in conn.connection.iterdump()) engine.dispose() @contextmanager def _wrap_target_cell(self, context, cell_mapping): # NOTE(danms): This method is responsible for switching global # database state in a safe way such that code that doesn't # know anything about cell targeting (i.e. compute node code) # can continue to operate when called from something that has # targeted a specific cell. In order to make this safe from a # dining-philosopher-style deadlock, we need to be able to # support multiple threads talking to the same cell at the # same time and potentially recursion within the same thread # from code that would otherwise be running on separate nodes # in real life, but where we're actually recursing in the # tests. # # The basic logic here is: # 1. Grab a reader lock to see if the state is already pointing at # the cell we want. If it is, we can yield and return without # altering the global state further. The read lock ensures that # global state won't change underneath us, and multiple threads # can be working at the same time, as long as they are looking # for the same cell. # 2. If we do need to change the global state, grab a writer lock # to make that change, which assumes that nothing else is looking # at a cell right now. We do only non-schedulable things while # holding that lock to avoid the deadlock mentioned above. # 3. We then re-lock with a reader lock just as step #1 above and # yield to do the actual work. We can do schedulable things # here and not exclude other threads from making progress. # If an exception is raised, we capture that and save it. # 4. If we changed state in #2, we need to change it back. So we grab # a writer lock again and do that. # 5. Finally, if an exception was raised in #3 while state was # changed, we raise it to the caller. if cell_mapping: desired = self._ctxt_mgrs[cell_mapping.database_connection] else: desired = self._default_ctxt_mgr with self._cell_lock.read_lock(): if self._last_ctxt_mgr == desired: with self._real_target_cell(context, cell_mapping) as c: yield c return raised_exc = None with self._cell_lock.write_lock(): if cell_mapping is not None: # This assumes the next local DB access is the same cell that # was targeted last time. self._last_ctxt_mgr = desired with self._cell_lock.read_lock(): if self._last_ctxt_mgr != desired: # NOTE(danms): This is unlikely to happen, but it's possible # another waiting writer changed the state between us letting # it go and re-acquiring as a reader. If lockutils supported # upgrading and downgrading locks, this wouldn't be a problem. # Regardless, assert that it is still as we left it here # so we don't hit the wrong cell. If this becomes a problem, # we just need to retry the write section above until we land # here with the cell we want. raise RuntimeError('Global DB state changed underneath us') try: with self._real_target_cell(context, cell_mapping) as ccontext: yield ccontext except Exception as exc: raised_exc = exc with self._cell_lock.write_lock(): # Once we have returned from the context, we need # to restore the default context manager for any # subsequent calls self._last_ctxt_mgr = self._default_ctxt_mgr if raised_exc: raise raised_exc def _wrap_create_context_manager(self, connection=None): ctxt_mgr = self._ctxt_mgrs[connection] return ctxt_mgr def _wrap_get_context_manager(self, context): try: # If already targeted, we can proceed without a lock if context.db_connection: return context.db_connection except AttributeError: # Unit tests with None, FakeContext, etc pass # NOTE(melwitt): This is a hack to try to deal with # local accesses i.e. non target_cell accesses. with self._cell_lock.read_lock(): # FIXME(mriedem): This is actually misleading and means we don't # catch things like bug 1717000 where a context should be targeted # to a cell but it's not, and the fixture here just returns the # last targeted context that was used. return self._last_ctxt_mgr def _wrap_get_server(self, target, endpoints, serializer=None): """Mirror rpc.get_server() but with our special sauce.""" serializer = CheatingSerializer(serializer) return messaging.get_rpc_server(rpc.TRANSPORT, target, endpoints, executor='eventlet', serializer=serializer) def _wrap_get_client(self, target, version_cap=None, serializer=None, call_monitor_timeout=None): """Mirror rpc.get_client() but with our special sauce.""" serializer = CheatingSerializer(serializer) return messaging.RPCClient(rpc.TRANSPORT, target, version_cap=version_cap, serializer=serializer, call_monitor_timeout=call_monitor_timeout) def add_cell_database(self, connection_str, default=False): """Add a cell database to the fixture. :param connection_str: An identifier used to represent the connection string for this database. It should match the database_connection field in the corresponding CellMapping. """ # NOTE(danms): Create a new context manager for the cell, which # will house the sqlite:// connection for this cell's in-memory # database. Store/index it by the connection string, which is # how we identify cells in CellMapping. ctxt_mgr = session.create_context_manager() self._ctxt_mgrs[connection_str] = ctxt_mgr # NOTE(melwitt): The first DB access through service start is # local so this initializes _last_ctxt_mgr for that and needs # to be a compute cell. self._last_ctxt_mgr = ctxt_mgr # NOTE(danms): Record which context manager should be the default # so we can restore it when we return from target-cell contexts. # If none has been provided yet, store the current one in case # no default is ever specified. if self._default_ctxt_mgr is None or default: self._default_ctxt_mgr = ctxt_mgr def get_context_manager(context): return ctxt_mgr # NOTE(danms): This is a temporary MonkeyPatch just to get # a new database created with the schema we need and the # context manager for it stashed. with fixtures.MonkeyPatch( 'nova.db.sqlalchemy.api.get_context_manager', get_context_manager): self._cache_schema(connection_str) engine = ctxt_mgr.writer.get_engine() engine.dispose() conn = engine.connect() conn.connection.executescript(DB_SCHEMA['main']) def setUp(self): super(CellDatabases, self).setUp() self.addCleanup(self.cleanup) self._real_target_cell = context.target_cell # NOTE(danms): These context managers are in place for the # duration of the test (unlike the temporary ones above) and # provide the actual "runtime" switching of connections for us. self.useFixture(fixtures.MonkeyPatch( 'nova.db.sqlalchemy.api.create_context_manager', self._wrap_create_context_manager)) self.useFixture(fixtures.MonkeyPatch( 'nova.db.sqlalchemy.api.get_context_manager', self._wrap_get_context_manager)) self.useFixture(fixtures.MonkeyPatch( 'nova.context.target_cell', self._wrap_target_cell)) self.useFixture(fixtures.MonkeyPatch( 'nova.rpc.get_server', self._wrap_get_server)) self.useFixture(fixtures.MonkeyPatch( 'nova.rpc.get_client', self._wrap_get_client)) def cleanup(self): for ctxt_mgr in self._ctxt_mgrs.values(): engine = ctxt_mgr.writer.get_engine() engine.dispose() class Database(fixtures.Fixture): def __init__(self, database='main', connection=None): """Create a database fixture. :param database: The type of database, 'main', or 'api' :param connection: The connection string to use """ super(Database, self).__init__() # NOTE(pkholkin): oslo_db.enginefacade is configured in tests the same # way as it is done for any other service that uses db global SESSION_CONFIGURED if not SESSION_CONFIGURED: session.configure(CONF) SESSION_CONFIGURED = True self.database = database if database == 'main': if connection is not None: ctxt_mgr = session.create_context_manager( connection=connection) self.get_engine = ctxt_mgr.writer.get_engine else: self.get_engine = session.get_engine elif database == 'api': self.get_engine = session.get_api_engine def _cache_schema(self): global DB_SCHEMA if not DB_SCHEMA[self.database]: engine = self.get_engine() conn = engine.connect() migration.db_sync(database=self.database) DB_SCHEMA[self.database] = "".join(line for line in conn.connection.iterdump()) engine.dispose() def cleanup(self): engine = self.get_engine() engine.dispose() def reset(self): self._cache_schema() engine = self.get_engine() engine.dispose() conn = engine.connect() conn.connection.executescript(DB_SCHEMA[self.database]) def setUp(self): super(Database, self).setUp() self.reset() self.addCleanup(self.cleanup) class DatabaseAtVersion(fixtures.Fixture): def __init__(self, version, database='main'): """Create a database fixture. :param version: Max version to sync to (or None for current) :param database: The type of database, 'main', 'api' """ super(DatabaseAtVersion, self).__init__() self.database = database self.version = version if database == 'main': self.get_engine = session.get_engine elif database == 'api': self.get_engine = session.get_api_engine def cleanup(self): engine = self.get_engine() engine.dispose() def reset(self): engine = self.get_engine() engine.dispose() engine.connect() migration.db_sync(version=self.version, database=self.database) def setUp(self): super(DatabaseAtVersion, self).setUp() self.reset() self.addCleanup(self.cleanup) class DefaultFlavorsFixture(fixtures.Fixture): def setUp(self): super(DefaultFlavorsFixture, self).setUp() ctxt = context.get_admin_context() defaults = {'rxtx_factor': 1.0, 'disabled': False, 'is_public': True, 'ephemeral_gb': 0, 'swap': 0} extra_specs = { "hw:mem_page_size": "2048", "hw:cpu_policy": "dedicated" } default_flavors = [ objects.Flavor(context=ctxt, memory_mb=512, vcpus=1, root_gb=1, flavorid='1', name='m1.tiny', **defaults), objects.Flavor(context=ctxt, memory_mb=2048, vcpus=1, root_gb=20, flavorid='2', name='m1.small', **defaults), objects.Flavor(context=ctxt, memory_mb=4096, vcpus=2, root_gb=40, flavorid='3', name='m1.medium', **defaults), objects.Flavor(context=ctxt, memory_mb=8192, vcpus=4, root_gb=80, flavorid='4', name='m1.large', **defaults), objects.Flavor(context=ctxt, memory_mb=16384, vcpus=8, root_gb=160, flavorid='5', name='m1.xlarge', **defaults), objects.Flavor(context=ctxt, memory_mb=512, vcpus=1, root_gb=1, flavorid='6', name='m1.tiny.specs', extra_specs=extra_specs, **defaults), ] for flavor in default_flavors: flavor.create() class RPCFixture(fixtures.Fixture): def __init__(self, *exmods): super(RPCFixture, self).__init__() self.exmods = [] self.exmods.extend(exmods) self._buses = {} def _fake_create_transport(self, url): # FIXME(danms): Right now, collapse all connections # to a single bus. This is how our tests expect things # to work. When the tests are fixed, this fixture can # support simulating multiple independent buses, and this # hack should be removed. url = None # NOTE(danms): This will be called with a non-None url by # cells-aware code that is requesting to contact something on # one of the many transports we're multplexing here. if url not in self._buses: exmods = rpc.get_allowed_exmods() self._buses[url] = messaging.get_rpc_transport( CONF, url=url, allowed_remote_exmods=exmods) return self._buses[url] def setUp(self): super(RPCFixture, self).setUp() self.addCleanup(rpc.cleanup) rpc.add_extra_exmods(*self.exmods) self.addCleanup(rpc.clear_extra_exmods) self.messaging_conf = messaging_conffixture.ConfFixture(CONF) self.messaging_conf.transport_url = 'fake:/' self.useFixture(self.messaging_conf) self.useFixture(fixtures.MonkeyPatch( 'nova.rpc.create_transport', self._fake_create_transport)) # NOTE(danms): Execute the init with get_transport_url() as None, # instead of the parsed TransportURL(None) so that we can cache # it as it will be called later if the default is requested by # one of our mq-switching methods. with mock.patch('nova.rpc.get_transport_url') as mock_gtu: mock_gtu.return_value = None rpc.init(CONF) class WarningsFixture(fixtures.Fixture): """Filters out warnings during test runs.""" def setUp(self): super(WarningsFixture, self).setUp() # NOTE(sdague): Make deprecation warnings only happen once. Otherwise # this gets kind of crazy given the way that upstream python libs use # this. warnings.simplefilter("once", DeprecationWarning) warnings.filterwarnings('ignore', message='With-statements now directly support' ' multiple context managers') # NOTE(sdague): nova does not use pkg_resources directly, this # is all very long standing deprecations about other tools # using it. None of this is useful to Nova development. warnings.filterwarnings('ignore', module='pkg_resources') # NOTE(sdague): this remains an unresolved item around the way # forward on is_admin, the deprecation is definitely really premature. warnings.filterwarnings('ignore', message='Policy enforcement is depending on the value of is_admin.' ' This key is deprecated. Please update your policy ' 'file to use the standard policy values.') # NOTE(sdague): mox3 is on life support, don't really care # about any deprecations coming from it warnings.filterwarnings('ignore', module='mox3.mox') # NOTE(gibi): we can remove this once we get rid of Mox in nova warnings.filterwarnings('ignore', message="Using class 'MoxStubout'") # NOTE(mriedem): Ignore scope check UserWarnings from oslo.policy. warnings.filterwarnings('ignore', message="Policy .* failed scope check", category=UserWarning) # NOTE(gibi): The UUIDFields emits a warning if the value is not a # valid UUID. Let's escalate that to an exception in the test to # prevent adding violations. warnings.filterwarnings('error', message=".*invalid UUID.*") # NOTE(mriedem): Avoid adding anything which tries to convert an # object to a primitive which jsonutils.to_primitive() does not know # how to handle (or isn't given a fallback callback). warnings.filterwarnings( 'error', message="Cannot convert 0: return filtered_list[0] else: return None def list_extensions(self, *args, **kwargs): return {'extensions': []} def show_port(self, port_id, **_params): if port_id not in self._ports: raise exception.PortNotFound(port_id=port_id) return {'port': copy.deepcopy(self._ports[port_id])} def delete_port(self, port_id, **_params): if port_id in self._ports: del self._ports[port_id] def show_network(self, network_id, **_params): if network_id not in self._networks: raise neutron_client_exc.NetworkNotFoundClient() return {'network': copy.deepcopy(self._networks[network_id])} def list_networks(self, retrieve_all=True, **_params): networks = self._networks.values() if 'id' in _params: networks = [x for x in networks if x['id'] in _params['id']] _params.pop('id') networks = [n for n in networks if all(n.get(opt) == _params[opt] for opt in _params)] return {'networks': copy.deepcopy(networks)} def list_ports(self, retrieve_all=True, **_params): # If 'fields' is passed we need to strip that out since it will mess # up the filtering as 'fields' is not a filter parameter. _params.pop('fields', None) ports = [p for p in self._ports.values() if all(p.get(opt) == _params[opt] for opt in _params)] return {'ports': copy.deepcopy(ports)} def list_subnets(self, retrieve_all=True, **_params): # NOTE(gibi): The fixture does not support filtering for subnets return {'subnets': copy.deepcopy(list(self._subnets.values()))} def list_floatingips(self, retrieve_all=True, **_params): return {'floatingips': []} def create_port(self, body=None): # Note(gibi): Some of the test expects that a pre-defined port is # created. This is port_2. So if that port is not created yet then # that is the one created here. if NeutronFixture.port_2['id'] not in self._ports: new_port = copy.deepcopy(NeutronFixture.port_2) else: # If port_2 is already created then create a new port based on # the request body, the port_2 as a template, and assign new # port_id and mac_address for the new port new_port = copy.deepcopy(body) new_port.update(copy.deepcopy(NeutronFixture.port_2)) # we need truly random uuids instead of named sentinels as some # tests needs more than 3 ports new_port.update({ 'id': str(uuidutils.generate_uuid()), 'mac_address': '00:' + ':'.join( ['%02x' % random.randint(0, 255) for _ in range(5)]), }) self._ports[new_port['id']] = new_port # we need to copy again what we return as nova might modify the # returned port locally and we don't want that it effects the port in # the self._ports dict. return {'port': copy.deepcopy(new_port)} def update_port(self, port_id, body=None): port = self._ports[port_id] port.update(body['port']) return {'port': copy.deepcopy(port)} def show_quota(self, project_id): # unlimited quota return {'quota': {'port': -1}} class _NoopConductor(object): def __getattr__(self, key): def _noop_rpc(*args, **kwargs): return None return _noop_rpc class NoopConductorFixture(fixtures.Fixture): """Stub out the conductor API to do nothing""" def setUp(self): super(NoopConductorFixture, self).setUp() self.useFixture(fixtures.MonkeyPatch( 'nova.conductor.ComputeTaskAPI', _NoopConductor)) self.useFixture(fixtures.MonkeyPatch( 'nova.conductor.API', _NoopConductor)) class EventReporterStub(fixtures.Fixture): def setUp(self): super(EventReporterStub, self).setUp() self.useFixture(fixtures.MonkeyPatch( 'nova.compute.utils.EventReporter', lambda *args, **kwargs: mock.MagicMock())) class CinderFixture(fixtures.Fixture): """A fixture to volume operations""" # the default project_id in OSAPIFixtures tenant_id = '6f70656e737461636b20342065766572' SWAP_OLD_VOL = 'a07f71dc-8151-4e7d-a0cc-cd24a3f11113' SWAP_NEW_VOL = '227cc671-f30b-4488-96fd-7d0bf13648d8' SWAP_ERR_OLD_VOL = '828419fa-3efb-4533-b458-4267ca5fe9b1' SWAP_ERR_NEW_VOL = '9c6d9c2d-7a8f-4c80-938d-3bf062b8d489' # This represents a bootable image-backed volume to test # boot-from-volume scenarios. IMAGE_BACKED_VOL = '6ca404f3-d844-4169-bb96-bc792f37de98' def __init__(self, test): super(CinderFixture, self).__init__() self.test = test self.swap_error = False self.swap_volume_instance_uuid = None self.swap_volume_instance_error_uuid = None self.reserved_volumes = list() # This is a map of instance UUIDs mapped to a list of volume IDs. # This map gets updated on attach/detach operations. self.attachments = collections.defaultdict(list) def volume_ids_for_instance(self, instance_uuid): return self.attachments.get(instance_uuid) def setUp(self): super(CinderFixture, self).setUp() def fake_get(self_api, context, volume_id, microversion=None): # Check for the special swap volumes. if volume_id in (CinderFixture.SWAP_OLD_VOL, CinderFixture.SWAP_ERR_OLD_VOL): volume = { 'status': 'available', 'display_name': 'TEST1', 'attach_status': 'detached', 'id': volume_id, 'multiattach': False, 'size': 1 } if ((self.swap_volume_instance_uuid and volume_id == CinderFixture.SWAP_OLD_VOL) or (self.swap_volume_instance_error_uuid and volume_id == CinderFixture.SWAP_ERR_OLD_VOL)): instance_uuid = (self.swap_volume_instance_uuid if volume_id == CinderFixture.SWAP_OLD_VOL else self.swap_volume_instance_error_uuid) volume.update({ 'status': 'in-use', 'attachments': { instance_uuid: { 'mountpoint': '/dev/vdb', 'attachment_id': volume_id } }, 'attach_status': 'attached' }) return volume # Check to see if the volume is attached. for instance_uuid, volumes in self.attachments.items(): if volume_id in volumes: # The volume is attached. volume = { 'status': 'in-use', 'display_name': volume_id, 'attach_status': 'attached', 'id': volume_id, 'multiattach': False, 'size': 1, 'attachments': { instance_uuid: { 'attachment_id': volume_id, 'mountpoint': '/dev/vdb' } } } break else: # This is a test that does not care about the actual details. reserved_volume = (volume_id in self.reserved_volumes) volume = { 'status': 'attaching' if reserved_volume else 'available', 'display_name': 'TEST2', 'attach_status': 'detached', 'id': volume_id, 'multiattach': False, 'size': 1 } # Check for our special image-backed volume. if volume_id == self.IMAGE_BACKED_VOL: # Make it a bootable volume. volume['bootable'] = True # Add the image_id metadata. volume['volume_image_metadata'] = { # There would normally be more image metadata in here... 'image_id': '155d900f-4e14-4e4c-a73d-069cbf4541e6' } return volume def fake_initialize_connection(self, context, volume_id, connector): if volume_id == CinderFixture.SWAP_ERR_NEW_VOL: # Return a tuple in order to raise an exception. return () return {} def fake_migrate_volume_completion(self, context, old_volume_id, new_volume_id, error): return {'save_volume_id': new_volume_id} def fake_reserve_volume(self_api, context, volume_id): self.reserved_volumes.append(volume_id) def fake_unreserve_volume(self_api, context, volume_id): # NOTE(mnaser): It's possible that we unreserve a volume that was # never reserved (ex: instance.volume_attach.error # notification tests) if volume_id in self.reserved_volumes: self.reserved_volumes.remove(volume_id) # Signaling that swap_volume has encountered the error # from initialize_connection and is working on rolling back # the reservation on SWAP_ERR_NEW_VOL. self.swap_error = True def fake_attach(_self, context, volume_id, instance_uuid, mountpoint, mode='rw'): # Check to see if the volume is already attached to any server. for instance, volumes in self.attachments.items(): if volume_id in volumes: raise exception.InvalidInput( reason='Volume %s is already attached to ' 'instance %s' % (volume_id, instance)) # It's not attached so let's "attach" it. self.attachments[instance_uuid].append(volume_id) self.test.stub_out('nova.volume.cinder.API.attach', fake_attach) def fake_detach(_self, context, volume_id, instance_uuid=None, attachment_id=None): # NOTE(mnaser): It's possible that we unreserve a volume that was # never reserved (ex: instance.volume_attach.error # notification tests) if volume_id in self.reserved_volumes: self.reserved_volumes.remove(volume_id) if instance_uuid is not None: # If the volume isn't attached to this instance it will # result in a ValueError which indicates a broken test or # code, so we just let that raise up. self.attachments[instance_uuid].remove(volume_id) else: for instance, volumes in self.attachments.items(): if volume_id in volumes: volumes.remove(volume_id) break self.test.stub_out('nova.volume.cinder.API.detach', fake_detach) self.test.stub_out('nova.volume.cinder.API.begin_detaching', lambda *args, **kwargs: None) self.test.stub_out('nova.volume.cinder.API.get', fake_get) self.test.stub_out('nova.volume.cinder.API.initialize_connection', fake_initialize_connection) self.test.stub_out( 'nova.volume.cinder.API.migrate_volume_completion', fake_migrate_volume_completion) self.test.stub_out('nova.volume.cinder.API.reserve_volume', fake_reserve_volume) self.test.stub_out('nova.volume.cinder.API.roll_detaching', lambda *args, **kwargs: None) self.test.stub_out('nova.volume.cinder.API.terminate_connection', lambda *args, **kwargs: None) self.test.stub_out('nova.volume.cinder.API.unreserve_volume', fake_unreserve_volume) self.test.stub_out('nova.volume.cinder.API.check_attached', lambda *args, **kwargs: None) # TODO(mriedem): We can probably pull some of the common parts from the # CinderFixture into a common mixin class for things like the variables # and fake_get. class CinderFixtureNewAttachFlow(fixtures.Fixture): """A fixture to volume operations with the new Cinder attach/detach API""" # the default project_id in OSAPIFixtures tenant_id = '6f70656e737461636b20342065766572' SWAP_OLD_VOL = 'a07f71dc-8151-4e7d-a0cc-cd24a3f11113' SWAP_NEW_VOL = '227cc671-f30b-4488-96fd-7d0bf13648d8' SWAP_ERR_OLD_VOL = '828419fa-3efb-4533-b458-4267ca5fe9b1' SWAP_ERR_NEW_VOL = '9c6d9c2d-7a8f-4c80-938d-3bf062b8d489' SWAP_ERR_ATTACH_ID = '4a3cd440-b9c2-11e1-afa6-0800200c9a66' MULTIATTACH_VOL = '4757d51f-54eb-4442-8684-3399a6431f67' # This represents a bootable image-backed volume to test # boot-from-volume scenarios. IMAGE_BACKED_VOL = '6ca404f3-d844-4169-bb96-bc792f37de98' # This represents a bootable image-backed volume with required traits # as part of volume image metadata IMAGE_WITH_TRAITS_BACKED_VOL = '6194fc02-c60e-4a01-a8e5-600798208b5f' def __init__(self, test): super(CinderFixtureNewAttachFlow, self).__init__() self.test = test self.swap_error = False self.swap_volume_instance_uuid = None self.swap_volume_instance_error_uuid = None self.attachment_error_id = None # A map of volumes to a list of (attachment_id, instance_uuid). # Note that a volume can have multiple attachments even without # multi-attach, as some flows create a blank 'reservation' attachment # before deleting another attachment. self.volume_to_attachment = collections.defaultdict(list) def volume_ids_for_instance(self, instance_uuid): for volume_id, attachments in self.volume_to_attachment.items(): for _, _instance_uuid in attachments: if _instance_uuid == instance_uuid: # we might have multiple volumes attached to this instance # so yield rather than return yield volume_id break def setUp(self): super(CinderFixtureNewAttachFlow, self).setUp() def fake_get(self_api, context, volume_id, microversion=None): # Check for the special swap volumes. attachments = self.volume_to_attachment[volume_id] if volume_id in (CinderFixture.SWAP_OLD_VOL, CinderFixture.SWAP_ERR_OLD_VOL): volume = { 'status': 'available', 'display_name': 'TEST1', 'attach_status': 'detached', 'id': volume_id, 'multiattach': False, 'size': 1 } if ((self.swap_volume_instance_uuid and volume_id == CinderFixture.SWAP_OLD_VOL) or (self.swap_volume_instance_error_uuid and volume_id == CinderFixture.SWAP_ERR_OLD_VOL)): instance_uuid = (self.swap_volume_instance_uuid if volume_id == CinderFixture.SWAP_OLD_VOL else self.swap_volume_instance_error_uuid) if attachments: attachment_id, instance_uuid = attachments[0] volume.update({ 'status': 'in-use', 'attachments': { instance_uuid: { 'mountpoint': '/dev/vdb', 'attachment_id': attachment_id } }, 'attach_status': 'attached' }) return volume # Check to see if the volume is attached. if attachments: # The volume is attached. attachment_id, instance_uuid = attachments[0] volume = { 'status': 'in-use', 'display_name': volume_id, 'attach_status': 'attached', 'id': volume_id, 'multiattach': volume_id == self.MULTIATTACH_VOL, 'size': 1, 'attachments': { instance_uuid: { 'attachment_id': attachment_id, 'mountpoint': '/dev/vdb' } } } else: # This is a test that does not care about the actual details. volume = { 'status': 'available', 'display_name': 'TEST2', 'attach_status': 'detached', 'id': volume_id, 'multiattach': volume_id == self.MULTIATTACH_VOL, 'size': 1 } # Check for our special image-backed volume. if volume_id in (self.IMAGE_BACKED_VOL, self.IMAGE_WITH_TRAITS_BACKED_VOL): # Make it a bootable volume. volume['bootable'] = True if volume_id == self.IMAGE_BACKED_VOL: # Add the image_id metadata. volume['volume_image_metadata'] = { # There would normally be more image metadata in here. 'image_id': '155d900f-4e14-4e4c-a73d-069cbf4541e6' } elif volume_id == self.IMAGE_WITH_TRAITS_BACKED_VOL: # Add the image_id metadata with traits. volume['volume_image_metadata'] = { 'image_id': '155d900f-4e14-4e4c-a73d-069cbf4541e6', "trait:HW_CPU_X86_SGX": "required", } return volume def fake_migrate_volume_completion(self, context, old_volume_id, new_volume_id, error): return {'save_volume_id': new_volume_id} def _find_attachment(attachment_id): """Find attachment corresponding to ``attachment_id``. Returns: A tuple of the volume ID, an attachment-instance mapping tuple for the given attachment ID, and a list of attachment-instance mapping tuples for the volume. """ for volume_id, attachments in self.volume_to_attachment.items(): for attachment in attachments: _attachment_id, instance_uuid = attachment if attachment_id == _attachment_id: return volume_id, attachment, attachments raise exception.VolumeAttachmentNotFound( attachment_id=attachment_id) def fake_attachment_create(_self, context, volume_id, instance_uuid, connector=None, mountpoint=None): attachment_id = uuidutils.generate_uuid() if self.attachment_error_id is not None: attachment_id = self.attachment_error_id attachment = {'id': attachment_id, 'connection_info': {'data': {}}} self.volume_to_attachment[volume_id].append( (attachment_id, instance_uuid)) return attachment def fake_attachment_delete(_self, context, attachment_id): # 'attachment' is a tuple defining a attachment-instance mapping _, attachment, attachments = _find_attachment(attachment_id) attachments.remove(attachment) if attachment_id == CinderFixtureNewAttachFlow.SWAP_ERR_ATTACH_ID: self.swap_error = True def fake_attachment_update(_self, context, attachment_id, connector, mountpoint=None): # Ensure the attachment exists _find_attachment(attachment_id) attachment_ref = {'driver_volume_type': 'fake_type', 'id': attachment_id, 'connection_info': {'data': {'foo': 'bar', 'target_lun': '1'}}} if attachment_id == CinderFixtureNewAttachFlow.SWAP_ERR_ATTACH_ID: attachment_ref = {'connection_info': ()} return attachment_ref def fake_attachment_get(_self, context, attachment_id): # Ensure the attachment exists _find_attachment(attachment_id) attachment_ref = {'driver_volume_type': 'fake_type', 'id': attachment_id, 'connection_info': {'data': {'foo': 'bar', 'target_lun': '1'}}} return attachment_ref def fake_get_all_volume_types(*args, **kwargs): return [{ # This is used in the 2.67 API sample test. 'id': '5f9204ec-3e94-4f27-9beb-fe7bb73b6eb9', 'name': 'lvm-1' }] self.test.stub_out('nova.volume.cinder.API.attachment_create', fake_attachment_create) self.test.stub_out('nova.volume.cinder.API.attachment_delete', fake_attachment_delete) self.test.stub_out('nova.volume.cinder.API.attachment_update', fake_attachment_update) self.test.stub_out('nova.volume.cinder.API.attachment_complete', lambda *args, **kwargs: None) self.test.stub_out('nova.volume.cinder.API.attachment_get', fake_attachment_get) self.test.stub_out('nova.volume.cinder.API.begin_detaching', lambda *args, **kwargs: None) self.test.stub_out('nova.volume.cinder.API.get', fake_get) self.test.stub_out( 'nova.volume.cinder.API.migrate_volume_completion', fake_migrate_volume_completion) self.test.stub_out('nova.volume.cinder.API.roll_detaching', lambda *args, **kwargs: None) self.test.stub_out('nova.volume.cinder.is_microversion_supported', lambda *args, **kwargs: None) self.test.stub_out('nova.volume.cinder.API.check_attached', lambda *args, **kwargs: None) self.test.stub_out('nova.volume.cinder.API.get_all_volume_types', fake_get_all_volume_types) class UnHelperfulClientChannel(privsep_daemon._ClientChannel): def __init__(self, context): raise Exception('You have attempted to start a privsep helper. ' 'This is not allowed in the gate, and ' 'indicates a failure to have mocked your tests.') class PrivsepNoHelperFixture(fixtures.Fixture): """A fixture to catch failures to mock privsep's rootwrap helper. If you fail to mock away a privsep'd method in a unit test, then you may well end up accidentally running the privsep rootwrap helper. This will fail in the gate, but it fails in a way which doesn't identify which test is missing a mock. Instead, we raise an exception so that you at least know where you've missed something. """ def setUp(self): super(PrivsepNoHelperFixture, self).setUp() self.useFixture(fixtures.MonkeyPatch( 'oslo_privsep.daemon.RootwrapClientChannel', UnHelperfulClientChannel)) class NoopQuotaDriverFixture(fixtures.Fixture): """A fixture to run tests using the NoopQuotaDriver. We can't simply set self.flags to the NoopQuotaDriver in tests to use the NoopQuotaDriver because the QuotaEngine object is global. Concurrently running tests will fail intermittently because they might get the NoopQuotaDriver globally when they expected the default DbQuotaDriver behavior. So instead, we can patch the _driver property of the QuotaEngine class on a per-test basis. """ def setUp(self): super(NoopQuotaDriverFixture, self).setUp() self.useFixture(fixtures.MonkeyPatch('nova.quota.QuotaEngine._driver', nova_quota.NoopQuotaDriver())) # Set the config option just so that code checking for the presence of # the NoopQuotaDriver setting will see it as expected. # For some reason, this does *not* work when TestCase.flags is used. # When using self.flags, the concurrent test failures returned. CONF.set_override('driver', 'nova.quota.NoopQuotaDriver', 'quota') self.addCleanup(CONF.clear_override, 'driver', 'quota') class DownCellFixture(fixtures.Fixture): """A fixture to simulate when a cell is down either due to error or timeout This fixture will stub out the scatter_gather_cells routine used in various cells-related API operations like listing/showing server details to return a ``oslo_db.exception.DBError`` per cell in the results. Therefore it is best used with a test scenario like this: 1. Create a server successfully. 2. Using the fixture, list/show servers. Depending on the microversion used, the API should either return minimal results or by default skip the results from down cells. Example usage:: with nova_fixtures.DownCellFixture(): # List servers with down cells. self.api.get_servers() # Show a server in a down cell. self.api.get_server(server['id']) # List services with down cells. self.admin_api.api_get('/os-services') """ def __init__(self, down_cell_mappings=None): self.down_cell_mappings = down_cell_mappings def setUp(self): super(DownCellFixture, self).setUp() def stub_scatter_gather_cells(ctxt, cell_mappings, timeout, fn, *args, **kwargs): # Return a dict with an entry per cell mapping where the results # are some kind of exception. up_cell_mappings = objects.CellMappingList() if not self.down_cell_mappings: # User has not passed any down cells explicitly, so all cells # are considered as down cells. self.down_cell_mappings = cell_mappings else: # User has passed down cell mappings, so the rest of the cells # should be up meaning we should return the right results. # We assume that down cells will be a subset of the # cell_mappings. down_cell_uuids = [cell.uuid for cell in self.down_cell_mappings] up_cell_mappings.objects = [cell for cell in cell_mappings if cell.uuid not in down_cell_uuids] def wrap(cell_uuid, thing): # We should embed the cell_uuid into the context before # wrapping since its used to calcualte the cells_timed_out and # cells_failed properties in the object. ctxt.cell_uuid = cell_uuid return multi_cell_list.RecordWrapper(ctxt, sort_ctx, thing) if fn is multi_cell_list.query_wrapper: # If the function called through scatter-gather utility is the # multi_cell_list.query_wrapper, we should wrap the exception # object into the multi_cell_list.RecordWrapper. This is # because unlike the other functions where the exception object # is returned directly, the query_wrapper wraps this into the # RecordWrapper object format. So if we do not wrap it will # blow up at the point of generating results from heapq further # down the stack. sort_ctx = multi_cell_list.RecordSortContext([], []) ret1 = { cell_mapping.uuid: [wrap(cell_mapping.uuid, db_exc.DBError())] for cell_mapping in self.down_cell_mappings } else: ret1 = { cell_mapping.uuid: db_exc.DBError() for cell_mapping in self.down_cell_mappings } ret2 = {} for cell in up_cell_mappings: with context.target_cell(ctxt, cell) as cctxt: ctxt.cell_uuid = cell.uuid result = fn(cctxt, *args, **kwargs) ret2[cell.uuid] = result return dict(list(ret1.items()) + list(ret2.items())) self.useFixture(fixtures.MonkeyPatch( 'nova.context.scatter_gather_cells', stub_scatter_gather_cells))