nova/nova/tests/functional/regressions/test_bug_1541691.py

74 lines
2.7 KiB
Python

# Copyright 2016 HPE, Inc.
#
# 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 oslo_config import cfg
import nova.scheduler.utils
import nova.servicegroup
from nova import test
from nova.tests import fixtures as nova_fixtures
from nova.tests.functional.api import client
import nova.tests.unit.image.fake
from nova.tests.unit import policy_fixture
CONF = cfg.CONF
class TestServerValidation(test.TestCase):
REQUIRES_LOCKING = True
microversion = None
def setUp(self):
super(TestServerValidation, self).setUp()
self.useFixture(policy_fixture.RealPolicyFixture())
api_fixture = self.useFixture(nova_fixtures.OSAPIFixture(
api_version='v2.1'))
# the image fake backend needed for image discovery
nova.tests.unit.image.fake.stub_out_image_service(self)
self.addCleanup(nova.tests.unit.image.fake.FakeImageService_reset)
self.api = api_fixture.api
self.image_id = self.api.get_images()[0]['id']
self.flavor_id = self.api.get_flavors()[0]['id']
def test_name_validation(self):
"""Regression test for bug #1541691.
The current jsonschema validation spits a giant wall of regex
at you (about 500k characters). This is not useful to
determine why your request actually failed.
Ensure that once we fix this it doesn't regress.
"""
server = dict(name='server1 ',
imageRef=self.image_id,
flavorRef=self.flavor_id)
try:
self.api.post_server({'server': server})
except client.OpenStackApiException as osae:
# We expect this to be a 400 error with validation problems.
self.assertEqual(400, osae.response.status_code)
# NOTE(sdague): using expectFailure means we can land this
# test while the bug still exists, then fix it after.
self.expectFailure(
"This is expected to fail until bug 1541691 is fixed",
self.assertLess,
len(osae.response.content),
1000,
"The length of the error response is > 1k. Something is "
"wrong.")
return
self.fail("We should have thrown a 400 error")