summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-06-15 14:10:05 +0000
committerGerrit Code Review <review@openstack.org>2022-06-15 14:10:05 +0000
commit7fb07a8ecd3db815c2f95b8d320694f1a027c3ea (patch)
treeafe06db853f1c48b281059c8b93f5e79df6d3490
parentf405b54320c15947eddc890888fa1af21eed252f (diff)
parentbc30d78a5d22720b8bd739b1e6667332f2484d40 (diff)
downloadnova-7fb07a8ecd3db815c2f95b8d320694f1a027c3ea.tar.gz
Merge "Only allow one scheduler service in tests" into stable/train
-rw-r--r--nova/test.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/nova/test.py b/nova/test.py
index 96c7829741..a10f18043d 100644
--- a/nova/test.py
+++ b/nova/test.py
@@ -24,6 +24,7 @@ inline callbacks.
import nova.monkey_patch # noqa
import abc
+import collections
import copy
import datetime
import inspect
@@ -213,6 +214,9 @@ class TestCase(testtools.TestCase):
os.environ.get('OS_TEST_TIMEOUT', 0),
self.TIMEOUT_SCALING_FACTOR))
+ # How many of which service we've started. {$service-name: $count}
+ self._service_fixture_count = collections.defaultdict(int)
+
self.useFixture(nova_fixtures.OpenStackSDKFixture())
self.useFixture(fixtures.NestedTempfile())
@@ -426,6 +430,10 @@ class TestCase(testtools.TestCase):
CONF.set_override(k, v, group)
def start_service(self, name, host=None, **kwargs):
+ # Disallow starting multiple scheduler services
+ if name == 'scheduler' and self._service_fixture_count[name]:
+ raise TestingException("Duplicate start_service(%s)!" % name)
+
cell = None
# if the host is None then the CONF.host remains defaulted to
# 'fake-mini' (originally done in ConfFixture)
@@ -451,6 +459,19 @@ class TestCase(testtools.TestCase):
svc = self.useFixture(
nova_fixtures.ServiceFixture(name, host, cell=cell, **kwargs))
+ # Keep track of how many instances of this service are running.
+ self._service_fixture_count[name] += 1
+ real_stop = svc.service.stop
+
+ # Make sure stopping the service decrements the active count, so that
+ # start,stop,start doesn't trigger the "Duplicate start_service"
+ # exception.
+ def patch_stop(*a, **k):
+ self._service_fixture_count[name] -= 1
+ return real_stop(*a, **k)
+ self.useFixture(fixtures.MockPatchObject(
+ svc.service, 'stop', patch_stop))
+
return svc.service
def restart_compute_service(self, compute, keep_hypervisor_state=True):