summaryrefslogtreecommitdiff
path: root/nova/tests/functional/regressions
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-10-06 02:28:35 +0000
committerGerrit Code Review <review@openstack.org>2020-10-06 02:28:35 +0000
commit62c42ff5841db258aa81b014fdb0054020ef9c85 (patch)
treee9a17d4c8f37eca79a27f20edd9ace07d3a9b1b9 /nova/tests/functional/regressions
parent4c9f51a1573ccb3daee5611afdd96f6c4f0cb05e (diff)
parent94d24e3e8d04488abdebd4969daf98b780125297 (diff)
downloadnova-62c42ff5841db258aa81b014fdb0054020ef9c85.tar.gz
Merge "tests: Add regression test for bug 1894966" into stable/ussuri
Diffstat (limited to 'nova/tests/functional/regressions')
-rw-r--r--nova/tests/functional/regressions/test_bug_1894966.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/nova/tests/functional/regressions/test_bug_1894966.py b/nova/tests/functional/regressions/test_bug_1894966.py
new file mode 100644
index 0000000000..74cd7c07c4
--- /dev/null
+++ b/nova/tests/functional/regressions/test_bug_1894966.py
@@ -0,0 +1,41 @@
+# 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 integrated_helpers
+
+
+class TestCreateServerGroupWithEmptyPolicies(
+ test.TestCase, integrated_helpers.InstanceHelperMixin,
+):
+ """Demonstrate bug #1894966.
+
+ Attempt to create a server group with an invalid 'policies' field. It
+ should fail cleanly.
+ """
+ def setUp(self):
+ super().setUp()
+
+ api_fixture = self.useFixture(nova_fixtures.OSAPIFixture(
+ api_version='v2.1'))
+ self.api = api_fixture.api
+ self.api.microversion = '2.63' # the last version with the bug
+
+ def test_create_with_empty_policies(self):
+ exc = self.assertRaises(
+ client.OpenStackApiException,
+ self.api.post_server_groups,
+ {'name': 'test group', 'policies': []})
+ # FIXME(stephenfin): This should not be a 500 error
+ self.assertEqual(500, exc.response.status_code)