summaryrefslogtreecommitdiff
path: root/nova/tests/functional/regressions/test_bug_1978983.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/tests/functional/regressions/test_bug_1978983.py')
-rw-r--r--nova/tests/functional/regressions/test_bug_1978983.py87
1 files changed, 87 insertions, 0 deletions
diff --git a/nova/tests/functional/regressions/test_bug_1978983.py b/nova/tests/functional/regressions/test_bug_1978983.py
new file mode 100644
index 0000000000..c07b047b39
--- /dev/null
+++ b/nova/tests/functional/regressions/test_bug_1978983.py
@@ -0,0 +1,87 @@
+# Copyright 2022 Red Hat, Inc.
+# 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.
+
+
+from nova import test
+from nova.tests import fixtures as nova_fixtures
+from nova.tests.functional.api import client
+from nova.tests.functional import fixtures as func_fixtures
+from nova.tests.functional import integrated_helpers
+from nova.tests.unit.image import fake
+
+
+class EvacuateServerWithTaskState(
+ test.TestCase, integrated_helpers.InstanceHelperMixin,
+):
+ """Regression test for bug 1978983
+ If instance task state is powering-off or not None
+ instance should be allowed to evacuate.
+ """
+
+ def setUp(self):
+ super(EvacuateServerWithTaskState, self).setUp()
+ # Stub out external dependencies.
+ self.useFixture(nova_fixtures.NeutronFixture(self))
+ fake.stub_out_image_service(self)
+ self.useFixture(func_fixtures.PlacementFixture())
+ self.useFixture(nova_fixtures.HostNameWeigherFixture())
+
+ # Start nova controller services.
+ self.start_service('conductor')
+ self.start_service('scheduler')
+
+ api_fixture = self.useFixture(nova_fixtures.OSAPIFixture(
+ api_version='v2.1'))
+ self.admin_api = api_fixture.admin_api
+ self.api = api_fixture.api
+
+ self.image_id = self.api.get_images()[0]['id']
+
+ self.admin_api.microversion = 'latest'
+ self.api.microversion = 'latest'
+
+ self.src = self._start_compute(host='host1')
+ self.dest = self._start_compute(host='host2')
+
+ def test_evacuate_instance(self):
+ """Evacuating a server
+ """
+ server = self.admin_api.post_server(
+ dict(server=self._build_minimal_create_server_request(
+ self.api, 'test_evacuate_instance', self.image_id,
+ networks='none')))
+
+ server = self._wait_for_state_change(self.admin_api, server, 'ACTIVE')
+ self.assertEqual('host1', server['OS-EXT-SRV-ATTR:host'])
+
+ # stop host1 compute service
+ self.src.stop()
+
+ # poweroff instance
+ self._stop_server(server, wait_for_stop=False)
+ server = self._wait_for_server_parameter(self.admin_api,
+ server, {'OS-EXT-STS:task_state': 'powering-off'})
+
+ # FIXME(auniyal): As compute service is down in source node
+ # instance is stuck at powering-off, evacuation fails with
+ # msg: Cannot 'evacuate' instance <instance-id> while it is in
+ # task_state powering-off (HTTP 409)
+
+ ex = self.assertRaises(
+ client.OpenStackApiException,
+ self._evacuate_server,
+ server,
+ expected_host=self.dest.host)
+ self.assertEqual(409, ex.response.status_code)