summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-10-14 23:15:21 +0000
committerGerrit Code Review <review@openstack.org>2020-10-14 23:15:21 +0000
commit8e23d72d49c524ffda7aee5717e941c78d239336 (patch)
treee6af61ae0afce3c5e7955c2cc35c753f122bfeef
parentec01dadeffdc7096fb40f802760552700c244318 (diff)
parentcf6db29168c4ee9a34f3b3ebdd1deae31f95f203 (diff)
downloadnova-8e23d72d49c524ffda7aee5717e941c78d239336.tar.gz
Merge "tests: Add regression test for bug 1894966" into stable/train
-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..72173b8255
--- /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(TestCreateServerGroupWithEmptyPolicies, self).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)